@hyperlane-xyz/registry 1.0.0-beta1 → 1.0.2
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.
- package/README.md +15 -0
- package/dist/chainAddresses.d.ts +472 -0
- package/dist/chainAddresses.js +472 -0
- package/dist/chainMetadata.d.ts +2 -834
- package/dist/chains/alfajores/metadata.d.ts +2 -27
- package/dist/chains/arbitrum/metadata.d.ts +2 -29
- package/dist/chains/avalanche/metadata.d.ts +2 -32
- package/dist/chains/base/metadata.d.ts +2 -28
- package/dist/chains/bsc/metadata.d.ts +2 -29
- package/dist/chains/bsctestnet/metadata.d.ts +2 -27
- package/dist/chains/celo/metadata.d.ts +2 -27
- package/dist/chains/chiado/metadata.d.ts +2 -27
- package/dist/chains/eclipsetestnet/metadata.d.ts +2 -21
- package/dist/chains/ethereum/metadata.d.ts +2 -27
- package/dist/chains/fuji/metadata.d.ts +2 -30
- package/dist/chains/gnosis/metadata.d.ts +2 -32
- package/dist/chains/inevm/metadata.d.ts +2 -28
- package/dist/chains/injective/metadata.d.ts +2 -31
- package/dist/chains/mantapacific/metadata.d.ts +2 -29
- package/dist/chains/moonbeam/metadata.d.ts +2 -27
- package/dist/chains/nautilus/metadata.d.ts +2 -20
- package/dist/chains/neutron/metadata.d.ts +2 -40
- package/dist/chains/optimism/metadata.d.ts +2 -28
- package/dist/chains/plumetestnet/metadata.d.ts +2 -27
- package/dist/chains/polygon/metadata.d.ts +2 -28
- package/dist/chains/polygonzkevm/metadata.d.ts +2 -28
- package/dist/chains/proteustestnet/metadata.d.ts +2 -20
- package/dist/chains/schema.json +269 -0
- package/dist/chains/scroll/metadata.d.ts +2 -27
- package/dist/chains/scrollsepolia/metadata.d.ts +2 -27
- package/dist/chains/sepolia/metadata.d.ts +2 -27
- package/dist/chains/solana/metadata.d.ts +2 -26
- package/dist/chains/solanadevnet/metadata.d.ts +2 -28
- package/dist/chains/solanatestnet/metadata.d.ts +2 -28
- package/dist/chains/viction/metadata.d.ts +2 -27
- package/dist/coreChainAddresses.d.ts +472 -0
- package/dist/coreChainAddresses.js +472 -0
- package/dist/coreChainMetadata.d.ts +2 -768
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -0
- package/package.json +9 -5
|
@@ -1,28 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
apiUrl: string;
|
|
4
|
-
family: string;
|
|
5
|
-
name: string;
|
|
6
|
-
url: string;
|
|
7
|
-
}[];
|
|
8
|
-
blocks: {
|
|
9
|
-
confirmations: number;
|
|
10
|
-
estimateBlockTime: number;
|
|
11
|
-
reorgPeriod: number;
|
|
12
|
-
};
|
|
13
|
-
chainId: number;
|
|
14
|
-
displayName: string;
|
|
15
|
-
displayNameShort: string;
|
|
16
|
-
domainId: number;
|
|
17
|
-
gasCurrencyCoinGeckoId: string;
|
|
18
|
-
name: string;
|
|
19
|
-
nativeToken: {
|
|
20
|
-
decimals: number;
|
|
21
|
-
name: string;
|
|
22
|
-
symbol: string;
|
|
23
|
-
};
|
|
24
|
-
protocol: string;
|
|
25
|
-
rpcUrls: {
|
|
26
|
-
http: string;
|
|
27
|
-
}[];
|
|
28
|
-
};
|
|
1
|
+
import type { ChainMetadata } from '@hyperlane-xyz/sdk';
|
|
2
|
+
export declare const metadata: ChainMetadata;
|
|
@@ -1,20 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
confirmations: number;
|
|
4
|
-
estimateBlockTime: number;
|
|
5
|
-
reorgPeriod: number;
|
|
6
|
-
};
|
|
7
|
-
chainId: number;
|
|
8
|
-
displayName: string;
|
|
9
|
-
domainId: number;
|
|
10
|
-
name: string;
|
|
11
|
-
nativeToken: {
|
|
12
|
-
decimals: number;
|
|
13
|
-
name: string;
|
|
14
|
-
symbol: string;
|
|
15
|
-
};
|
|
16
|
-
protocol: string;
|
|
17
|
-
rpcUrls: {
|
|
18
|
-
http: string;
|
|
19
|
-
}[];
|
|
20
|
-
};
|
|
1
|
+
import type { ChainMetadata } from '@hyperlane-xyz/sdk';
|
|
2
|
+
export declare const metadata: ChainMetadata;
|
|
@@ -0,0 +1,269 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$ref": "#/definitions/hyperlaneChainMetadata",
|
|
3
|
+
"definitions": {
|
|
4
|
+
"hyperlaneChainMetadata": {
|
|
5
|
+
"type": "object",
|
|
6
|
+
"properties": {
|
|
7
|
+
"name": {
|
|
8
|
+
"type": "string",
|
|
9
|
+
"pattern": "^[a-z][a-z0-9]*$",
|
|
10
|
+
"description": "The unique string identifier of the chain, used as the key in ChainMap dictionaries."
|
|
11
|
+
},
|
|
12
|
+
"protocol": {
|
|
13
|
+
"type": "string",
|
|
14
|
+
"enum": [
|
|
15
|
+
"ethereum",
|
|
16
|
+
"sealevel",
|
|
17
|
+
"fuel",
|
|
18
|
+
"cosmos"
|
|
19
|
+
],
|
|
20
|
+
"description": "The type of protocol used by this chain. See ProtocolType for valid values."
|
|
21
|
+
},
|
|
22
|
+
"chainId": {
|
|
23
|
+
"anyOf": [
|
|
24
|
+
{
|
|
25
|
+
"type": "integer",
|
|
26
|
+
"exclusiveMinimum": 0
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"type": "string"
|
|
30
|
+
}
|
|
31
|
+
],
|
|
32
|
+
"description": "The chainId of the chain. Uses EIP-155 for EVM chains"
|
|
33
|
+
},
|
|
34
|
+
"domainId": {
|
|
35
|
+
"$ref": "#/definitions/hyperlaneChainMetadata/properties/chainId/anyOf/0",
|
|
36
|
+
"description": "The domainId of the chain, should generally default to `chainId`. Consumer of `ChainMetadata` should use this value if present, but otherwise fallback to `chainId`."
|
|
37
|
+
},
|
|
38
|
+
"displayName": {
|
|
39
|
+
"type": "string",
|
|
40
|
+
"description": "Human-readable name of the chain."
|
|
41
|
+
},
|
|
42
|
+
"displayNameShort": {
|
|
43
|
+
"type": "string",
|
|
44
|
+
"description": "A shorter human-readable name of the chain for use in user interfaces."
|
|
45
|
+
},
|
|
46
|
+
"technicalStack": {
|
|
47
|
+
"type": "string",
|
|
48
|
+
"enum": [
|
|
49
|
+
"arbitrumnitro",
|
|
50
|
+
"other"
|
|
51
|
+
],
|
|
52
|
+
"description": "The technical stack of the chain. See ChainTechnicalStack for valid values."
|
|
53
|
+
},
|
|
54
|
+
"logoURI": {
|
|
55
|
+
"type": "string",
|
|
56
|
+
"description": "A URI to a logo image for this chain for use in user interfaces."
|
|
57
|
+
},
|
|
58
|
+
"nativeToken": {
|
|
59
|
+
"type": "object",
|
|
60
|
+
"properties": {
|
|
61
|
+
"name": {
|
|
62
|
+
"type": "string"
|
|
63
|
+
},
|
|
64
|
+
"symbol": {
|
|
65
|
+
"type": "string"
|
|
66
|
+
},
|
|
67
|
+
"decimals": {
|
|
68
|
+
"type": "integer",
|
|
69
|
+
"minimum": 0,
|
|
70
|
+
"exclusiveMaximum": 256
|
|
71
|
+
},
|
|
72
|
+
"denom": {
|
|
73
|
+
"type": "string"
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
"required": [
|
|
77
|
+
"name",
|
|
78
|
+
"symbol",
|
|
79
|
+
"decimals"
|
|
80
|
+
],
|
|
81
|
+
"additionalProperties": false,
|
|
82
|
+
"description": "The metadata of the native token of the chain (e.g. ETH for Ethereum)."
|
|
83
|
+
},
|
|
84
|
+
"rpcUrls": {
|
|
85
|
+
"type": "array",
|
|
86
|
+
"items": {
|
|
87
|
+
"type": "object",
|
|
88
|
+
"properties": {
|
|
89
|
+
"http": {
|
|
90
|
+
"type": "string",
|
|
91
|
+
"format": "uri",
|
|
92
|
+
"description": "The HTTP URL of the RPC endpoint (preferably HTTPS)."
|
|
93
|
+
},
|
|
94
|
+
"webSocket": {
|
|
95
|
+
"type": "string",
|
|
96
|
+
"description": "The WSS URL if the endpoint also supports websockets."
|
|
97
|
+
},
|
|
98
|
+
"pagination": {
|
|
99
|
+
"type": "object",
|
|
100
|
+
"properties": {
|
|
101
|
+
"maxBlockRange": {
|
|
102
|
+
"$ref": "#/definitions/hyperlaneChainMetadata/properties/chainId/anyOf/0",
|
|
103
|
+
"description": "The maximum range between block numbers for which the RPC can query data"
|
|
104
|
+
},
|
|
105
|
+
"minBlockNumber": {
|
|
106
|
+
"type": "integer",
|
|
107
|
+
"minimum": 0,
|
|
108
|
+
"description": "The absolute minimum block number that this RPC supports."
|
|
109
|
+
},
|
|
110
|
+
"maxBlockAge": {
|
|
111
|
+
"$ref": "#/definitions/hyperlaneChainMetadata/properties/chainId/anyOf/0",
|
|
112
|
+
"description": "The relative different from latest block that this RPC supports."
|
|
113
|
+
}
|
|
114
|
+
},
|
|
115
|
+
"additionalProperties": false,
|
|
116
|
+
"description": "Limitations on the block range/age that can be queried."
|
|
117
|
+
},
|
|
118
|
+
"retry": {
|
|
119
|
+
"type": "object",
|
|
120
|
+
"properties": {
|
|
121
|
+
"maxRequests": {
|
|
122
|
+
"type": "integer",
|
|
123
|
+
"exclusiveMinimum": 0,
|
|
124
|
+
"description": "The maximum number of requests to attempt before failing."
|
|
125
|
+
},
|
|
126
|
+
"baseRetryMs": {
|
|
127
|
+
"type": "integer",
|
|
128
|
+
"exclusiveMinimum": 0,
|
|
129
|
+
"description": "The base retry delay in milliseconds."
|
|
130
|
+
}
|
|
131
|
+
},
|
|
132
|
+
"required": [
|
|
133
|
+
"maxRequests",
|
|
134
|
+
"baseRetryMs"
|
|
135
|
+
],
|
|
136
|
+
"additionalProperties": false,
|
|
137
|
+
"description": "Default retry settings to be used by a provider such as MultiProvider."
|
|
138
|
+
}
|
|
139
|
+
},
|
|
140
|
+
"required": [
|
|
141
|
+
"http"
|
|
142
|
+
],
|
|
143
|
+
"additionalProperties": false
|
|
144
|
+
},
|
|
145
|
+
"minItems": 1,
|
|
146
|
+
"description": "The list of RPC endpoints for interacting with the chain."
|
|
147
|
+
},
|
|
148
|
+
"restUrls": {
|
|
149
|
+
"type": "array",
|
|
150
|
+
"items": {
|
|
151
|
+
"$ref": "#/definitions/hyperlaneChainMetadata/properties/rpcUrls/items"
|
|
152
|
+
},
|
|
153
|
+
"description": "For cosmos chains only, a list of Rest API URLs"
|
|
154
|
+
},
|
|
155
|
+
"grpcUrls": {
|
|
156
|
+
"type": "array",
|
|
157
|
+
"items": {
|
|
158
|
+
"$ref": "#/definitions/hyperlaneChainMetadata/properties/rpcUrls/items"
|
|
159
|
+
},
|
|
160
|
+
"description": "For cosmos chains only, a list of gRPC API URLs"
|
|
161
|
+
},
|
|
162
|
+
"customGrpcUrls": {
|
|
163
|
+
"type": "string",
|
|
164
|
+
"description": "Specify a comma separated list of custom GRPC URLs to use for this chain. If not specified, the default GRPC urls will be used."
|
|
165
|
+
},
|
|
166
|
+
"blockExplorers": {
|
|
167
|
+
"type": "array",
|
|
168
|
+
"items": {
|
|
169
|
+
"type": "object",
|
|
170
|
+
"properties": {
|
|
171
|
+
"name": {
|
|
172
|
+
"type": "string",
|
|
173
|
+
"description": "A human readable name for the explorer."
|
|
174
|
+
},
|
|
175
|
+
"url": {
|
|
176
|
+
"type": "string",
|
|
177
|
+
"format": "uri",
|
|
178
|
+
"description": "The base URL for the explorer."
|
|
179
|
+
},
|
|
180
|
+
"apiUrl": {
|
|
181
|
+
"type": "string",
|
|
182
|
+
"format": "uri",
|
|
183
|
+
"description": "The base URL for requests to the explorer API."
|
|
184
|
+
},
|
|
185
|
+
"apiKey": {
|
|
186
|
+
"type": "string",
|
|
187
|
+
"description": "An API key for the explorer (recommended for better reliability)."
|
|
188
|
+
},
|
|
189
|
+
"family": {
|
|
190
|
+
"type": "string",
|
|
191
|
+
"enum": [
|
|
192
|
+
"etherscan",
|
|
193
|
+
"blockscout",
|
|
194
|
+
"routescan",
|
|
195
|
+
"other"
|
|
196
|
+
],
|
|
197
|
+
"description": "The type of the block explorer. See ExplorerFamily for valid values."
|
|
198
|
+
}
|
|
199
|
+
},
|
|
200
|
+
"required": [
|
|
201
|
+
"name",
|
|
202
|
+
"url",
|
|
203
|
+
"apiUrl"
|
|
204
|
+
],
|
|
205
|
+
"additionalProperties": false
|
|
206
|
+
},
|
|
207
|
+
"description": "A list of block explorers with data for this chain"
|
|
208
|
+
},
|
|
209
|
+
"blocks": {
|
|
210
|
+
"type": "object",
|
|
211
|
+
"properties": {
|
|
212
|
+
"confirmations": {
|
|
213
|
+
"type": "integer",
|
|
214
|
+
"minimum": 0,
|
|
215
|
+
"description": "Number of blocks to wait before considering a transaction confirmed."
|
|
216
|
+
},
|
|
217
|
+
"reorgPeriod": {
|
|
218
|
+
"$ref": "#/definitions/hyperlaneChainMetadata/properties/rpcUrls/items/properties/pagination/properties/minBlockNumber",
|
|
219
|
+
"description": "Number of blocks before a transaction has a near-zero chance of reverting."
|
|
220
|
+
},
|
|
221
|
+
"estimateBlockTime": {
|
|
222
|
+
"type": "number",
|
|
223
|
+
"exclusiveMinimum": 0,
|
|
224
|
+
"description": "Rough estimate of time per block in seconds."
|
|
225
|
+
}
|
|
226
|
+
},
|
|
227
|
+
"required": [
|
|
228
|
+
"confirmations"
|
|
229
|
+
],
|
|
230
|
+
"additionalProperties": false,
|
|
231
|
+
"description": "Block settings for the chain/deployment."
|
|
232
|
+
},
|
|
233
|
+
"transactionOverrides": {
|
|
234
|
+
"type": "object",
|
|
235
|
+
"additionalProperties": {},
|
|
236
|
+
"description": "Properties to include when forming transaction requests."
|
|
237
|
+
},
|
|
238
|
+
"gasCurrencyCoinGeckoId": {
|
|
239
|
+
"type": "string",
|
|
240
|
+
"description": "The ID on CoinGecko of the token used for gas payments."
|
|
241
|
+
},
|
|
242
|
+
"gnosisSafeTransactionServiceUrl": {
|
|
243
|
+
"type": "string",
|
|
244
|
+
"description": "The URL of the gnosis safe transaction service."
|
|
245
|
+
},
|
|
246
|
+
"bech32Prefix": {
|
|
247
|
+
"type": "string",
|
|
248
|
+
"description": "The human readable address prefix for the chains using bech32."
|
|
249
|
+
},
|
|
250
|
+
"slip44": {
|
|
251
|
+
"type": "number",
|
|
252
|
+
"description": "The SLIP-0044 coin type."
|
|
253
|
+
},
|
|
254
|
+
"isTestnet": {
|
|
255
|
+
"type": "boolean",
|
|
256
|
+
"description": "Whether the chain is considered a testnet or a mainnet."
|
|
257
|
+
}
|
|
258
|
+
},
|
|
259
|
+
"required": [
|
|
260
|
+
"name",
|
|
261
|
+
"protocol",
|
|
262
|
+
"chainId",
|
|
263
|
+
"rpcUrls"
|
|
264
|
+
],
|
|
265
|
+
"additionalProperties": false
|
|
266
|
+
}
|
|
267
|
+
},
|
|
268
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
269
|
+
}
|
|
@@ -1,27 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
apiUrl: string;
|
|
4
|
-
family: string;
|
|
5
|
-
name: string;
|
|
6
|
-
url: string;
|
|
7
|
-
}[];
|
|
8
|
-
blocks: {
|
|
9
|
-
confirmations: number;
|
|
10
|
-
estimateBlockTime: number;
|
|
11
|
-
reorgPeriod: number;
|
|
12
|
-
};
|
|
13
|
-
chainId: number;
|
|
14
|
-
displayName: string;
|
|
15
|
-
domainId: number;
|
|
16
|
-
gasCurrencyCoinGeckoId: string;
|
|
17
|
-
name: string;
|
|
18
|
-
nativeToken: {
|
|
19
|
-
decimals: number;
|
|
20
|
-
name: string;
|
|
21
|
-
symbol: string;
|
|
22
|
-
};
|
|
23
|
-
protocol: string;
|
|
24
|
-
rpcUrls: {
|
|
25
|
-
http: string;
|
|
26
|
-
}[];
|
|
27
|
-
};
|
|
1
|
+
import type { ChainMetadata } from '@hyperlane-xyz/sdk';
|
|
2
|
+
export declare const metadata: ChainMetadata;
|
|
@@ -1,27 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
apiUrl: string;
|
|
4
|
-
family: string;
|
|
5
|
-
name: string;
|
|
6
|
-
url: string;
|
|
7
|
-
}[];
|
|
8
|
-
blocks: {
|
|
9
|
-
confirmations: number;
|
|
10
|
-
estimateBlockTime: number;
|
|
11
|
-
reorgPeriod: number;
|
|
12
|
-
};
|
|
13
|
-
chainId: number;
|
|
14
|
-
displayName: string;
|
|
15
|
-
domainId: number;
|
|
16
|
-
isTestnet: boolean;
|
|
17
|
-
name: string;
|
|
18
|
-
nativeToken: {
|
|
19
|
-
decimals: number;
|
|
20
|
-
name: string;
|
|
21
|
-
symbol: string;
|
|
22
|
-
};
|
|
23
|
-
protocol: string;
|
|
24
|
-
rpcUrls: {
|
|
25
|
-
http: string;
|
|
26
|
-
}[];
|
|
27
|
-
};
|
|
1
|
+
import type { ChainMetadata } from '@hyperlane-xyz/sdk';
|
|
2
|
+
export declare const metadata: ChainMetadata;
|
|
@@ -1,27 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
apiUrl: string;
|
|
4
|
-
family: string;
|
|
5
|
-
name: string;
|
|
6
|
-
url: string;
|
|
7
|
-
}[];
|
|
8
|
-
blocks: {
|
|
9
|
-
confirmations: number;
|
|
10
|
-
estimateBlockTime: number;
|
|
11
|
-
reorgPeriod: number;
|
|
12
|
-
};
|
|
13
|
-
chainId: number;
|
|
14
|
-
displayName: string;
|
|
15
|
-
domainId: number;
|
|
16
|
-
isTestnet: boolean;
|
|
17
|
-
name: string;
|
|
18
|
-
nativeToken: {
|
|
19
|
-
decimals: number;
|
|
20
|
-
name: string;
|
|
21
|
-
symbol: string;
|
|
22
|
-
};
|
|
23
|
-
protocol: string;
|
|
24
|
-
rpcUrls: {
|
|
25
|
-
http: string;
|
|
26
|
-
}[];
|
|
27
|
-
};
|
|
1
|
+
import type { ChainMetadata } from '@hyperlane-xyz/sdk';
|
|
2
|
+
export declare const metadata: ChainMetadata;
|
|
@@ -1,26 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
apiUrl: string;
|
|
4
|
-
family: string;
|
|
5
|
-
name: string;
|
|
6
|
-
url: string;
|
|
7
|
-
}[];
|
|
8
|
-
blocks: {
|
|
9
|
-
confirmations: number;
|
|
10
|
-
estimateBlockTime: number;
|
|
11
|
-
reorgPeriod: number;
|
|
12
|
-
};
|
|
13
|
-
chainId: number;
|
|
14
|
-
displayName: string;
|
|
15
|
-
domainId: number;
|
|
16
|
-
name: string;
|
|
17
|
-
nativeToken: {
|
|
18
|
-
decimals: number;
|
|
19
|
-
name: string;
|
|
20
|
-
symbol: string;
|
|
21
|
-
};
|
|
22
|
-
protocol: string;
|
|
23
|
-
rpcUrls: {
|
|
24
|
-
http: string;
|
|
25
|
-
}[];
|
|
26
|
-
};
|
|
1
|
+
import type { ChainMetadata } from '@hyperlane-xyz/sdk';
|
|
2
|
+
export declare const metadata: ChainMetadata;
|
|
@@ -1,28 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
apiUrl: string;
|
|
4
|
-
family: string;
|
|
5
|
-
name: string;
|
|
6
|
-
url: string;
|
|
7
|
-
}[];
|
|
8
|
-
blocks: {
|
|
9
|
-
confirmations: number;
|
|
10
|
-
estimateBlockTime: number;
|
|
11
|
-
reorgPeriod: number;
|
|
12
|
-
};
|
|
13
|
-
chainId: number;
|
|
14
|
-
displayName: string;
|
|
15
|
-
displayNameShort: string;
|
|
16
|
-
domainId: number;
|
|
17
|
-
isTestnet: boolean;
|
|
18
|
-
name: string;
|
|
19
|
-
nativeToken: {
|
|
20
|
-
decimals: number;
|
|
21
|
-
name: string;
|
|
22
|
-
symbol: string;
|
|
23
|
-
};
|
|
24
|
-
protocol: string;
|
|
25
|
-
rpcUrls: {
|
|
26
|
-
http: string;
|
|
27
|
-
}[];
|
|
28
|
-
};
|
|
1
|
+
import type { ChainMetadata } from '@hyperlane-xyz/sdk';
|
|
2
|
+
export declare const metadata: ChainMetadata;
|
|
@@ -1,28 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
apiUrl: string;
|
|
4
|
-
family: string;
|
|
5
|
-
name: string;
|
|
6
|
-
url: string;
|
|
7
|
-
}[];
|
|
8
|
-
blocks: {
|
|
9
|
-
confirmations: number;
|
|
10
|
-
estimateBlockTime: number;
|
|
11
|
-
reorgPeriod: number;
|
|
12
|
-
};
|
|
13
|
-
chainId: number;
|
|
14
|
-
displayName: string;
|
|
15
|
-
displayNameShort: string;
|
|
16
|
-
domainId: number;
|
|
17
|
-
isTestnet: boolean;
|
|
18
|
-
name: string;
|
|
19
|
-
nativeToken: {
|
|
20
|
-
decimals: number;
|
|
21
|
-
name: string;
|
|
22
|
-
symbol: string;
|
|
23
|
-
};
|
|
24
|
-
protocol: string;
|
|
25
|
-
rpcUrls: {
|
|
26
|
-
http: string;
|
|
27
|
-
}[];
|
|
28
|
-
};
|
|
1
|
+
import type { ChainMetadata } from '@hyperlane-xyz/sdk';
|
|
2
|
+
export declare const metadata: ChainMetadata;
|
|
@@ -1,27 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
apiUrl: string;
|
|
4
|
-
family: string;
|
|
5
|
-
name: string;
|
|
6
|
-
url: string;
|
|
7
|
-
}[];
|
|
8
|
-
blocks: {
|
|
9
|
-
confirmations: number;
|
|
10
|
-
estimateBlockTime: number;
|
|
11
|
-
reorgPeriod: number;
|
|
12
|
-
};
|
|
13
|
-
chainId: number;
|
|
14
|
-
displayName: string;
|
|
15
|
-
domainId: number;
|
|
16
|
-
gasCurrencyCoinGeckoId: string;
|
|
17
|
-
name: string;
|
|
18
|
-
nativeToken: {
|
|
19
|
-
decimals: number;
|
|
20
|
-
name: string;
|
|
21
|
-
symbol: string;
|
|
22
|
-
};
|
|
23
|
-
protocol: string;
|
|
24
|
-
rpcUrls: {
|
|
25
|
-
http: string;
|
|
26
|
-
}[];
|
|
27
|
-
};
|
|
1
|
+
import type { ChainMetadata } from '@hyperlane-xyz/sdk';
|
|
2
|
+
export declare const metadata: ChainMetadata;
|