oz721 renaminng

pull/2409/merge
Aniket-Engg 3 years ago committed by Aniket
parent 3ec358063b
commit 604080473c
  1. 4
      libs/remix-ws-templates/src/templates/ozerc721/index.ts
  2. 2
      libs/remix-ws-templates/src/templates/ozerc721/scripts/deploy_with_ethers.ts
  3. 2
      libs/remix-ws-templates/src/templates/ozerc721/scripts/deploy_with_web3.ts
  4. 0
      libs/remix-ws-templates/src/templates/ozerc721/scripts/ethers-lib.ts
  5. 0
      libs/remix-ws-templates/src/templates/ozerc721/scripts/web3-lib.ts

@ -7,9 +7,9 @@ export default async () => {
// @ts-ignore
'scripts/deploy_with_web3.ts': (await import('!!raw-loader!./scripts/deploy_with_web3.ts')).default,
// @ts-ignore
'scripts/ethers.ts': (await import('!!raw-loader!./scripts/ethers.ts')).default,
'scripts/ethers-lib.ts': (await import('!!raw-loader!./scripts/ethers-lib.ts')).default,
// @ts-ignore
'scripts/web3.ts': (await import('!!raw-loader!./scripts/web3.ts')).default,
'scripts/web3-lib.ts': (await import('!!raw-loader!./scripts/web3-lib.ts')).default,
// @ts-ignore
'tests/SampleERC721_test.sol': (await import('raw-loader!./tests/SampleERC721_test.sol')).default
}

@ -1,4 +1,4 @@
import { deploy } from './ethers'
import { deploy } from './ethers-lib'
(async () => {
try {

@ -1,4 +1,4 @@
import { deploy } from './web3'
import { deploy } from './web3-lib'
(async () => {
try {

Loading…
Cancel
Save