Run the dev server:
bun run dev
First, build your app for production:
bun run build
Then run the app in production mode:
bun run preview
deploy to cf workers
bun run release
First, build your app for production:
bun run pages:build
Then run the app in production mode:
bun run pages:preview
deploy to cf pages
bun run pages:release
you'd need to have foundry installed first
to build contracts
bun run forge:build
to build deployer script
bun run build:contract
to deploy contracts
# add PRIVATE_KEY="0x..." to .env
# then run
bun run deploy:contract [mode]
there are three modes:
- ethereum
- arbitrum
- base
to deploy to multiple modes
bun run deploy:contract <mode1> <mode2> <mode3>
bun install <package>
# or
bun add <package>