Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(create-mud): change anvil to create a block every two seconds #2635

Merged
merged 11 commits into from
Apr 12, 2024
2 changes: 1 addition & 1 deletion templates/phaser/mprocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ procs:
shell: pnpm mud dev-contracts --rpc http://127.0.0.1:8545
anvil:
cwd: packages/contracts
shell: anvil --base-fee 0
shell: anvil --base-fee 0 -b 2
qbzzt marked this conversation as resolved.
Show resolved Hide resolved
3 changes: 2 additions & 1 deletion templates/react-ecs/mprocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@ procs:
shell: pnpm mud dev-contracts --rpc http://127.0.0.1:8545
anvil:
cwd: packages/contracts
shell: anvil --base-fee 0
shell: anvil --base-fee 0 -b 2

qbzzt marked this conversation as resolved.
Show resolved Hide resolved
3 changes: 2 additions & 1 deletion templates/react/mprocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@ procs:
shell: pnpm mud dev-contracts --rpc http://127.0.0.1:8545
anvil:
cwd: packages/contracts
shell: anvil --base-fee 0
shell: anvil --base-fee 0 -b 2

3 changes: 2 additions & 1 deletion templates/threejs/mprocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@ procs:
shell: pnpm mud dev-contracts --rpc http://127.0.0.1:8545
anvil:
cwd: packages/contracts
shell: anvil --base-fee 0
shell: anvil --base-fee 0 -b 2

3 changes: 2 additions & 1 deletion templates/vanilla/mprocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@ procs:
shell: pnpm mud dev-contracts --rpc http://127.0.0.1:8545
anvil:
cwd: packages/contracts
shell: anvil --base-fee 0
shell: anvil --base-fee 0 -b 2

Loading