Start at Effectstream's Template for quickstart project
Effectstream development mode & tests can be run through e2e testing environment.
# Install dependencies
deno install --allow-scripts && ./patch.sh
# Build All Contracts
deno task -r contract:compile
# If running on linux set env DISABLE_YACI=true
# Run Example Deployment Mode
deno task -f @e2e/node quickstartNOTE: first install dependencies and build contracts
deno task -f @e2e/node e2eContracts can be built individually or all at once.
# Build All Contracts
deno task -r contract:compile
# OR Build Contracts Individually
deno task -f @e2e/evm-contracts build:mod
deno task -f @e2e/midnight-contract-eip-20 contract:compile
deno task -f @e2e/midnight-contract-counter contract:compile