Initial commit

This commit is contained in:
defiQUG
2026-01-01 08:04:06 -08:00
commit d0bc005be1
75 changed files with 15082 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
import type { Chain } from '@thirdweb-dev/chains';
/**
* Chain 138 canonical definition
* CAIP-2: eip155:138
*/
export const chain138: Chain = {
chain: 'Chain 138',
chainId: 138,
rpc: ['https://138.rpc.thirdweb.com'],
nativeCurrency: {
name: 'Ether',
symbol: 'ETH',
decimals: 18,
},
shortName: 'chain138',
slug: 'chain-138',
testnet: false,
name: 'Chain 138',
// Explorer will be inferred from thirdweb or added if available
explorers: [],
};
/**
* Export as default for convenience
*/
export default chain138;