File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ import { expect , test } from 'vitest'
2+
3+ import { intuition } from './intuition.js'
4+
5+ test ( 'intuition' , ( ) => {
6+ expect ( intuition . id ) . toMatchInlineSnapshot ( '1155' )
7+ expect ( intuition . name ) . toMatchInlineSnapshot ( '"Intuition"' )
8+ expect ( intuition . nativeCurrency ) . toMatchInlineSnapshot ( `
9+ {
10+ "decimals": 18,
11+ "name": "TRUST",
12+ "symbol": "TRUST",
13+ }
14+ ` )
15+ expect ( intuition . rpcUrls . default . http ) . toMatchInlineSnapshot ( `
16+ [
17+ "https://rpc.intuition.systems",
18+ ]
19+ ` )
20+ expect ( intuition . blockExplorers ?. default . url ) . toMatchInlineSnapshot (
21+ '"https://explorer.intuition.systems"' ,
22+ )
23+ expect ( intuition . sourceId ) . toMatchInlineSnapshot ( '8453' )
24+ } )
Original file line number Diff line number Diff line change 1+ import { defineChain } from '../../utils/chain/defineChain.js'
2+
3+ const sourceId = 8453
4+
5+ export const intuition = /*#__PURE__*/ defineChain ( {
6+ id : 1155 ,
7+ name : 'Intuition' ,
8+ nativeCurrency : {
9+ decimals : 18 ,
10+ name : 'TRUST' ,
11+ symbol : 'TRUST' ,
12+ } ,
13+ rpcUrls : {
14+ default : {
15+ http : [ 'https://rpc.intuition.systems' ] ,
16+ webSocket : [ 'wss://rpc.intuition.systems' ] ,
17+ } ,
18+ } ,
19+ blockExplorers : {
20+ default : {
21+ name : 'Intuition Explorer' ,
22+ url : 'https://explorer.intuition.systems' ,
23+ } ,
24+ } ,
25+ sourceId,
26+ } )
Original file line number Diff line number Diff line change 1+ import { expect , test } from 'vitest'
2+
3+ import { intuitionTestnet } from './intuitionTestnet.js'
4+
5+ test ( 'intuitionTestnet' , ( ) => {
6+ expect ( intuitionTestnet . id ) . toMatchInlineSnapshot ( '13579' )
7+ expect ( intuitionTestnet . name ) . toMatchInlineSnapshot ( '"Intuition Testnet"' )
8+ expect ( intuitionTestnet . nativeCurrency ) . toMatchInlineSnapshot ( `
9+ {
10+ "decimals": 18,
11+ "name": "tTRUST",
12+ "symbol": "tTRUST",
13+ }
14+ ` )
15+ expect ( intuitionTestnet . rpcUrls . default . http ) . toMatchInlineSnapshot ( `
16+ [
17+ "https://testnet.rpc.intuition.systems",
18+ ]
19+ ` )
20+ expect ( intuitionTestnet . blockExplorers ?. default . url ) . toMatchInlineSnapshot (
21+ '"https://testnet.explorer.intuition.systems"' ,
22+ )
23+ expect ( intuitionTestnet . sourceId ) . toMatchInlineSnapshot ( '8453' )
24+ expect ( intuitionTestnet . testnet ) . toMatchInlineSnapshot ( 'true' )
25+ } )
Original file line number Diff line number Diff line change 1+ import { defineChain } from '../../utils/chain/defineChain.js'
2+
3+ const sourceId = 8453
4+
5+ export const intuitionTestnet = /*#__PURE__*/ defineChain ( {
6+ id : 13579 ,
7+ name : 'Intuition Testnet' ,
8+ nativeCurrency : {
9+ decimals : 18 ,
10+ name : 'tTRUST' ,
11+ symbol : 'tTRUST' ,
12+ } ,
13+ rpcUrls : {
14+ default : {
15+ http : [ 'https://testnet.rpc.intuition.systems' ] ,
16+ webSocket : [ 'wss://testnet.rpc.intuition.systems' ] ,
17+ } ,
18+ } ,
19+ blockExplorers : {
20+ default : {
21+ name : 'Intuition Testnet Explorer' ,
22+ url : 'https://testnet.explorer.intuition.systems' ,
23+ } ,
24+ } ,
25+ testnet : true ,
26+ sourceId,
27+ } )
Original file line number Diff line number Diff line change @@ -299,6 +299,8 @@ export { injective } from './definitions/injective.js'
299299export { injectiveTestnet } from './definitions/injectiveTestnet.js'
300300export { ink } from './definitions/ink.js'
301301export { inkSepolia } from './definitions/inkSepolia.js'
302+ export { intuition } from './definitions/intuition.js'
303+ export { intuitionTestnet } from './definitions/intuitionTestnet.js'
302304export { iota } from './definitions/iota.js'
303305export { iotaTestnet } from './definitions/iotaTestnet.js'
304306export { iotex } from './definitions/iotex.js'
You can’t perform that action at this time.
0 commit comments