diff --git a/libs/remix-ws-templates/src/templates/ozerc20/scripts/ethers.ts b/libs/remix-ws-templates/src/templates/ozerc20/scripts/ethers-lib.ts similarity index 96% rename from libs/remix-ws-templates/src/templates/ozerc20/scripts/ethers.ts rename to libs/remix-ws-templates/src/templates/ozerc20/scripts/ethers-lib.ts index 1c5f4c6548..323eed9734 100644 --- a/libs/remix-ws-templates/src/templates/ozerc20/scripts/ethers.ts +++ b/libs/remix-ws-templates/src/templates/ozerc20/scripts/ethers-lib.ts @@ -1,4 +1,4 @@ -import { ethers } from 'ethers' +import { ethers } from 'ethers-lib' export const deploy = async (contractName: string, args: Array, from?: string): Promise => { diff --git a/libs/remix-ws-templates/src/templates/ozerc20/scripts/web3.ts b/libs/remix-ws-templates/src/templates/ozerc20/scripts/web3-lib.ts similarity index 96% rename from libs/remix-ws-templates/src/templates/ozerc20/scripts/web3.ts rename to libs/remix-ws-templates/src/templates/ozerc20/scripts/web3-lib.ts index 37ff2be99b..46c31d8e53 100644 --- a/libs/remix-ws-templates/src/templates/ozerc20/scripts/web3.ts +++ b/libs/remix-ws-templates/src/templates/ozerc20/scripts/web3-lib.ts @@ -1,4 +1,4 @@ -import Web3 from 'web3' +import Web3 from 'web3-lib' export const deploy = async (contractName: string, args: Array, from?: string, gas?: number): Promise => {