viem 0.0.0-main.20231112T065722 → 0.0.0-main.20231113T152842

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,34 @@
1
+ import { defineChain } from '../../utils/chain/defineChain.js'
2
+
3
+ export const chiliz = /*#__PURE__*/ defineChain(
4
+ {
5
+ id: 88_888,
6
+ name: 'Chiliz Chain',
7
+ network: 'chiliz-chain',
8
+ nativeCurrency: {
9
+ decimals: 18,
10
+ name: 'CHZ',
11
+ symbol: 'CHZ',
12
+ },
13
+ rpcUrls: {
14
+ default: {
15
+ http: [
16
+ 'https://rpc.ankr.com/chiliz',
17
+ 'https://chiliz.publicnode.com'
18
+ ],
19
+ },
20
+ public: {
21
+ http: [
22
+ 'https://rpc.ankr.com/chiliz',
23
+ 'https://chiliz.publicnode.com'
24
+ ],
25
+ },
26
+ },
27
+ blockExplorers: {
28
+ default: {
29
+ name: 'Chiliz Explorer',
30
+ url: 'https://scan.chiliz.com',
31
+ },
32
+ },
33
+ },
34
+ )
@@ -0,0 +1,43 @@
1
+ import { defineChain } from '../../utils/chain/defineChain.js'
2
+
3
+ export const spicy = /*#__PURE__*/ defineChain(
4
+ {
5
+ id: 88_882,
6
+ name: 'Chiliz Spicy Testnet',
7
+ network: 'chiliz-spicy-Testnet',
8
+ nativeCurrency: {
9
+ decimals: 18,
10
+ name: 'CHZ',
11
+ symbol: 'CHZ',
12
+ },
13
+ rpcUrls: {
14
+ default: {
15
+ http: [
16
+ 'https://spicy-rpc.chiliz.com',
17
+ 'https://chiliz-spicy.publicnode.com'
18
+ ],
19
+ webSocket:[
20
+ 'wss://spicy-rpc-ws.chiliz.com',
21
+ 'wss://chiliz-spicy.publicnode.com'
22
+ ]
23
+ },
24
+ public: {
25
+ http: [
26
+ 'https://spicy-rpc.chiliz.com',
27
+ 'https://chiliz-spicy.publicnode.com'
28
+ ],
29
+ webSocket:[
30
+ 'wss://spicy-rpc-ws.chiliz.com',
31
+ 'wss://chiliz-spicy.publicnode.com'
32
+ ]
33
+ },
34
+ },
35
+ blockExplorers: {
36
+ default: {
37
+ name: 'Chiliz Explorer',
38
+ url: 'http://spicy-explorer.chiliz.com',
39
+ },
40
+ },
41
+ testnet: true,
42
+ },
43
+ )
package/chains/index.ts CHANGED
@@ -25,6 +25,7 @@ export { bxnTestnet } from './definitions/bxnTestnet.js'
25
25
  export { canto } from './definitions/canto.js'
26
26
  export { celo } from './definitions/celo.js'
27
27
  export { celoAlfajores } from './definitions/celoAlfajores.js'
28
+ export { chiliz } from './definitions/chiliz.js'
28
29
  export { celoCannoli } from './definitions/celoCannoli.js'
29
30
  export { classic } from './definitions/classic.js'
30
31
  export { confluxESpace } from './definitions/confluxESpace.js'
@@ -134,6 +135,7 @@ export { skaleTitan } from './definitions/skale/titan.js'
134
135
  export { skaleTitanTestnet } from './definitions/skale/titanTestnet.js'
135
136
  export { songbird } from './definitions/songbird.js'
136
137
  export { songbirdTestnet } from './definitions/songbirdTestnet.js'
138
+ export { spicy } from './definitions/spicy.js'
137
139
  export { shardeumSphinx } from './definitions/shardeumSphinx.js'
138
140
  export { syscoin } from './definitions/syscoin.js'
139
141
  export { syscoinTestnet } from './definitions/syscoinTestnet.js'
package/errors/version.ts CHANGED
@@ -1 +1 @@
1
- export const version = '0.0.0-main.20231112T065722'
1
+ export const version = '0.0.0-main.20231113T152842'
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "viem",
3
3
  "description": "TypeScript Interface for Ethereum",
4
- "version": "0.0.0-main.20231112T065722",
4
+ "version": "0.0.0-main.20231113T152842",
5
5
  "type": "module",
6
6
  "main": "./_cjs/index.js",
7
7
  "module": "./_esm/index.js",