Skip to content

Commit b8d9604

Browse files
add borne testnet (#564)
1 parent 548214a commit b8d9604

1 file changed

Lines changed: 20 additions & 1 deletion

File tree

packages/network/src/constants.ts

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,9 @@ export enum ChainId {
7171
BLAST = 81457,
7272
BLAST_SEPOLIA = 168587773,
7373

74+
// Borne
75+
BORNE_TESTNET = 94984,
76+
7477
// HARDHAT TESTNETS
7578
HARDHAT = 31337,
7679
HARDHAT_2 = 31338
@@ -750,7 +753,23 @@ export const networks: Record<ChainId, NetworkMetadata> = {
750753
decimals: 18
751754
}
752755
},
753-
756+
[ChainId.BORNE_TESTNET]: {
757+
chainId: ChainId.BORNE_TESTNET,
758+
type: NetworkType.TESTNET,
759+
name: 'borne-testnet',
760+
title: 'Borne Testnet',
761+
logoURI: `https://assets.sequence.info/images/networks/medium/${ChainId.BORNE_TESTNET}.webp`,
762+
testnet: true,
763+
blockExplorer: {
764+
name: 'Borne Testnet Explorer',
765+
rootUrl: 'https://subnets-test.avax.network/bornegfdn'
766+
},
767+
nativeToken: {
768+
symbol: 'BORNE',
769+
name: 'BORNE',
770+
decimals: 18
771+
}
772+
},
754773
[ChainId.HARDHAT]: {
755774
chainId: ChainId.HARDHAT,
756775
name: 'hardhat',

0 commit comments

Comments
 (0)