-
-
Notifications
You must be signed in to change notification settings - Fork 968
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add creditcoin chain * Update twenty-zebras-yell.md --------- Co-authored-by: jxom <7336481+jxom@users.noreply.github.com>
- Loading branch information
Showing
4 changed files
with
49 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"viem": patch | ||
--- | ||
|
||
Added creditcoin3 chain. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import { defineChain } from '../../utils/chain/defineChain.js' | ||
|
||
export const creditCoin3Mainnet = /*#__PURE__*/ defineChain({ | ||
id: 102030, | ||
name: 'Creditcoin3 Mainnet', | ||
nativeCurrency: { name: 'Creditcoin3 Mainnet', symbol: 'CTC', decimals: 18 }, | ||
rpcUrls: { | ||
default: { | ||
http: ['https://mainnet3.creditcoin.network'], | ||
webSocket: ['wss://mainnet3.creditcoin.network'], | ||
}, | ||
}, | ||
blockExplorers: { | ||
default: { | ||
name: 'Blockscout', | ||
url: 'https://creditcoin.blockscout.com', | ||
apiUrl: 'https://creditcoin.blockscout.com/api', | ||
}, | ||
}, | ||
testnet: false, | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import { defineChain } from '../../utils/chain/defineChain.js' | ||
|
||
export const creditCoin3Testnet = /*#__PURE__*/ defineChain({ | ||
id: 102031, | ||
name: 'Creditcoin3 Testnet', | ||
nativeCurrency: { name: 'Creditcoin3 Testnet', symbol: 'TCTC', decimals: 18 }, | ||
rpcUrls: { | ||
default: { | ||
http: ['https://rpc.cc3-testnet.creditcoin.network'], | ||
webSocket: ['wss://rpc.cc3-testnet.creditcoin.network"'], | ||
}, | ||
}, | ||
blockExplorers: { | ||
default: { | ||
name: 'Blockscout', | ||
url: 'https://creditcoin-testnet.blockscout.com', | ||
apiUrl: 'https://creditcoin-testnet.blockscout.com/api', | ||
}, | ||
}, | ||
testnet: true, | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters