github.com/smartcontractkit/chainlink-testing-framework/libs@v0.0.0-20240227141906-ec710b4eb1a3/charts/foundry/README.md (about) 1 ## Anvil node for testing 2 See example [values.yaml](values.yaml) and [Dockerfile](Dockerfile) if you need to publish a custom image 3 4 Runs anvil node with an optional `--fork-url` and mines new block every `1s` by default 5 6 Change the URL in [values.yaml](values.yaml) and deploy 7 8 ``` 9 anvil: 10 host: '0.0.0.0' 11 port: '8545' 12 blockTime: 1 13 forkURL: 'https://goerli.infura.io/v3/...' 14 forkBlockNumber: "10448829" 15 forkRetries: "5" 16 forkTimeout: "45000" 17 forkComputeUnitsPerSecond: "330" 18 # forkNoRateLimit: "true" 19 ```