@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.
Files changed (35) hide show
  1. package/build/chains/networks_dev.json +8 -8
  2. package/build/chains/networks_prod-bu.json +26 -0
  3. package/build/chains/networks_prod.json +233 -221
  4. package/build/services/AccountingService.d.ts +1 -1
  5. package/build/services/AccountingService.d.ts.map +1 -1
  6. package/build/services/ClaimJobService.d.ts +1 -0
  7. package/build/services/ClaimJobService.d.ts.map +1 -1
  8. package/build/services/ClaimJobService.js +9 -0
  9. package/build/services/DepositAddressService.d.ts +1 -0
  10. package/build/services/DepositAddressService.d.ts.map +1 -1
  11. package/build/services/DepositAddressService.js +11 -0
  12. package/build/services/InvoiceQueue.d.ts +1 -1
  13. package/build/services/InvoiceQueue.d.ts.map +1 -1
  14. package/build/services/ProviderManager.d.ts.map +1 -1
  15. package/build/services/ProviderManager.js +6 -1
  16. package/build/services/Redis.d.ts +20 -9
  17. package/build/services/Redis.d.ts.map +1 -1
  18. package/build/services/Redis.js +246 -199
  19. package/build/services/RedisListQueue.d.ts.map +1 -1
  20. package/build/services/RedisListQueue.js +7 -1
  21. package/build/services/SweepJobService.d.ts +1 -0
  22. package/build/services/SweepJobService.d.ts.map +1 -1
  23. package/build/services/SweepJobService.js +9 -0
  24. package/build/services/TimerManager.d.ts.map +1 -1
  25. package/build/services/TimerManager.js +9 -1
  26. package/build/services/WithdrawalManager.d.ts +1 -1
  27. package/build/services/WithdrawalManager.d.ts.map +1 -1
  28. package/build/services/WithdrawalManager.js +41 -37
  29. package/build/services/solana/escrow/services/EscrowAdminUtility.d.ts +1 -0
  30. package/build/services/solana/escrow/services/EscrowAdminUtility.d.ts.map +1 -1
  31. package/build/services/solana/escrow/services/EscrowAdminUtility.js +3 -1
  32. package/build/utils/AsyncRateLimiter.d.ts.map +1 -1
  33. package/build/utils/AsyncRateLimiter.js +3 -0
  34. package/build/utils/custodial.js +2 -2
  35. package/package.json +1 -1
@@ -1,100 +1,27 @@
1
1
  {
2
- "1000000000": {
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": "Solana",
79
- "blockchainType": "solana",
80
- "chainId": 101,
81
- "blockexplorerUrl": "https://solscan.io",
82
- "rpcBaseUrl": "https://rpc.ankr.com/solana",
83
- "rpcBaseUrlWss": "wss://rpc.ankr.com/solana/ws",
84
- "targetConfirmations": 2,
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": "GLfRJqsRtTNDVvYVccXrz8RCKNnad2hqQfgFaApAKXCq",
87
- "treasury_receiver": "AAuFzrm6H4Vv7UyJi8R5Gsm4ixtR2yVmqzLmuyUTS5cu",
88
- "overflow_treasury_receiver": "GLfRJqsRtTNDVvYVccXrz8RCKNnad2hqQfgFaApAKXCq",
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": "101",
94
- "network_symbol": "sol",
95
- "network": "SOLANA_MAINNET",
20
+ "chainId": "1",
21
+ "network_symbol": "eth",
22
+ "network": "ETH_MAINNET",
96
23
  "total_wallet_count": 10,
97
- "endpoint": "webhook/alchemy/address-activity-sol",
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": 416497745,
32
+ "startingBlock": 7130234,
106
33
  "escrowAlchemyWebhooks": [
107
34
  {
108
- "chainId": "101",
109
- "network_symbol": "sol",
110
- "network": "SOLANA_MAINNET",
111
- "type": "ADDRESS_ACTIVITY",
112
- "endpoint": "webhook/alchemy/solana/escrow-events",
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
- "AAuFzrm6H4Vv7UyJi8R5Gsm4ixtR2yVmqzLmuyUTS5cu"
44
+ "0xEA8Ad078561B83724EEcDBb5b5A4f03369115Cf8"
118
45
  ]
119
46
  },
120
47
  {
121
- "type": "FundingWallet",
48
+ "type": "Erc20",
122
49
  "version": "1",
123
- "startingBlock": 45852351,
50
+ "startingBlock": 0,
124
51
  "escrowAlchemyWebhooks": [],
125
52
  "addresses": [
126
- "GLfRJqsRtTNDVvYVccXrz8RCKNnad2hqQfgFaApAKXCq"
53
+ "0xd36A20dB12953F0bf09C66B08c1771ae046D2152"
127
54
  ]
128
55
  }
129
56
  ],
130
57
  "paymentTokens": [
131
58
  {
132
- "name": "Solana",
133
- "symbol": "SOL",
134
- "token_standard": "SOL",
59
+ "name": "Ethereum",
60
+ "symbol": "ETH",
61
+ "token_standard": "ERC-20",
135
62
  "type": "native",
136
- "decimals": 9,
137
- "address": "11111111111111111111111111111111",
138
- "sweepThreshold": 0.06,
139
- "sweepWalletMinBalance": 0.01
63
+ "decimals": 18,
64
+ "address": "0x0000000000000000000000000000000000000000",
65
+ "sweepThreshold": 0.003,
66
+ "sweepWalletMinBalance": 0.001
140
67
  },
141
68
  {
142
- "name": "Circle Token",
143
- "symbol": "USDC",
144
- "token_standard": "SOL",
69
+ "name": "Tether Token",
70
+ "symbol": "USDT",
71
+ "token_standard": "ERC-20",
145
72
  "type": "erc20",
146
73
  "decimals": 6,
147
- "address": "4zMMC9srt5Ri5X14GAgXhaHii3GnPAEERYPJgZJDncDU",
74
+ "address": "0xd36A20dB12953F0bf09C66B08c1771ae046D2152",
148
75
  "sweepThreshold": 5,
149
76
  "sweepWalletMinBalance": 0
150
77
  }
@@ -228,29 +155,29 @@
228
155
  }
229
156
  ]
230
157
  },
231
- "43114": {
158
+ "101": {
232
159
  "status": true,
233
160
  "isTestnet": false,
234
- "name": "Avalanche C-Chain",
235
- "blockchainType": "evm",
236
- "chainId": 43114,
237
- "blockexplorerUrl": "https://snowtrace.io",
238
- "rpcBaseUrl": "https://rpc.ankr.com/avalanche-c",
239
- "rpcBaseUrlWss": "wss://rpc.ankr.com/avalanche-c/ws",
240
- "targetConfirmations": 10,
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": "0xF84a78E56fBACAADd73E59eDAe02b3b80e4966C8",
243
- "treasury_receiver": "0x89DecB6b265D7714A69EE05E3Bc50Fd829D7Ef90",
244
- "overflow_treasury_receiver": "0xF84a78E56fBACAADd73E59eDAe02b3b80e4966C8",
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": "43114",
250
- "network_symbol": "avax",
251
- "network": "AVAX_MAINNET",
176
+ "chainId": "101",
177
+ "network_symbol": "sol",
178
+ "network": "SOLANA_MAINNET",
252
179
  "total_wallet_count": 10,
253
- "endpoint": "webhook/alchemy/address-activity-avax",
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": 36790396,
188
+ "startingBlock": 416497745,
262
189
  "escrowAlchemyWebhooks": [
263
190
  {
264
- "chainId": "43114",
265
- "network_symbol": "avax",
266
- "network": "AVAX_MAINNET",
267
- "type": "GRAPHQL",
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
- "0x89DecB6b265D7714A69EE05E3Bc50Fd829D7Ef90"
200
+ "AAuFzrm6H4Vv7UyJi8R5Gsm4ixtR2yVmqzLmuyUTS5cu"
274
201
  ]
275
202
  },
276
203
  {
277
- "type": "Erc20",
204
+ "type": "FundingWallet",
278
205
  "version": "1",
279
- "startingBlock": 0,
206
+ "startingBlock": 45852351,
280
207
  "escrowAlchemyWebhooks": [],
281
208
  "addresses": [
282
- "0x6F8cCEFD7Ba389713C3DCFA6C145f2d4fC2731a9"
209
+ "GLfRJqsRtTNDVvYVccXrz8RCKNnad2hqQfgFaApAKXCq"
283
210
  ]
284
211
  }
285
212
  ],
286
213
  "paymentTokens": [
287
214
  {
288
- "name": "Avalanche",
289
- "symbol": "AVAX",
290
- "token_standard": "AVAXC",
215
+ "name": "Solana",
216
+ "symbol": "SOL",
217
+ "token_standard": "SOL",
291
218
  "type": "native",
292
- "decimals": 18,
293
- "address": "0x0000000000000000000000000000000000000000",
294
- "sweepThreshold": 0.1,
219
+ "decimals": 9,
220
+ "address": "11111111111111111111111111111111",
221
+ "sweepThreshold": 0.06,
295
222
  "sweepWalletMinBalance": 0.01
296
223
  },
297
224
  {
298
- "name": "Tether Token",
299
- "symbol": "USDT",
300
- "token_standard": "AVAXC",
225
+ "name": "Circle Token",
226
+ "symbol": "USDC",
227
+ "token_standard": "SOL",
301
228
  "type": "erc20",
302
229
  "decimals": 6,
303
- "address": "0x6F8cCEFD7Ba389713C3DCFA6C145f2d4fC2731a9",
230
+ "address": "4zMMC9srt5Ri5X14GAgXhaHii3GnPAEERYPJgZJDncDU",
304
231
  "sweepThreshold": 5,
305
232
  "sweepWalletMinBalance": 0
306
233
  }
307
234
  ]
308
235
  },
309
- "1": {
236
+ "137": {
310
237
  "status": true,
311
238
  "isTestnet": false,
312
- "name": "Ethereum",
239
+ "name": "Polygon",
313
240
  "blockchainType": "evm",
314
- "chainId": 1,
315
- "blockexplorerUrl": "https://sepolia.etherscan.io",
316
- "rpcBaseUrl": "https://rpc.ankr.com/eth_sepolia",
317
- "rpcBaseUrlWss": "wss://rpc.ankr.com/eth_sepolia/ws",
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": "0xEA8Ad078561B83724EEcDBb5b5A4f03369115Cf8",
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": "1",
328
- "network_symbol": "eth",
329
- "network": "ETH_MAINNET",
254
+ "chainId": "137",
255
+ "network_symbol": "pol",
256
+ "network": "MATIC_MAINNET",
330
257
  "total_wallet_count": 10,
331
- "endpoint": "webhook/alchemy/address-activity-eth",
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": 7130234,
266
+ "startingBlock": 14742924,
340
267
  "escrowAlchemyWebhooks": [
341
268
  {
342
- "chainId": "1",
343
- "network_symbol": "eth",
344
- "network": "ETH_MAINNET",
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
- "0xEA8Ad078561B83724EEcDBb5b5A4f03369115Cf8"
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
- "0xd36A20dB12953F0bf09C66B08c1771ae046D2152"
286
+ "0x6F8cCEFD7Ba389713C3DCFA6C145f2d4fC2731a9"
361
287
  ]
362
288
  }
363
289
  ],
364
290
  "paymentTokens": [
365
291
  {
366
- "name": "Ethereum",
367
- "symbol": "ETH",
368
- "token_standard": "ERC-20",
292
+ "name": "Polygon",
293
+ "symbol": "POL",
294
+ "token_standard": "POL",
369
295
  "type": "native",
370
296
  "decimals": 18,
371
297
  "address": "0x0000000000000000000000000000000000000000",
372
- "sweepThreshold": 0.003,
373
- "sweepWalletMinBalance": 0.001
298
+ "sweepThreshold": 10,
299
+ "sweepWalletMinBalance": 0.1
374
300
  },
375
301
  {
376
302
  "name": "Tether Token",
377
- "symbol": "USDT",
378
- "token_standard": "ERC-20",
303
+ "symbol": "USDT0",
304
+ "token_standard": "POL",
379
305
  "type": "erc20",
380
306
  "decimals": 6,
381
- "address": "0xd36A20dB12953F0bf09C66B08c1771ae046D2152",
307
+ "address": "0xc2132D05D31c914a87C6611C10748AEb04B58e8F",
382
308
  "sweepThreshold": 5,
383
309
  "sweepWalletMinBalance": 0
384
310
  }
385
311
  ]
386
312
  },
387
- "137": {
313
+ "143": {
388
314
  "status": true,
389
315
  "isTestnet": false,
390
- "name": "Polygon",
316
+ "name": "Monad",
391
317
  "blockchainType": "evm",
392
- "chainId": 137,
393
- "blockexplorerUrl": "https://polygonscan.com",
394
- "rpcBaseUrl": "https://rpc.ankr.com/polygon",
395
- "rpcBaseUrlWss": "wss://rpc.ankr.com/polygon/ws",
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": "0x69E1F9316E03Da502B52f4682b0349d36CFBfFfD",
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": "137",
406
- "network_symbol": "pol",
407
- "network": "MATIC_MAINNET",
331
+ "chainId": "143",
332
+ "network_symbol": "mon",
333
+ "network": "MONAD_MAINNET",
408
334
  "total_wallet_count": 10,
409
- "endpoint": "webhook/alchemy/address-activity-pol",
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": 14742924,
343
+ "startingBlock": 56193231,
418
344
  "escrowAlchemyWebhooks": [
419
345
  {
420
- "chainId": "137",
421
- "network_symbol": "pol",
422
- "network": "MATIC_MAINNET",
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
- "0x69E1F9316E03Da502B52f4682b0349d36CFBfFfD"
355
+ "0xf4BE5695F5eCd281171ab625ceb59bEee081e14f"
430
356
  ]
431
357
  },
432
358
  {
433
359
  "type": "Erc20",
434
360
  "version": "1",
435
- "startingBlock": 0,
361
+ "startingBlock": 56194507,
436
362
  "addresses": [
437
- "0x6F8cCEFD7Ba389713C3DCFA6C145f2d4fC2731a9"
363
+ "0xc60f378d2C9Cc06c4830B788976bc1003d5159fe"
438
364
  ]
439
365
  }
440
366
  ],
441
367
  "paymentTokens": [
442
368
  {
443
- "name": "Polygon",
444
- "symbol": "POL",
445
- "token_standard": "POL",
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": 10,
450
- "sweepWalletMinBalance": 0.1
375
+ "sweepThreshold": 100,
376
+ "sweepWalletMinBalance": 1
451
377
  },
452
378
  {
453
379
  "name": "Tether Token",
454
- "symbol": "USDT0",
455
- "token_standard": "POL",
380
+ "symbol": "USDT",
381
+ "token_standard": "ERC-20",
456
382
  "type": "erc20",
457
383
  "decimals": 6,
458
- "address": "0xc2132D05D31c914a87C6611C10748AEb04B58e8F",
384
+ "address": "0xc60f378d2C9Cc06c4830B788976bc1003d5159fe",
459
385
  "sweepThreshold": 5,
460
386
  "sweepWalletMinBalance": 0
461
387
  }
462
388
  ]
463
389
  },
464
- "143": {
390
+ "43114": {
465
391
  "status": true,
466
392
  "isTestnet": false,
467
- "name": "Monad",
393
+ "name": "Avalanche C-Chain",
468
394
  "blockchainType": "evm",
469
- "chainId": 143,
470
- "blockexplorerUrl": "https://monadscan.com",
471
- "rpcBaseUrl": "https://rpc.ankr.com/monad_mainnet",
472
- "rpcBaseUrlWss": "wss://rpc.ankr.com/monad_mainnet/ws",
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": "0xf4BE5695F5eCd281171ab625ceb59bEee081e14f",
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": "143",
483
- "network_symbol": "mon",
484
- "network": "MONAD_MAINNET",
408
+ "chainId": "43114",
409
+ "network_symbol": "avax",
410
+ "network": "AVAX_MAINNET",
485
411
  "total_wallet_count": 10,
486
- "endpoint": "webhook/alchemy/address-activity-mon",
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": 56193231,
420
+ "startingBlock": 36790396,
495
421
  "escrowAlchemyWebhooks": [
496
422
  {
497
- "chainId": "143",
498
- "network_symbol": "mon",
499
- "network": "MONAD_MAINNET",
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
- "0xf4BE5695F5eCd281171ab625ceb59bEee081e14f"
432
+ "0x89DecB6b265D7714A69EE05E3Bc50Fd829D7Ef90"
507
433
  ]
508
434
  },
509
435
  {
510
436
  "type": "Erc20",
511
437
  "version": "1",
512
- "startingBlock": 56194507,
438
+ "startingBlock": 0,
439
+ "escrowAlchemyWebhooks": [],
513
440
  "addresses": [
514
- "0xc60f378d2C9Cc06c4830B788976bc1003d5159fe"
441
+ "0x6F8cCEFD7Ba389713C3DCFA6C145f2d4fC2731a9"
515
442
  ]
516
443
  }
517
444
  ],
518
445
  "paymentTokens": [
519
446
  {
520
- "name": "Monad",
521
- "symbol": "MON",
522
- "token_standard": "ERC-20",
447
+ "name": "Avalanche",
448
+ "symbol": "AVAX",
449
+ "token_standard": "AVAXC",
523
450
  "type": "native",
524
451
  "decimals": 18,
525
452
  "address": "0x0000000000000000000000000000000000000000",
526
- "sweepThreshold": 100,
527
- "sweepWalletMinBalance": 1
453
+ "sweepThreshold": 0.1,
454
+ "sweepWalletMinBalance": 0.01
528
455
  },
529
456
  {
530
457
  "name": "Tether Token",
531
458
  "symbol": "USDT",
532
- "token_standard": "ERC-20",
459
+ "token_standard": "AVAXC",
533
460
  "type": "erc20",
534
461
  "decimals": 6,
535
- "address": "0xc60f378d2C9Cc06c4830B788976bc1003d5159fe",
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
  }