Skip to content

Commit

Permalink
restore default properties for examples
Browse files Browse the repository at this point in the history
  • Loading branch information
MCarlomagno committed Dec 7, 2023
1 parent 9f4153c commit da43dba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/ethers-signer/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ async function main() {
const factory = new ethers.ContractFactory(ERC20Abi, ERC20Bytecode, signer);

console.log(`Deploying ERC20 contract`);
const erc20 = await factory.deploy(100, { gasLimit: 8000000, maxFeePerGas: 10000000000, gasPrice: 1e10 });
const erc20 = await factory.deploy(100, { gasLimit: 8000000 });
console.log(`Contract deployed at address ${erc20.address}`);

const beneficiary = await ethers.Wallet.createRandom().getAddress();
Expand Down
2 changes: 1 addition & 1 deletion examples/simulate-proposal/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ async function main() {
},
functionInterface: { name: 'flash', inputs: [] },
functionInputs: [],
via: '0xCB94dfA7820dcb3Ec1Fe6A0A6d83e3653680D2D1',
via: '0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266',
viaType: 'EOA',
},
});
Expand Down

0 comments on commit da43dba

Please sign in to comment.