Skip to content

Commit

Permalink
fix: update dive eth package (#106)
Browse files Browse the repository at this point in the history
  • Loading branch information
shreyasbhat0 authored Aug 11, 2023
1 parent 96700cc commit 3b0342f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion services/evm/eth/static-files/hardhat.config.ts.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ const config: HardhatUserConfig = {
},
networks: {
localnet: {
url: "{{.URL}}"
url: "{{.URL}}",
gasPrice: 50000000000
},
},
};
Expand Down
2 changes: 1 addition & 1 deletion services/evm/eth/static-files/scripts/deploy_dapp.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ async function deploy_dapp_solidity(target: string, xCallAddress: string) {
var deployments_data = deployments.get(target);

const DAppSample = await ethers.getContractFactory("DAppProxySample");
const dappSol = await DAppSample.deploy();
const dappSol = await DAppSample.deploy({gasPrice: 50000000000});
await dappSol.deployed();
await dappSol.initialize(xCallAddress);
console.log(`${target} DApp: deployed to ${dappSol.address}`);
Expand Down
2 changes: 1 addition & 1 deletion services/evm/eth/static-files/scripts/deploy_xcall.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ async function deploy_xcall_solidity(
) {
var deployments_data = deployments.get(target);
const CallSvc = await ethers.getContractFactory("CallService");
const xcallSol = await CallSvc.deploy();
const xcallSol = await CallSvc.deploy({gasPrice: 50000000000});
await xcallSol.deployed();
await xcallSol.initialize(bmcAddress);

Expand Down

0 comments on commit 3b0342f

Please sign in to comment.