Roy Crihfield
72e2e4ce50
- Changes contract tests for EIP-6780 (selfdestruct change) - see cerc-io/ipld-eth-server#264. - Beacon block roots are now injected into the blockchain before processing transactions (https://eips.ethereum.org/EIPS/eip-4788) Reviewed-on: #8 Reviewed-by: jonathanface <jonathanface@noreply.git.vdb.to>
20 lines
461 B
YAML
20 lines
461 B
YAML
# Runs the test contract deployment server
|
|
|
|
services:
|
|
contract-deployer:
|
|
restart: on-failure
|
|
image: cerc/ipld-eth-db-validator/test-contract-deployer:local
|
|
build: ./contract
|
|
networks:
|
|
- test_default
|
|
environment:
|
|
ETH_ADDR: "http://fixturenet-eth-geth-1:8545"
|
|
ETH_CHAIN_ID: $ETH_CHAIN_ID
|
|
DEPLOYER_PRIVATE_KEY: $DEPLOYER_PRIVATE_KEY
|
|
ports:
|
|
- 127.0.0.1:3000:3000
|
|
|
|
networks:
|
|
test_default:
|
|
external: true
|