@ercworldio/blockchain-shared 1.0.0-dev.5 → 1.0.0
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/build/chains/networks_dev.json +8 -8
- package/build/chains/networks_prod-bu.json +26 -0
- package/build/chains/networks_prod.json +233 -221
- package/build/services/AccountingService.d.ts +1 -1
- package/build/services/AccountingService.d.ts.map +1 -1
- package/build/services/ClaimJobService.d.ts +1 -0
- package/build/services/ClaimJobService.d.ts.map +1 -1
- package/build/services/ClaimJobService.js +9 -0
- package/build/services/DepositAddressService.d.ts +1 -0
- package/build/services/DepositAddressService.d.ts.map +1 -1
- package/build/services/DepositAddressService.js +11 -0
- package/build/services/InvoiceQueue.d.ts +1 -1
- package/build/services/InvoiceQueue.d.ts.map +1 -1
- package/build/services/ProviderManager.d.ts.map +1 -1
- package/build/services/ProviderManager.js +6 -1
- package/build/services/Redis.d.ts +20 -9
- package/build/services/Redis.d.ts.map +1 -1
- package/build/services/Redis.js +246 -199
- package/build/services/RedisListQueue.d.ts.map +1 -1
- package/build/services/RedisListQueue.js +7 -1
- package/build/services/SweepJobService.d.ts +1 -0
- package/build/services/SweepJobService.d.ts.map +1 -1
- package/build/services/SweepJobService.js +9 -0
- package/build/services/TimerManager.d.ts.map +1 -1
- package/build/services/TimerManager.js +9 -1
- package/build/services/WithdrawalManager.d.ts +1 -1
- package/build/services/WithdrawalManager.d.ts.map +1 -1
- package/build/services/WithdrawalManager.js +41 -37
- package/build/services/solana/escrow/services/EscrowAdminUtility.d.ts +1 -0
- package/build/services/solana/escrow/services/EscrowAdminUtility.d.ts.map +1 -1
- package/build/services/solana/escrow/services/EscrowAdminUtility.js +3 -1
- package/build/utils/AsyncRateLimiter.d.ts.map +1 -1
- package/build/utils/AsyncRateLimiter.js +3 -0
- package/build/utils/custodial.js +2 -2
- package/package.json +1 -1
|
@@ -1,100 +1,27 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"status": true,
|
|
4
|
-
"isTestnet": false,
|
|
5
|
-
"name": "Lightning Network",
|
|
6
|
-
"blockchainType": "lightning",
|
|
7
|
-
"chainId": 1000000000,
|
|
8
|
-
"blockexplorerUrl": "https://mempool.space/lightning",
|
|
9
|
-
"rpcBaseUrl": "",
|
|
10
|
-
"rpcBaseUrlWss": "",
|
|
11
|
-
"targetConfirmations": 1,
|
|
12
|
-
"custodialAlchemyWebhooks": [],
|
|
13
|
-
"contracts": [],
|
|
14
|
-
"paymentTokens": []
|
|
15
|
-
},
|
|
16
|
-
"728126428": {
|
|
17
|
-
"status": true,
|
|
18
|
-
"isTestnet": false,
|
|
19
|
-
"name": "Tron",
|
|
20
|
-
"blockchainType": "tron",
|
|
21
|
-
"chainId": 728126428,
|
|
22
|
-
"blockexplorerUrl": "https://tronscan.org",
|
|
23
|
-
"tronConfig": {
|
|
24
|
-
"trxTransferCost": 270000,
|
|
25
|
-
"trc20TransferCost": 4000000
|
|
26
|
-
},
|
|
27
|
-
"accounting": {
|
|
28
|
-
"funding_wallet": "TN4tXH5F36BxWEe8UQuUeMr1EuPwJjNUFJ",
|
|
29
|
-
"treasury_receiver": "TN4tXH5F36BxWEe8UQuUeMr1EuPwJjNUFJ",
|
|
30
|
-
"overflow_treasury_receiver": "TCdE3ZGvBjUcqVCreT25SWwF36gkiLYTGD",
|
|
31
|
-
"overflow_threshold_decimal": 100000
|
|
32
|
-
},
|
|
33
|
-
"rpcMetadata": {
|
|
34
|
-
"rpcBaseUrl": "https://rpc.ankr.com/premium-http/tron",
|
|
35
|
-
"tronGridApi": "https://api.trongrid.io"
|
|
36
|
-
},
|
|
37
|
-
"rpcBaseUrl": "https://api.nileex.io",
|
|
38
|
-
"rpcBaseUrlWss": "",
|
|
39
|
-
"targetConfirmations": 2,
|
|
40
|
-
"quicknodeStreams": [
|
|
41
|
-
{
|
|
42
|
-
"network": "tron-mainnet",
|
|
43
|
-
"dataset": "logs",
|
|
44
|
-
"name": "tron-custodial-transfers",
|
|
45
|
-
"listConfig": {
|
|
46
|
-
"key": "custodial-addresses"
|
|
47
|
-
}
|
|
48
|
-
}
|
|
49
|
-
],
|
|
50
|
-
"custodialAlchemyWebhooks": [],
|
|
51
|
-
"contracts": [],
|
|
52
|
-
"paymentTokens": [
|
|
53
|
-
{
|
|
54
|
-
"name": "Tron",
|
|
55
|
-
"symbol": "TRX",
|
|
56
|
-
"token_standard": "TRX",
|
|
57
|
-
"type": "native",
|
|
58
|
-
"decimals": 6,
|
|
59
|
-
"address": "0000000000000000000000000000000000000000",
|
|
60
|
-
"sweepThreshold": 10,
|
|
61
|
-
"sweepWalletMinBalance": 6
|
|
62
|
-
},
|
|
63
|
-
{
|
|
64
|
-
"name": "Tether Token",
|
|
65
|
-
"symbol": "USDT",
|
|
66
|
-
"token_standard": "TRC-20",
|
|
67
|
-
"type": "trc20",
|
|
68
|
-
"decimals": 6,
|
|
69
|
-
"address": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t",
|
|
70
|
-
"sweepThreshold": 5,
|
|
71
|
-
"sweepWalletMinBalance": 0
|
|
72
|
-
}
|
|
73
|
-
]
|
|
74
|
-
},
|
|
75
|
-
"101": {
|
|
2
|
+
"1": {
|
|
76
3
|
"status": true,
|
|
77
4
|
"isTestnet": false,
|
|
78
|
-
"name": "
|
|
79
|
-
"blockchainType": "
|
|
80
|
-
"chainId":
|
|
81
|
-
"blockexplorerUrl": "https://
|
|
82
|
-
"rpcBaseUrl": "https://rpc.ankr.com/
|
|
83
|
-
"rpcBaseUrlWss": "wss://rpc.ankr.com/
|
|
84
|
-
"targetConfirmations":
|
|
5
|
+
"name": "Ethereum",
|
|
6
|
+
"blockchainType": "evm",
|
|
7
|
+
"chainId": 1,
|
|
8
|
+
"blockexplorerUrl": "https://sepolia.etherscan.io",
|
|
9
|
+
"rpcBaseUrl": "https://rpc.ankr.com/eth_sepolia",
|
|
10
|
+
"rpcBaseUrlWss": "wss://rpc.ankr.com/eth_sepolia/ws",
|
|
11
|
+
"targetConfirmations": 10,
|
|
85
12
|
"accounting": {
|
|
86
|
-
"funding_wallet": "
|
|
87
|
-
"treasury_receiver": "
|
|
88
|
-
"overflow_treasury_receiver": "
|
|
13
|
+
"funding_wallet": "0xF84a78E56fBACAADd73E59eDAe02b3b80e4966C8",
|
|
14
|
+
"treasury_receiver": "0xEA8Ad078561B83724EEcDBb5b5A4f03369115Cf8",
|
|
15
|
+
"overflow_treasury_receiver": "0xF84a78E56fBACAADd73E59eDAe02b3b80e4966C8",
|
|
89
16
|
"overflow_threshold_decimal": 100000
|
|
90
17
|
},
|
|
91
18
|
"custodialAlchemyWebhooks": [
|
|
92
19
|
{
|
|
93
|
-
"chainId": "
|
|
94
|
-
"network_symbol": "
|
|
95
|
-
"network": "
|
|
20
|
+
"chainId": "1",
|
|
21
|
+
"network_symbol": "eth",
|
|
22
|
+
"network": "ETH_MAINNET",
|
|
96
23
|
"total_wallet_count": 10,
|
|
97
|
-
"endpoint": "webhook/alchemy/address-activity-
|
|
24
|
+
"endpoint": "webhook/alchemy/address-activity-eth",
|
|
98
25
|
"source": "wallet"
|
|
99
26
|
}
|
|
100
27
|
],
|
|
@@ -102,49 +29,49 @@
|
|
|
102
29
|
{
|
|
103
30
|
"type": "Escrow",
|
|
104
31
|
"version": "1",
|
|
105
|
-
"startingBlock":
|
|
32
|
+
"startingBlock": 7130234,
|
|
106
33
|
"escrowAlchemyWebhooks": [
|
|
107
34
|
{
|
|
108
|
-
"chainId": "
|
|
109
|
-
"network_symbol": "
|
|
110
|
-
"network": "
|
|
111
|
-
"type": "
|
|
112
|
-
"endpoint": "webhook/alchemy/
|
|
35
|
+
"chainId": "1",
|
|
36
|
+
"network_symbol": "eth",
|
|
37
|
+
"network": "ETH_MAINNET",
|
|
38
|
+
"type": "GRAPHQL",
|
|
39
|
+
"endpoint": "webhook/alchemy/escrow-events",
|
|
113
40
|
"source": "contract"
|
|
114
41
|
}
|
|
115
42
|
],
|
|
116
43
|
"addresses": [
|
|
117
|
-
"
|
|
44
|
+
"0xEA8Ad078561B83724EEcDBb5b5A4f03369115Cf8"
|
|
118
45
|
]
|
|
119
46
|
},
|
|
120
47
|
{
|
|
121
|
-
"type": "
|
|
48
|
+
"type": "Erc20",
|
|
122
49
|
"version": "1",
|
|
123
|
-
"startingBlock":
|
|
50
|
+
"startingBlock": 0,
|
|
124
51
|
"escrowAlchemyWebhooks": [],
|
|
125
52
|
"addresses": [
|
|
126
|
-
"
|
|
53
|
+
"0xd36A20dB12953F0bf09C66B08c1771ae046D2152"
|
|
127
54
|
]
|
|
128
55
|
}
|
|
129
56
|
],
|
|
130
57
|
"paymentTokens": [
|
|
131
58
|
{
|
|
132
|
-
"name": "
|
|
133
|
-
"symbol": "
|
|
134
|
-
"token_standard": "
|
|
59
|
+
"name": "Ethereum",
|
|
60
|
+
"symbol": "ETH",
|
|
61
|
+
"token_standard": "ERC-20",
|
|
135
62
|
"type": "native",
|
|
136
|
-
"decimals":
|
|
137
|
-
"address": "
|
|
138
|
-
"sweepThreshold": 0.
|
|
139
|
-
"sweepWalletMinBalance": 0.
|
|
63
|
+
"decimals": 18,
|
|
64
|
+
"address": "0x0000000000000000000000000000000000000000",
|
|
65
|
+
"sweepThreshold": 0.003,
|
|
66
|
+
"sweepWalletMinBalance": 0.001
|
|
140
67
|
},
|
|
141
68
|
{
|
|
142
|
-
"name": "
|
|
143
|
-
"symbol": "
|
|
144
|
-
"token_standard": "
|
|
69
|
+
"name": "Tether Token",
|
|
70
|
+
"symbol": "USDT",
|
|
71
|
+
"token_standard": "ERC-20",
|
|
145
72
|
"type": "erc20",
|
|
146
73
|
"decimals": 6,
|
|
147
|
-
"address": "
|
|
74
|
+
"address": "0xd36A20dB12953F0bf09C66B08c1771ae046D2152",
|
|
148
75
|
"sweepThreshold": 5,
|
|
149
76
|
"sweepWalletMinBalance": 0
|
|
150
77
|
}
|
|
@@ -228,29 +155,29 @@
|
|
|
228
155
|
}
|
|
229
156
|
]
|
|
230
157
|
},
|
|
231
|
-
"
|
|
158
|
+
"101": {
|
|
232
159
|
"status": true,
|
|
233
160
|
"isTestnet": false,
|
|
234
|
-
"name": "
|
|
235
|
-
"blockchainType": "
|
|
236
|
-
"chainId":
|
|
237
|
-
"blockexplorerUrl": "https://
|
|
238
|
-
"rpcBaseUrl": "https://rpc.ankr.com/
|
|
239
|
-
"rpcBaseUrlWss": "wss://rpc.ankr.com/
|
|
240
|
-
"targetConfirmations":
|
|
161
|
+
"name": "Solana",
|
|
162
|
+
"blockchainType": "solana",
|
|
163
|
+
"chainId": 101,
|
|
164
|
+
"blockexplorerUrl": "https://solscan.io",
|
|
165
|
+
"rpcBaseUrl": "https://rpc.ankr.com/solana",
|
|
166
|
+
"rpcBaseUrlWss": "wss://rpc.ankr.com/solana/ws",
|
|
167
|
+
"targetConfirmations": 2,
|
|
241
168
|
"accounting": {
|
|
242
|
-
"funding_wallet": "
|
|
243
|
-
"treasury_receiver": "
|
|
244
|
-
"overflow_treasury_receiver": "
|
|
169
|
+
"funding_wallet": "GLfRJqsRtTNDVvYVccXrz8RCKNnad2hqQfgFaApAKXCq",
|
|
170
|
+
"treasury_receiver": "AAuFzrm6H4Vv7UyJi8R5Gsm4ixtR2yVmqzLmuyUTS5cu",
|
|
171
|
+
"overflow_treasury_receiver": "GLfRJqsRtTNDVvYVccXrz8RCKNnad2hqQfgFaApAKXCq",
|
|
245
172
|
"overflow_threshold_decimal": 100000
|
|
246
173
|
},
|
|
247
174
|
"custodialAlchemyWebhooks": [
|
|
248
175
|
{
|
|
249
|
-
"chainId": "
|
|
250
|
-
"network_symbol": "
|
|
251
|
-
"network": "
|
|
176
|
+
"chainId": "101",
|
|
177
|
+
"network_symbol": "sol",
|
|
178
|
+
"network": "SOLANA_MAINNET",
|
|
252
179
|
"total_wallet_count": 10,
|
|
253
|
-
"endpoint": "webhook/alchemy/address-activity-
|
|
180
|
+
"endpoint": "webhook/alchemy/address-activity-sol",
|
|
254
181
|
"source": "wallet"
|
|
255
182
|
}
|
|
256
183
|
],
|
|
@@ -258,77 +185,77 @@
|
|
|
258
185
|
{
|
|
259
186
|
"type": "Escrow",
|
|
260
187
|
"version": "1",
|
|
261
|
-
"startingBlock":
|
|
188
|
+
"startingBlock": 416497745,
|
|
262
189
|
"escrowAlchemyWebhooks": [
|
|
263
190
|
{
|
|
264
|
-
"chainId": "
|
|
265
|
-
"network_symbol": "
|
|
266
|
-
"network": "
|
|
267
|
-
"type": "
|
|
268
|
-
"endpoint": "webhook/alchemy/escrow-events",
|
|
191
|
+
"chainId": "101",
|
|
192
|
+
"network_symbol": "sol",
|
|
193
|
+
"network": "SOLANA_MAINNET",
|
|
194
|
+
"type": "ADDRESS_ACTIVITY",
|
|
195
|
+
"endpoint": "webhook/alchemy/solana/escrow-events",
|
|
269
196
|
"source": "contract"
|
|
270
197
|
}
|
|
271
198
|
],
|
|
272
199
|
"addresses": [
|
|
273
|
-
"
|
|
200
|
+
"AAuFzrm6H4Vv7UyJi8R5Gsm4ixtR2yVmqzLmuyUTS5cu"
|
|
274
201
|
]
|
|
275
202
|
},
|
|
276
203
|
{
|
|
277
|
-
"type": "
|
|
204
|
+
"type": "FundingWallet",
|
|
278
205
|
"version": "1",
|
|
279
|
-
"startingBlock":
|
|
206
|
+
"startingBlock": 45852351,
|
|
280
207
|
"escrowAlchemyWebhooks": [],
|
|
281
208
|
"addresses": [
|
|
282
|
-
"
|
|
209
|
+
"GLfRJqsRtTNDVvYVccXrz8RCKNnad2hqQfgFaApAKXCq"
|
|
283
210
|
]
|
|
284
211
|
}
|
|
285
212
|
],
|
|
286
213
|
"paymentTokens": [
|
|
287
214
|
{
|
|
288
|
-
"name": "
|
|
289
|
-
"symbol": "
|
|
290
|
-
"token_standard": "
|
|
215
|
+
"name": "Solana",
|
|
216
|
+
"symbol": "SOL",
|
|
217
|
+
"token_standard": "SOL",
|
|
291
218
|
"type": "native",
|
|
292
|
-
"decimals":
|
|
293
|
-
"address": "
|
|
294
|
-
"sweepThreshold": 0.
|
|
219
|
+
"decimals": 9,
|
|
220
|
+
"address": "11111111111111111111111111111111",
|
|
221
|
+
"sweepThreshold": 0.06,
|
|
295
222
|
"sweepWalletMinBalance": 0.01
|
|
296
223
|
},
|
|
297
224
|
{
|
|
298
|
-
"name": "
|
|
299
|
-
"symbol": "
|
|
300
|
-
"token_standard": "
|
|
225
|
+
"name": "Circle Token",
|
|
226
|
+
"symbol": "USDC",
|
|
227
|
+
"token_standard": "SOL",
|
|
301
228
|
"type": "erc20",
|
|
302
229
|
"decimals": 6,
|
|
303
|
-
"address": "
|
|
230
|
+
"address": "4zMMC9srt5Ri5X14GAgXhaHii3GnPAEERYPJgZJDncDU",
|
|
304
231
|
"sweepThreshold": 5,
|
|
305
232
|
"sweepWalletMinBalance": 0
|
|
306
233
|
}
|
|
307
234
|
]
|
|
308
235
|
},
|
|
309
|
-
"
|
|
236
|
+
"137": {
|
|
310
237
|
"status": true,
|
|
311
238
|
"isTestnet": false,
|
|
312
|
-
"name": "
|
|
239
|
+
"name": "Polygon",
|
|
313
240
|
"blockchainType": "evm",
|
|
314
|
-
"chainId":
|
|
315
|
-
"blockexplorerUrl": "https://
|
|
316
|
-
"rpcBaseUrl": "https://rpc.ankr.com/
|
|
317
|
-
"rpcBaseUrlWss": "wss://rpc.ankr.com/
|
|
241
|
+
"chainId": 137,
|
|
242
|
+
"blockexplorerUrl": "https://polygonscan.com",
|
|
243
|
+
"rpcBaseUrl": "https://rpc.ankr.com/polygon",
|
|
244
|
+
"rpcBaseUrlWss": "wss://rpc.ankr.com/polygon/ws",
|
|
318
245
|
"targetConfirmations": 10,
|
|
319
246
|
"accounting": {
|
|
320
247
|
"funding_wallet": "0xF84a78E56fBACAADd73E59eDAe02b3b80e4966C8",
|
|
321
|
-
"treasury_receiver": "
|
|
248
|
+
"treasury_receiver": "0x69E1F9316E03Da502B52f4682b0349d36CFBfFfD",
|
|
322
249
|
"overflow_treasury_receiver": "0xF84a78E56fBACAADd73E59eDAe02b3b80e4966C8",
|
|
323
250
|
"overflow_threshold_decimal": 100000
|
|
324
251
|
},
|
|
325
252
|
"custodialAlchemyWebhooks": [
|
|
326
253
|
{
|
|
327
|
-
"chainId": "
|
|
328
|
-
"network_symbol": "
|
|
329
|
-
"network": "
|
|
254
|
+
"chainId": "137",
|
|
255
|
+
"network_symbol": "pol",
|
|
256
|
+
"network": "MATIC_MAINNET",
|
|
330
257
|
"total_wallet_count": 10,
|
|
331
|
-
"endpoint": "webhook/alchemy/address-activity-
|
|
258
|
+
"endpoint": "webhook/alchemy/address-activity-pol",
|
|
332
259
|
"source": "wallet"
|
|
333
260
|
}
|
|
334
261
|
],
|
|
@@ -336,77 +263,76 @@
|
|
|
336
263
|
{
|
|
337
264
|
"type": "Escrow",
|
|
338
265
|
"version": "1",
|
|
339
|
-
"startingBlock":
|
|
266
|
+
"startingBlock": 14742924,
|
|
340
267
|
"escrowAlchemyWebhooks": [
|
|
341
268
|
{
|
|
342
|
-
"chainId": "
|
|
343
|
-
"network_symbol": "
|
|
344
|
-
"network": "
|
|
269
|
+
"chainId": "137",
|
|
270
|
+
"network_symbol": "pol",
|
|
271
|
+
"network": "MATIC_MAINNET",
|
|
345
272
|
"type": "GRAPHQL",
|
|
346
273
|
"endpoint": "webhook/alchemy/escrow-events",
|
|
347
274
|
"source": "contract"
|
|
348
275
|
}
|
|
349
276
|
],
|
|
350
277
|
"addresses": [
|
|
351
|
-
"
|
|
278
|
+
"0x69E1F9316E03Da502B52f4682b0349d36CFBfFfD"
|
|
352
279
|
]
|
|
353
280
|
},
|
|
354
281
|
{
|
|
355
282
|
"type": "Erc20",
|
|
356
283
|
"version": "1",
|
|
357
284
|
"startingBlock": 0,
|
|
358
|
-
"escrowAlchemyWebhooks": [],
|
|
359
285
|
"addresses": [
|
|
360
|
-
"
|
|
286
|
+
"0x6F8cCEFD7Ba389713C3DCFA6C145f2d4fC2731a9"
|
|
361
287
|
]
|
|
362
288
|
}
|
|
363
289
|
],
|
|
364
290
|
"paymentTokens": [
|
|
365
291
|
{
|
|
366
|
-
"name": "
|
|
367
|
-
"symbol": "
|
|
368
|
-
"token_standard": "
|
|
292
|
+
"name": "Polygon",
|
|
293
|
+
"symbol": "POL",
|
|
294
|
+
"token_standard": "POL",
|
|
369
295
|
"type": "native",
|
|
370
296
|
"decimals": 18,
|
|
371
297
|
"address": "0x0000000000000000000000000000000000000000",
|
|
372
|
-
"sweepThreshold":
|
|
373
|
-
"sweepWalletMinBalance": 0.
|
|
298
|
+
"sweepThreshold": 10,
|
|
299
|
+
"sweepWalletMinBalance": 0.1
|
|
374
300
|
},
|
|
375
301
|
{
|
|
376
302
|
"name": "Tether Token",
|
|
377
|
-
"symbol": "
|
|
378
|
-
"token_standard": "
|
|
303
|
+
"symbol": "USDT0",
|
|
304
|
+
"token_standard": "POL",
|
|
379
305
|
"type": "erc20",
|
|
380
306
|
"decimals": 6,
|
|
381
|
-
"address": "
|
|
307
|
+
"address": "0xc2132D05D31c914a87C6611C10748AEb04B58e8F",
|
|
382
308
|
"sweepThreshold": 5,
|
|
383
309
|
"sweepWalletMinBalance": 0
|
|
384
310
|
}
|
|
385
311
|
]
|
|
386
312
|
},
|
|
387
|
-
"
|
|
313
|
+
"143": {
|
|
388
314
|
"status": true,
|
|
389
315
|
"isTestnet": false,
|
|
390
|
-
"name": "
|
|
316
|
+
"name": "Monad",
|
|
391
317
|
"blockchainType": "evm",
|
|
392
|
-
"chainId":
|
|
393
|
-
"blockexplorerUrl": "https://
|
|
394
|
-
"rpcBaseUrl": "https://rpc.ankr.com/
|
|
395
|
-
"rpcBaseUrlWss": "wss://rpc.ankr.com/
|
|
318
|
+
"chainId": 143,
|
|
319
|
+
"blockexplorerUrl": "https://monadscan.com",
|
|
320
|
+
"rpcBaseUrl": "https://rpc.ankr.com/monad_mainnet",
|
|
321
|
+
"rpcBaseUrlWss": "wss://rpc.ankr.com/monad_mainnet/ws",
|
|
396
322
|
"targetConfirmations": 10,
|
|
397
323
|
"accounting": {
|
|
398
324
|
"funding_wallet": "0xF84a78E56fBACAADd73E59eDAe02b3b80e4966C8",
|
|
399
|
-
"treasury_receiver": "
|
|
325
|
+
"treasury_receiver": "0xf4BE5695F5eCd281171ab625ceb59bEee081e14f",
|
|
400
326
|
"overflow_treasury_receiver": "0xF84a78E56fBACAADd73E59eDAe02b3b80e4966C8",
|
|
401
327
|
"overflow_threshold_decimal": 100000
|
|
402
328
|
},
|
|
403
329
|
"custodialAlchemyWebhooks": [
|
|
404
330
|
{
|
|
405
|
-
"chainId": "
|
|
406
|
-
"network_symbol": "
|
|
407
|
-
"network": "
|
|
331
|
+
"chainId": "143",
|
|
332
|
+
"network_symbol": "mon",
|
|
333
|
+
"network": "MONAD_MAINNET",
|
|
408
334
|
"total_wallet_count": 10,
|
|
409
|
-
"endpoint": "webhook/alchemy/address-activity-
|
|
335
|
+
"endpoint": "webhook/alchemy/address-activity-mon",
|
|
410
336
|
"source": "wallet"
|
|
411
337
|
}
|
|
412
338
|
],
|
|
@@ -414,76 +340,76 @@
|
|
|
414
340
|
{
|
|
415
341
|
"type": "Escrow",
|
|
416
342
|
"version": "1",
|
|
417
|
-
"startingBlock":
|
|
343
|
+
"startingBlock": 56193231,
|
|
418
344
|
"escrowAlchemyWebhooks": [
|
|
419
345
|
{
|
|
420
|
-
"chainId": "
|
|
421
|
-
"network_symbol": "
|
|
422
|
-
"network": "
|
|
346
|
+
"chainId": "143",
|
|
347
|
+
"network_symbol": "mon",
|
|
348
|
+
"network": "MONAD_MAINNET",
|
|
423
349
|
"type": "GRAPHQL",
|
|
424
350
|
"endpoint": "webhook/alchemy/escrow-events",
|
|
425
351
|
"source": "contract"
|
|
426
352
|
}
|
|
427
353
|
],
|
|
428
354
|
"addresses": [
|
|
429
|
-
"
|
|
355
|
+
"0xf4BE5695F5eCd281171ab625ceb59bEee081e14f"
|
|
430
356
|
]
|
|
431
357
|
},
|
|
432
358
|
{
|
|
433
359
|
"type": "Erc20",
|
|
434
360
|
"version": "1",
|
|
435
|
-
"startingBlock":
|
|
361
|
+
"startingBlock": 56194507,
|
|
436
362
|
"addresses": [
|
|
437
|
-
"
|
|
363
|
+
"0xc60f378d2C9Cc06c4830B788976bc1003d5159fe"
|
|
438
364
|
]
|
|
439
365
|
}
|
|
440
366
|
],
|
|
441
367
|
"paymentTokens": [
|
|
442
368
|
{
|
|
443
|
-
"name": "
|
|
444
|
-
"symbol": "
|
|
445
|
-
"token_standard": "
|
|
369
|
+
"name": "Monad",
|
|
370
|
+
"symbol": "MON",
|
|
371
|
+
"token_standard": "ERC-20",
|
|
446
372
|
"type": "native",
|
|
447
373
|
"decimals": 18,
|
|
448
374
|
"address": "0x0000000000000000000000000000000000000000",
|
|
449
|
-
"sweepThreshold":
|
|
450
|
-
"sweepWalletMinBalance":
|
|
375
|
+
"sweepThreshold": 100,
|
|
376
|
+
"sweepWalletMinBalance": 1
|
|
451
377
|
},
|
|
452
378
|
{
|
|
453
379
|
"name": "Tether Token",
|
|
454
|
-
"symbol": "
|
|
455
|
-
"token_standard": "
|
|
380
|
+
"symbol": "USDT",
|
|
381
|
+
"token_standard": "ERC-20",
|
|
456
382
|
"type": "erc20",
|
|
457
383
|
"decimals": 6,
|
|
458
|
-
"address": "
|
|
384
|
+
"address": "0xc60f378d2C9Cc06c4830B788976bc1003d5159fe",
|
|
459
385
|
"sweepThreshold": 5,
|
|
460
386
|
"sweepWalletMinBalance": 0
|
|
461
387
|
}
|
|
462
388
|
]
|
|
463
389
|
},
|
|
464
|
-
"
|
|
390
|
+
"43114": {
|
|
465
391
|
"status": true,
|
|
466
392
|
"isTestnet": false,
|
|
467
|
-
"name": "
|
|
393
|
+
"name": "Avalanche C-Chain",
|
|
468
394
|
"blockchainType": "evm",
|
|
469
|
-
"chainId":
|
|
470
|
-
"blockexplorerUrl": "https://
|
|
471
|
-
"rpcBaseUrl": "https://rpc.ankr.com/
|
|
472
|
-
"rpcBaseUrlWss": "wss://rpc.ankr.com/
|
|
395
|
+
"chainId": 43114,
|
|
396
|
+
"blockexplorerUrl": "https://snowtrace.io",
|
|
397
|
+
"rpcBaseUrl": "https://rpc.ankr.com/avalanche-c",
|
|
398
|
+
"rpcBaseUrlWss": "wss://rpc.ankr.com/avalanche-c/ws",
|
|
473
399
|
"targetConfirmations": 10,
|
|
474
400
|
"accounting": {
|
|
475
401
|
"funding_wallet": "0xF84a78E56fBACAADd73E59eDAe02b3b80e4966C8",
|
|
476
|
-
"treasury_receiver": "
|
|
402
|
+
"treasury_receiver": "0x89DecB6b265D7714A69EE05E3Bc50Fd829D7Ef90",
|
|
477
403
|
"overflow_treasury_receiver": "0xF84a78E56fBACAADd73E59eDAe02b3b80e4966C8",
|
|
478
404
|
"overflow_threshold_decimal": 100000
|
|
479
405
|
},
|
|
480
406
|
"custodialAlchemyWebhooks": [
|
|
481
407
|
{
|
|
482
|
-
"chainId": "
|
|
483
|
-
"network_symbol": "
|
|
484
|
-
"network": "
|
|
408
|
+
"chainId": "43114",
|
|
409
|
+
"network_symbol": "avax",
|
|
410
|
+
"network": "AVAX_MAINNET",
|
|
485
411
|
"total_wallet_count": 10,
|
|
486
|
-
"endpoint": "webhook/alchemy/address-activity-
|
|
412
|
+
"endpoint": "webhook/alchemy/address-activity-avax",
|
|
487
413
|
"source": "wallet"
|
|
488
414
|
}
|
|
489
415
|
],
|
|
@@ -491,51 +417,137 @@
|
|
|
491
417
|
{
|
|
492
418
|
"type": "Escrow",
|
|
493
419
|
"version": "1",
|
|
494
|
-
"startingBlock":
|
|
420
|
+
"startingBlock": 36790396,
|
|
495
421
|
"escrowAlchemyWebhooks": [
|
|
496
422
|
{
|
|
497
|
-
"chainId": "
|
|
498
|
-
"network_symbol": "
|
|
499
|
-
"network": "
|
|
423
|
+
"chainId": "43114",
|
|
424
|
+
"network_symbol": "avax",
|
|
425
|
+
"network": "AVAX_MAINNET",
|
|
500
426
|
"type": "GRAPHQL",
|
|
501
427
|
"endpoint": "webhook/alchemy/escrow-events",
|
|
502
428
|
"source": "contract"
|
|
503
429
|
}
|
|
504
430
|
],
|
|
505
431
|
"addresses": [
|
|
506
|
-
"
|
|
432
|
+
"0x89DecB6b265D7714A69EE05E3Bc50Fd829D7Ef90"
|
|
507
433
|
]
|
|
508
434
|
},
|
|
509
435
|
{
|
|
510
436
|
"type": "Erc20",
|
|
511
437
|
"version": "1",
|
|
512
|
-
"startingBlock":
|
|
438
|
+
"startingBlock": 0,
|
|
439
|
+
"escrowAlchemyWebhooks": [],
|
|
513
440
|
"addresses": [
|
|
514
|
-
"
|
|
441
|
+
"0x6F8cCEFD7Ba389713C3DCFA6C145f2d4fC2731a9"
|
|
515
442
|
]
|
|
516
443
|
}
|
|
517
444
|
],
|
|
518
445
|
"paymentTokens": [
|
|
519
446
|
{
|
|
520
|
-
"name": "
|
|
521
|
-
"symbol": "
|
|
522
|
-
"token_standard": "
|
|
447
|
+
"name": "Avalanche",
|
|
448
|
+
"symbol": "AVAX",
|
|
449
|
+
"token_standard": "AVAXC",
|
|
523
450
|
"type": "native",
|
|
524
451
|
"decimals": 18,
|
|
525
452
|
"address": "0x0000000000000000000000000000000000000000",
|
|
526
|
-
"sweepThreshold":
|
|
527
|
-
"sweepWalletMinBalance":
|
|
453
|
+
"sweepThreshold": 0.1,
|
|
454
|
+
"sweepWalletMinBalance": 0.01
|
|
528
455
|
},
|
|
529
456
|
{
|
|
530
457
|
"name": "Tether Token",
|
|
531
458
|
"symbol": "USDT",
|
|
532
|
-
"token_standard": "
|
|
459
|
+
"token_standard": "AVAXC",
|
|
533
460
|
"type": "erc20",
|
|
534
461
|
"decimals": 6,
|
|
535
|
-
"address": "
|
|
462
|
+
"address": "0x6F8cCEFD7Ba389713C3DCFA6C145f2d4fC2731a9",
|
|
536
463
|
"sweepThreshold": 5,
|
|
537
464
|
"sweepWalletMinBalance": 0
|
|
538
465
|
}
|
|
539
466
|
]
|
|
467
|
+
},
|
|
468
|
+
"728126428": {
|
|
469
|
+
"status": true,
|
|
470
|
+
"isTestnet": false,
|
|
471
|
+
"name": "Tron",
|
|
472
|
+
"blockchainType": "tron",
|
|
473
|
+
"chainId": 728126428,
|
|
474
|
+
"blockexplorerUrl": "https://tronscan.org",
|
|
475
|
+
"tronConfig": {
|
|
476
|
+
"trxTransferCost": 270000,
|
|
477
|
+
"trc20TransferCost": 4000000
|
|
478
|
+
},
|
|
479
|
+
"accounting": {
|
|
480
|
+
"funding_wallet": "TN4tXH5F36BxWEe8UQuUeMr1EuPwJjNUFJ",
|
|
481
|
+
"treasury_receiver": "TN4tXH5F36BxWEe8UQuUeMr1EuPwJjNUFJ",
|
|
482
|
+
"overflow_treasury_receiver": "TCdE3ZGvBjUcqVCreT25SWwF36gkiLYTGD",
|
|
483
|
+
"overflow_threshold_decimal": 100000
|
|
484
|
+
},
|
|
485
|
+
"rpcMetadata": {
|
|
486
|
+
"rpcBaseUrl": "https://rpc.ankr.com/premium-http/tron",
|
|
487
|
+
"tronGridApi": "https://api.trongrid.io"
|
|
488
|
+
},
|
|
489
|
+
"rpcBaseUrl": "https://api.nileex.io",
|
|
490
|
+
"rpcBaseUrlWss": "",
|
|
491
|
+
"targetConfirmations": 2,
|
|
492
|
+
"quicknodeStreams": [
|
|
493
|
+
{
|
|
494
|
+
"network": "tron-mainnet",
|
|
495
|
+
"dataset": "logs",
|
|
496
|
+
"name": "tron-custodial-transfers",
|
|
497
|
+
"listConfig": {
|
|
498
|
+
"key": "custodial-addresses"
|
|
499
|
+
}
|
|
500
|
+
}
|
|
501
|
+
],
|
|
502
|
+
"custodialAlchemyWebhooks": [],
|
|
503
|
+
"contracts": [],
|
|
504
|
+
"paymentTokens": [
|
|
505
|
+
{
|
|
506
|
+
"name": "Tron",
|
|
507
|
+
"symbol": "TRX",
|
|
508
|
+
"token_standard": "TRX",
|
|
509
|
+
"type": "native",
|
|
510
|
+
"decimals": 6,
|
|
511
|
+
"address": "0000000000000000000000000000000000000000",
|
|
512
|
+
"sweepThreshold": 10,
|
|
513
|
+
"sweepWalletMinBalance": 6
|
|
514
|
+
},
|
|
515
|
+
{
|
|
516
|
+
"name": "Tether Token",
|
|
517
|
+
"symbol": "USDT",
|
|
518
|
+
"token_standard": "TRC-20",
|
|
519
|
+
"type": "trc20",
|
|
520
|
+
"decimals": 6,
|
|
521
|
+
"address": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t",
|
|
522
|
+
"sweepThreshold": 5,
|
|
523
|
+
"sweepWalletMinBalance": 0
|
|
524
|
+
}
|
|
525
|
+
]
|
|
526
|
+
},
|
|
527
|
+
"1000000000": {
|
|
528
|
+
"status": true,
|
|
529
|
+
"isTestnet": false,
|
|
530
|
+
"name": "BTC Lightning",
|
|
531
|
+
"blockchainType": "lightning",
|
|
532
|
+
"chainId": 1000000000,
|
|
533
|
+
"blockexplorerUrl": "https://mempool.space/lightning",
|
|
534
|
+
"rpcBaseUrl": "",
|
|
535
|
+
"rpcBaseUrlWss": "",
|
|
536
|
+
"targetConfirmations": 1,
|
|
537
|
+
"custodialAlchemyWebhooks": [],
|
|
538
|
+
"contracts": [],
|
|
539
|
+
"paymentTokens": [
|
|
540
|
+
{
|
|
541
|
+
"name": "Bitcoin",
|
|
542
|
+
"symbol": "BTC",
|
|
543
|
+
"token_standard": "LIGHTNING",
|
|
544
|
+
"type": "native",
|
|
545
|
+
"isStableCoin": false,
|
|
546
|
+
"decimals": 8,
|
|
547
|
+
"address": "000000000000000000000000000000000000000000",
|
|
548
|
+
"sweepThreshold": 0.001,
|
|
549
|
+
"sweepWalletMinBalance": 0.01
|
|
550
|
+
}
|
|
551
|
+
]
|
|
540
552
|
}
|
|
541
553
|
}
|