Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
dhvanipa committed May 3, 2024
1 parent 486ed84 commit 3762f56
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions packages/hardhat/deploy/00_deploy_game.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,14 @@ const deployGameContract: DeployFunction = async function (hre: HardhatRuntimeEn
await deploy("Game", {
from: deployer,
// Contract constructor arguments
args: [useBiomesWorldAddress, { lowerSouthwestCorner: { x: 433, y: 25, z: -204 }, size: { x: 5, y: 5, z: 4 } }],
value: "100000000000000",
args: [
useBiomesWorldAddress,
{
lowerSouthwestCorner: { x: 221, y: 60, z: -93 },
size: { x: 3, y: 3, z: 3 },
},
],
value: "16000000000000000",
log: true,
// autoMine: can be passed to the deploy function to make the deployment process faster on local networks by
// automatically mining the contract deployment transaction. There is no effect on live networks.
Expand Down

0 comments on commit 3762f56

Please sign in to comment.