-
-
Notifications
You must be signed in to change notification settings - Fork 887
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add vechain chain * Update victionTestnet's contracts * Create one-paper-swim.md --------- Co-authored-by: peterhappynow <peter@clica.tech>
- Loading branch information
1 parent
320e2dc
commit b61a231
Showing
4 changed files
with
51 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 viction 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,19 @@ | ||
import { defineChain } from '../../utils/chain/defineChain.js' | ||
|
||
export const viction = /*#__PURE__*/ defineChain({ | ||
id: 88, | ||
name: 'Viction', | ||
nativeCurrency: { name: 'Viction', symbol: 'VIC', decimals: 18 }, | ||
rpcUrls: { | ||
default: { | ||
http: ['https://rpc.viction.xyz'], | ||
}, | ||
}, | ||
blockExplorers: { | ||
default: { | ||
name: 'VIC Scan', | ||
url: 'https://vicscan.xyz', | ||
}, | ||
}, | ||
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,25 @@ | ||
import { defineChain } from '../../utils/chain/defineChain.js' | ||
|
||
export const victionTestnet = /*#__PURE__*/ defineChain({ | ||
id: 89, | ||
name: 'Viction Testnet', | ||
nativeCurrency: { name: 'Viction', symbol: 'VIC', decimals: 18 }, | ||
rpcUrls: { | ||
default: { | ||
http: ['https://rpc-testnet.viction.xyz'], | ||
}, | ||
}, | ||
blockExplorers: { | ||
default: { | ||
name: 'VIC Scan', | ||
url: 'https://testnet.vicscan.xyz', | ||
}, | ||
}, | ||
contracts: { | ||
multicall3: { | ||
address: '0xcA11bde05977b3631167028862bE2a173976CA11', | ||
blockCreated: 12170179, | ||
}, | ||
}, | ||
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