Add testnet evm config to viem
Open
@bthaile is already working on this.
Since Apr 2, 2024.
- Dominant language
- TypeScript
- Stars
- 13
- Forks
- 81
- PR merge metrics
- No merged PRs in 30d
Description
Add the following config to viem, need to verify the properties.
https://github.com/wevm/viem/tree/main/src/chains/definitions
import { defineChain } from '../../utils/chain/defineChain.js'
export const flowTestnet = /*#__PURE__*/ defineChain({
id: 545,
name: 'FlowEVM Testnet',
nativeCurrency: {
decimals: 18,
name: 'Flow',
symbol: 'FLOW',
},
rpcUrls: {
default: {
http: ['https://testnet.evm.nodes.onflow.org'],
},
},
blockExplorers: {
default: {
name: 'Testnet Explorer',
url: 'https://testnet.flowdiver.io',
},
},
})
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Assessment
This issue has not been assessed yet.