Skip to content

Commit fd47171

Browse files
feat(sdk-coin-celo): update celo testnet to sepolia
TICKET: COIN-6224
1 parent 0c1c875 commit fd47171

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

modules/sdk-coin-celo/src/lib/resources.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,15 @@ import EthereumCommon from '@ethereumjs/common';
66
*/
77
export const testnetCommon = EthereumCommon.custom(
88
{
9-
name: 'alfajores',
9+
name: 'celo sepolia testnet',
1010
networkId: (coins.get('tcelo').network as EthereumNetwork).chainId,
1111
chainId: (coins.get('tcelo').network as EthereumNetwork).chainId,
1212
},
13-
{ hardfork: 'london' }
13+
{
14+
baseChain: 'sepolia',
15+
hardfork: 'london',
16+
eips: [1559],
17+
}
1418
);
1519

1620
/**

0 commit comments

Comments
 (0)