We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c1c875 commit fd47171Copy full SHA for fd47171
modules/sdk-coin-celo/src/lib/resources.ts
@@ -6,11 +6,15 @@ import EthereumCommon from '@ethereumjs/common';
6
*/
7
export const testnetCommon = EthereumCommon.custom(
8
{
9
- name: 'alfajores',
+ name: 'celo sepolia testnet',
10
networkId: (coins.get('tcelo').network as EthereumNetwork).chainId,
11
chainId: (coins.get('tcelo').network as EthereumNetwork).chainId,
12
},
13
- { hardfork: 'london' }
+ {
14
+ baseChain: 'sepolia',
15
+ hardfork: 'london',
16
+ eips: [1559],
17
+ }
18
);
19
20
/**
0 commit comments