opstack-kit-chains
Version:
Support your OP-Stack network with 'opstack-kit'
29 lines (26 loc) • 710 B
text/typescript
import { defineChain } from '../../utils/chain/defineChain.js'
const sourceId = 11_155_111 // sepolia
export const plumeTestnet = /*#__PURE__*/ defineChain({
id: 161_221_135,
name: 'Plume Testnet',
nativeCurrency: {
name: 'Plume Sepolia Ether',
symbol: 'ETH',
decimals: 18,
},
rpcUrls: {
default: {
http: ['https://testnet-rpc.plumenetwork.xyz/http'],
webSocket: ['wss://testnet-rpc.plumenetwork.xyz/ws'],
},
},
blockExplorers: {
default: {
name: 'Blockscout',
url: 'https://testnet-explorer.plumenetwork.xyz',
apiUrl: 'https://testnet-explorer.plumenetwork.xyz/api',
},
},
testnet: true,
sourceId,
})