@ercworldio/blockchain-shared 1.0.5-dev.8-PLAT300.7 → 1.0.6

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 +2 -1
  2. package/build/chains/networks_prod-ab120.json +644 -0
  3. package/build/chains/networks_prod-dz.json +2 -2
  4. package/build/chains/networks_stg-ab120-mainnet.json +681 -0
  5. package/build/chains/networks_stg-ab120.json +597 -0
  6. package/build/contracts/typechain-types/factories/contracts/escrow/Escrow__factory.d.ts +1 -1
  7. package/build/contracts/typechain-types/factories/contracts/escrow/Escrow__factory.d.ts.map +1 -1
  8. package/build/contracts/typechain-types/factories/contracts/escrow/Escrow__factory.js +1 -1
  9. package/build/index.d.ts +1 -0
  10. package/build/index.d.ts.map +1 -1
  11. package/build/index.js +4 -2
  12. package/build/services/AzureEventHubHandler.d.ts.map +1 -1
  13. package/build/services/AzureEventHubHandler.js +4 -1
  14. package/build/services/db/multisig/MultisigService.d.ts +26 -1
  15. package/build/services/db/multisig/MultisigService.d.ts.map +1 -1
  16. package/build/services/db/multisig/MultisigService.js +70 -0
  17. package/build/services/db/timelock/ScheduleTransactionService.d.ts +16 -2
  18. package/build/services/db/timelock/ScheduleTransactionService.d.ts.map +1 -1
  19. package/build/services/db/timelock/ScheduleTransactionService.js +265 -1
  20. package/build/services/solana/escrow/idl/escrow.json +528 -17
  21. package/build/services/solana/escrow/services/EscrowAdminUtility.d.ts +8 -0
  22. package/build/services/solana/escrow/services/EscrowAdminUtility.d.ts.map +1 -1
  23. package/build/services/solana/escrow/services/EscrowAdminUtility.js +46 -5
  24. package/build/services/solana/escrow/types/escrow.d.ts +528 -17
  25. package/build/services/solana/escrow/types/escrow.d.ts.map +1 -1
  26. package/build/services/types/azure_event_hub_handler.d.ts +3 -1
  27. package/build/services/types/azure_event_hub_handler.d.ts.map +1 -1
  28. package/build/services/types/azure_event_hub_handler.js +3 -0
  29. package/build/services/types/claim.d.ts +1 -0
  30. package/build/services/types/claim.d.ts.map +1 -1
  31. package/build/services/types/db/multisig_service.d.ts +70 -0
  32. package/build/services/types/db/multisig_service.d.ts.map +1 -1
  33. package/build/services/types/db/timelock.d.ts +56 -0
  34. package/build/services/types/db/timelock.d.ts.map +1 -1
  35. package/package.json +1 -1
@@ -609,7 +609,8 @@
609
609
  "overflow_threshold_decimal": 100000,
610
610
  "min_funding_wallet_balance_usd": 1,
611
611
  "allowed_receivers": [
612
- "0x32fDf51e2EdbCD58f10A721Bd2A815e64135B815"
612
+ "0x32fDf51e2EdbCD58f10A721Bd2A815e64135B815",
613
+ "0x5798C0C8Cc396Da77Aaa68c0722B70926f98946C"
613
614
  ]
614
615
  },
615
616
  "custodialAlchemyWebhooks": [
@@ -0,0 +1,644 @@
1
+ {
2
+ "1": {
3
+ "status": true,
4
+ "isTestnet": false,
5
+ "name": "Ethereum",
6
+ "blockchainType": "evm",
7
+ "chainId": 1,
8
+ "blockexplorerUrl": "https://etherscan.io",
9
+ "rpcBaseUrl": "https://rpc.ankr.com/eth",
10
+ "rpcBaseUrlWss": "wss://rpc.ankr.com/eth/ws",
11
+ "targetConfirmations": 10,
12
+ "accounting": {
13
+ "funding_wallet": "0x37a7153dea9Fa2941A127fE92d9Ec519f652C525",
14
+ "treasury_receiver": "0xBd9bc36852b05Ee6610db9fa662a61B9c286f02A",
15
+ "overflow_treasury_receiver": "0xBd9bc36852b05Ee6610db9fa662a61B9c286f02A",
16
+ "overflow_threshold_decimal": 250,
17
+ "min_funding_wallet_balance_usd": 5,
18
+ "allowed_receivers": [
19
+ "0xBd9bc36852b05Ee6610db9fa662a61B9c286f02A"
20
+ ]
21
+ },
22
+ "custodialAlchemyWebhooks": [
23
+ {
24
+ "chainId": "1",
25
+ "network_symbol": "eth",
26
+ "network": "ETH_MAINNET",
27
+ "total_wallet_count": 10,
28
+ "endpoint": "webhook/alchemy/address-activity-eth",
29
+ "source": "wallet"
30
+ }
31
+ ],
32
+ "quicknodeNotificationConfig": [
33
+ {
34
+ "name": "escrow-eth-prod-ab120",
35
+ "network": "ethereum-mainnet",
36
+ "template": "evmWalletFilter",
37
+ "source": "contract",
38
+ "chain_id": 1
39
+ },
40
+ {
41
+ "name": "qn-custodial-webhook-eth-prod-ab120",
42
+ "network": "ethereum-mainnet",
43
+ "template": "evmWalletFilter"
44
+ }
45
+ ],
46
+ "contracts": [
47
+ {
48
+ "type": "Escrow",
49
+ "version": "2",
50
+ "startingBlock": 24549134,
51
+ "escrowAlchemyWebhooks": [
52
+ {
53
+ "chainId": "1",
54
+ "network_symbol": "eth",
55
+ "network": "ETH_MAINNET",
56
+ "type": "GRAPHQL",
57
+ "endpoint": "webhook/alchemy/escrow-events",
58
+ "source": "contract"
59
+ }
60
+ ],
61
+ "addresses": [
62
+ "0xBd9bc36852b05Ee6610db9fa662a61B9c286f02A"
63
+ ]
64
+ },
65
+ {
66
+ "type": "FundingWallet",
67
+ "version": "1",
68
+ "startingBlock": 1,
69
+ "escrowAlchemyWebhooks": [],
70
+ "addresses": [
71
+ "0x37a7153dea9Fa2941A127fE92d9Ec519f652C525"
72
+ ]
73
+ }
74
+ ],
75
+ "paymentTokens": [
76
+ {
77
+ "name": "Ethereum",
78
+ "symbol": "ETH",
79
+ "token_standard": "ERC-20",
80
+ "type": "native",
81
+ "isStableCoin": false,
82
+ "decimals": 18,
83
+ "address": "0x0000000000000000000000000000000000000000",
84
+ "sweepThreshold": 0.004,
85
+ "sweepWalletMinBalance": 0.0002,
86
+ "recommendedMinBalanceFundingWallet": 0.025,
87
+ "recommendedMinBalanceEscrow": 0.5,
88
+ "recommendedMinBalanceRentEnergy": 0
89
+ },
90
+ {
91
+ "name": "Tether Token",
92
+ "symbol": "USDT",
93
+ "token_standard": "ERC-20",
94
+ "type": "erc20",
95
+ "isStableCoin": true,
96
+ "decimals": 6,
97
+ "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7",
98
+ "sweepThreshold": 4,
99
+ "sweepWalletMinBalance": 1,
100
+ "recommendedMinBalanceFundingWallet": 0,
101
+ "recommendedMinBalanceEscrow": 100,
102
+ "recommendedMinBalanceRentEnergy": 0
103
+ },
104
+ {
105
+ "name": "Circle Token",
106
+ "symbol": "USDC",
107
+ "token_standard": "ERC-20",
108
+ "type": "erc20",
109
+ "isStableCoin": true,
110
+ "decimals": 6,
111
+ "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
112
+ "sweepThreshold": 4,
113
+ "sweepWalletMinBalance": 1,
114
+ "recommendedMinBalanceFundingWallet": 0,
115
+ "recommendedMinBalanceEscrow": 100,
116
+ "recommendedMinBalanceRentEnergy": 0
117
+ }
118
+ ]
119
+ },
120
+ "56": {
121
+ "status": true,
122
+ "isTestnet": false,
123
+ "name": "BNB Chain",
124
+ "blockchainType": "evm",
125
+ "chainId": 56,
126
+ "blockexplorerUrl": "https://bscscan.com",
127
+ "rpcBaseUrl": "https://rpc.ankr.com/bsc",
128
+ "rpcBaseUrlWss": "wss://rpc.ankr.com/bsc/ws",
129
+ "targetConfirmations": 5,
130
+ "accounting": {
131
+ "funding_wallet": "0x37a7153dea9Fa2941A127fE92d9Ec519f652C525",
132
+ "treasury_receiver": "0x8C74f2BBB8D43be2bae58A508F02e206abCF7772",
133
+ "overflow_treasury_receiver": "0x8C74f2BBB8D43be2bae58A508F02e206abCF7772",
134
+ "overflow_threshold_decimal": 250,
135
+ "min_funding_wallet_balance_usd": 5,
136
+ "allowed_receivers": [
137
+ "0x8C74f2BBB8D43be2bae58A508F02e206abCF7772"
138
+ ]
139
+ },
140
+ "custodialAlchemyWebhooks": [
141
+ {
142
+ "chainId": "56",
143
+ "network_symbol": "bnb",
144
+ "network": "BNB_MAINNET",
145
+ "total_wallet_count": 10,
146
+ "endpoint": "webhook/alchemy/address-activity-bnb",
147
+ "source": "wallet"
148
+ }
149
+ ],
150
+ "quicknodeNotificationConfig": [
151
+ {
152
+ "name": "escrow-bnb-prod-ab120",
153
+ "network": "bnbchain-mainnet",
154
+ "template": "evmWalletFilter",
155
+ "source": "contract",
156
+ "chain_id": 56
157
+ },
158
+ {
159
+ "name": "qn-custodial-webhook-bnb-prod-ab120",
160
+ "network": "bnbchain-mainnet",
161
+ "template": "evmWalletFilter"
162
+ }
163
+ ],
164
+ "contracts": [
165
+ {
166
+ "type": "Escrow",
167
+ "version": "2",
168
+ "startingBlock": 83690132,
169
+ "escrowAlchemyWebhooks": [
170
+ {
171
+ "chainId": "56",
172
+ "network_symbol": "bnb",
173
+ "network": "BNB_MAINNET",
174
+ "type": "GRAPHQL",
175
+ "endpoint": "webhook/alchemy/escrow-events",
176
+ "source": "contract"
177
+ }
178
+ ],
179
+ "addresses": [
180
+ "0x8C74f2BBB8D43be2bae58A508F02e206abCF7772"
181
+ ]
182
+ },
183
+ {
184
+ "type": "FundingWallet",
185
+ "version": "1",
186
+ "startingBlock": 1,
187
+ "escrowAlchemyWebhooks": [],
188
+ "addresses": [
189
+ "0x37a7153dea9Fa2941A127fE92d9Ec519f652C525"
190
+ ]
191
+ }
192
+ ],
193
+ "paymentTokens": [
194
+ {
195
+ "name": "BNB Chain",
196
+ "symbol": "BNB",
197
+ "token_standard": "BEP-20",
198
+ "type": "native",
199
+ "isStableCoin": false,
200
+ "decimals": 18,
201
+ "address": "0x0000000000000000000000000000000000000000",
202
+ "sweepThreshold": 0.008,
203
+ "sweepWalletMinBalance": 0.0002,
204
+ "recommendedMinBalanceFundingWallet": 0.1,
205
+ "recommendedMinBalanceEscrow": 1,
206
+ "recommendedMinBalanceRentEnergy": 0
207
+ },
208
+ {
209
+ "name": "Tether Token",
210
+ "symbol": "USDT",
211
+ "token_standard": "BEP-20",
212
+ "type": "erc20",
213
+ "isStableCoin": true,
214
+ "decimals": 18,
215
+ "address": "0x55d398326f99059fF775485246999027B3197955",
216
+ "sweepThreshold": 5,
217
+ "sweepWalletMinBalance": 1,
218
+ "recommendedMinBalanceFundingWallet": 0,
219
+ "recommendedMinBalanceEscrow": 100,
220
+ "recommendedMinBalanceRentEnergy": 0
221
+ }
222
+ ]
223
+ },
224
+ "101": {
225
+ "status": true,
226
+ "isTestnet": false,
227
+ "name": "Solana",
228
+ "blockchainType": "solana",
229
+ "chainId": 101,
230
+ "blockexplorerUrl": "https://solscan.io",
231
+ "rpcBaseUrl": "https://rpc.ankr.com/solana",
232
+ "rpcBaseUrlWss": "wss://rpc.ankr.com/solana/ws",
233
+ "targetConfirmations": 32,
234
+ "accounting": {
235
+ "funding_wallet": "AY6Pyjr8zNK3fwNiChTAHhDeGM7W67uGuna9RnbNNofA",
236
+ "treasury_receiver": "791h6EwNkoBTZZZ4PevMWcVjUw5XbKZUMcdVGAgWcMuj",
237
+ "overflow_treasury_receiver": "791h6EwNkoBTZZZ4PevMWcVjUw5XbKZUMcdVGAgWcMuj",
238
+ "overflow_threshold_decimal": 250,
239
+ "min_funding_wallet_balance_usd": 5,
240
+ "allowed_receivers": [
241
+ "791h6EwNkoBTZZZ4PevMWcVjUw5XbKZUMcdVGAgWcMuj"
242
+ ]
243
+ },
244
+ "custodialAlchemyWebhooks": [
245
+ {
246
+ "chainId": "101",
247
+ "network_symbol": "sol",
248
+ "network": "SOLANA_MAINNET",
249
+ "total_wallet_count": 10,
250
+ "endpoint": "webhook/alchemy/address-activity-sol",
251
+ "source": "wallet"
252
+ }
253
+ ],
254
+ "quicknodeNotificationConfig": [
255
+ {
256
+ "name": "escrow-sol-prod-ab120",
257
+ "network": "solana-mainnet",
258
+ "template": "solanaWalletFilter",
259
+ "source": "contract",
260
+ "chain_id": 101
261
+ },
262
+ {
263
+ "name": "qn-custodial-webhook-sol-prod-ab120",
264
+ "network": "solana-mainnet",
265
+ "template": "solanaWalletFilter"
266
+ }
267
+ ],
268
+ "contracts": [
269
+ {
270
+ "type": "Escrow",
271
+ "version": "1",
272
+ "startingBlock": 416497745,
273
+ "escrowAlchemyWebhooks": [
274
+ {
275
+ "chainId": "101",
276
+ "network_symbol": "sol",
277
+ "network": "SOLANA_MAINNET",
278
+ "type": "ADDRESS_ACTIVITY",
279
+ "endpoint": "webhook/alchemy/solana/escrow-events",
280
+ "source": "contract"
281
+ }
282
+ ],
283
+ "addresses": [
284
+ "791h6EwNkoBTZZZ4PevMWcVjUw5XbKZUMcdVGAgWcMuj"
285
+ ]
286
+ },
287
+ {
288
+ "type": "FundingWallet",
289
+ "version": "1",
290
+ "startingBlock": 45852351,
291
+ "escrowAlchemyWebhooks": [],
292
+ "addresses": [
293
+ "AY6Pyjr8zNK3fwNiChTAHhDeGM7W67uGuna9RnbNNofA"
294
+ ]
295
+ }
296
+ ],
297
+ "paymentTokens": [
298
+ {
299
+ "name": "Solana",
300
+ "symbol": "SOL",
301
+ "token_standard": "SOL",
302
+ "type": "native",
303
+ "isStableCoin": false,
304
+ "decimals": 9,
305
+ "address": "11111111111111111111111111111111",
306
+ "sweepThreshold": 0.05,
307
+ "sweepWalletMinBalance": 0.01,
308
+ "recommendedMinBalanceFundingWallet": 0.1,
309
+ "recommendedMinBalanceEscrow": 1,
310
+ "recommendedMinBalanceRentEnergy": 0
311
+ },
312
+ {
313
+ "name": "Circle Token",
314
+ "symbol": "USDC",
315
+ "token_standard": "SOL",
316
+ "type": "erc20",
317
+ "isStableCoin": true,
318
+ "decimals": 6,
319
+ "address": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
320
+ "sweepThreshold": 1,
321
+ "sweepWalletMinBalance": 1,
322
+ "recommendedMinBalanceFundingWallet": 0,
323
+ "recommendedMinBalanceEscrow": 100,
324
+ "recommendedMinBalanceRentEnergy": 0
325
+ }
326
+ ]
327
+ },
328
+ "137": {
329
+ "status": true,
330
+ "isTestnet": false,
331
+ "name": "Polygon",
332
+ "blockchainType": "evm",
333
+ "chainId": 137,
334
+ "blockexplorerUrl": "https://polygonscan.com",
335
+ "rpcBaseUrl": "https://rpc.ankr.com/polygon",
336
+ "rpcBaseUrlWss": "wss://rpc.ankr.com/polygon/ws",
337
+ "targetConfirmations": 10,
338
+ "accounting": {
339
+ "funding_wallet": "0x37a7153dea9Fa2941A127fE92d9Ec519f652C525",
340
+ "treasury_receiver": "0x1ae62bdab2e0208B38aF72b0dBBbDe977B197089",
341
+ "overflow_treasury_receiver": "0x1ae62bdab2e0208B38aF72b0dBBbDe977B197089",
342
+ "overflow_threshold_decimal": 250,
343
+ "min_funding_wallet_balance_usd": 5,
344
+ "allowed_receivers": [
345
+ "0x1ae62bdab2e0208B38aF72b0dBBbDe977B197089"
346
+ ]
347
+ },
348
+ "custodialAlchemyWebhooks": [
349
+ {
350
+ "chainId": "137",
351
+ "network_symbol": "pol",
352
+ "network": "MATIC_MAINNET",
353
+ "total_wallet_count": 10,
354
+ "endpoint": "webhook/alchemy/address-activity-pol",
355
+ "source": "wallet"
356
+ }
357
+ ],
358
+ "quicknodeNotificationConfig": [
359
+ {
360
+ "name": "escrow-pol-prod-ab120",
361
+ "network": "polygon-mainnet",
362
+ "template": "evmWalletFilter",
363
+ "source": "contract",
364
+ "chain_id": 137
365
+ },
366
+ {
367
+ "name": "qn-custodial-webhook-pol-prod-ab120",
368
+ "network": "bnbchain-mainnet",
369
+ "template": "evmWalletFilter"
370
+ }
371
+ ],
372
+ "contracts": [
373
+ {
374
+ "type": "Escrow",
375
+ "version": "2",
376
+ "startingBlock": 83543163,
377
+ "escrowAlchemyWebhooks": [
378
+ {
379
+ "chainId": "137",
380
+ "network_symbol": "pol",
381
+ "network": "MATIC_MAINNET",
382
+ "type": "GRAPHQL",
383
+ "endpoint": "webhook/alchemy/escrow-events",
384
+ "source": "contract"
385
+ }
386
+ ],
387
+ "addresses": [
388
+ "0x1ae62bdab2e0208B38aF72b0dBBbDe977B197089"
389
+ ]
390
+ },
391
+ {
392
+ "type": "FundingWallet",
393
+ "version": "1",
394
+ "startingBlock": 1,
395
+ "escrowAlchemyWebhooks": [],
396
+ "addresses": [
397
+ "0x37a7153dea9Fa2941A127fE92d9Ec519f652C525"
398
+ ]
399
+ }
400
+ ],
401
+ "paymentTokens": [
402
+ {
403
+ "name": "Polygon",
404
+ "symbol": "POL",
405
+ "token_standard": "POL",
406
+ "type": "native",
407
+ "isStableCoin": false,
408
+ "decimals": 18,
409
+ "address": "0x0000000000000000000000000000000000000000",
410
+ "sweepThreshold": 10,
411
+ "sweepWalletMinBalance": 0.1,
412
+ "recommendedMinBalanceFundingWallet": 50,
413
+ "recommendedMinBalanceEscrow": 1000,
414
+ "recommendedMinBalanceRentEnergy": 0
415
+ },
416
+ {
417
+ "name": "Tether Token",
418
+ "symbol": "USDT",
419
+ "token_standard": "POL",
420
+ "isStableCoin": true,
421
+ "type": "erc20",
422
+ "decimals": 6,
423
+ "address": "0xc2132D05D31c914a87C6611C10748AEb04B58e8F",
424
+ "sweepThreshold": 0,
425
+ "sweepWalletMinBalance": 1,
426
+ "recommendedMinBalanceFundingWallet": 0,
427
+ "recommendedMinBalanceEscrow": 100,
428
+ "recommendedMinBalanceRentEnergy": 0
429
+ }
430
+ ]
431
+ },
432
+ "43114": {
433
+ "status": true,
434
+ "isTestnet": false,
435
+ "name": "Avalanche C-Chain",
436
+ "blockchainType": "evm",
437
+ "chainId": 43114,
438
+ "blockexplorerUrl": "https://snowtrace.io",
439
+ "rpcBaseUrl": "https://rpc.ankr.com/avalanche",
440
+ "rpcBaseUrlWss": "wss://rpc.ankr.com/avalanche/ws",
441
+ "targetConfirmations": 10,
442
+ "accounting": {
443
+ "funding_wallet": "0x37a7153dea9Fa2941A127fE92d9Ec519f652C525",
444
+ "treasury_receiver": "0x50D6DfEdb043508c9595c5D6E1DcE99C1177FC50",
445
+ "overflow_treasury_receiver": "0x50D6DfEdb043508c9595c5D6E1DcE99C1177FC50",
446
+ "overflow_threshold_decimal": 250,
447
+ "min_funding_wallet_balance_usd": 5,
448
+ "allowed_receivers": [
449
+ "0x50D6DfEdb043508c9595c5D6E1DcE99C1177FC50"
450
+ ]
451
+ },
452
+ "custodialAlchemyWebhooks": [
453
+ {
454
+ "chainId": "43114",
455
+ "network_symbol": "avax",
456
+ "network": "AVAX_MAINNET",
457
+ "total_wallet_count": 10,
458
+ "endpoint": "webhook/alchemy/address-activity-avax",
459
+ "source": "wallet"
460
+ }
461
+ ],
462
+ "quicknodeNotificationConfig": [
463
+ {
464
+ "name": "escrow-avax-prod-ab120",
465
+ "network": "avalanche-mainnet",
466
+ "template": "evmWalletFilter",
467
+ "source": "contract",
468
+ "chain_id": 43114
469
+ },
470
+ {
471
+ "name": "qn-custodial-webhook-avax-prod-ab120",
472
+ "network": "avalanche-mainnet",
473
+ "template": "evmWalletFilter"
474
+ }
475
+ ],
476
+ "contracts": [
477
+ {
478
+ "type": "Escrow",
479
+ "version": "2",
480
+ "startingBlock": 79138284,
481
+ "escrowAlchemyWebhooks": [
482
+ {
483
+ "chainId": "43114",
484
+ "network_symbol": "avax",
485
+ "network": "AVAX_MAINNET",
486
+ "type": "GRAPHQL",
487
+ "endpoint": "webhook/alchemy/escrow-events",
488
+ "source": "contract"
489
+ }
490
+ ],
491
+ "addresses": [
492
+ "0x50D6DfEdb043508c9595c5D6E1DcE99C1177FC50"
493
+ ]
494
+ },
495
+ {
496
+ "type": "FundingWallet",
497
+ "version": "1",
498
+ "startingBlock": 1,
499
+ "escrowAlchemyWebhooks": [],
500
+ "addresses": [
501
+ "0x37a7153dea9Fa2941A127fE92d9Ec519f652C525"
502
+ ]
503
+ }
504
+ ],
505
+ "paymentTokens": [
506
+ {
507
+ "name": "Avalanche",
508
+ "symbol": "AVAX",
509
+ "token_standard": "AVAXC",
510
+ "isStableCoin": false,
511
+ "type": "native",
512
+ "decimals": 18,
513
+ "address": "0x0000000000000000000000000000000000000000",
514
+ "sweepThreshold": 0.05,
515
+ "sweepWalletMinBalance": 0.01,
516
+ "recommendedMinBalanceFundingWallet": 1,
517
+ "recommendedMinBalanceEscrow": 10,
518
+ "recommendedMinBalanceRentEnergy": 0
519
+ },
520
+ {
521
+ "name": "Tether Token",
522
+ "symbol": "USDT",
523
+ "token_standard": "AVAXC",
524
+ "type": "erc20",
525
+ "isStableCoin": true,
526
+ "decimals": 6,
527
+ "address": "0x9702230A8Ea53601f5cD2dc00fDBc13d4dF4A8c7",
528
+ "sweepThreshold": 4,
529
+ "sweepWalletMinBalance": 1,
530
+ "recommendedMinBalanceFundingWallet": 0,
531
+ "recommendedMinBalanceEscrow": 100,
532
+ "recommendedMinBalanceRentEnergy": 0
533
+ }
534
+ ]
535
+ },
536
+ "728126428": {
537
+ "status": true,
538
+ "isTestnet": false,
539
+ "name": "Tron",
540
+ "blockchainType": "tron",
541
+ "chainId": 728126428,
542
+ "blockexplorerUrl": "https://tronscan.org",
543
+ "tronConfig": {
544
+ "trxTransferCost": 270000,
545
+ "trc20TransferCost": 4000000,
546
+ "rentEnergyWallet": "TJAntZWVbAEj92sWwgwpgbQzQSoT9zczHp"
547
+ },
548
+ "accounting": {
549
+ "funding_wallet": "TQ4gL5VGbKWDoUwPMQa9JE9939ijfmPauB",
550
+ "treasury_receiver": "TQ4gL5VGbKWDoUwPMQa9JE9939ijfmPauB",
551
+ "overflow_treasury_receiver": "TQ4gL5VGbKWDoUwPMQa9JE9939ijfmPauB",
552
+ "overflow_threshold_decimal": 250,
553
+ "min_funding_wallet_balance_usd": 5,
554
+ "allowed_receivers": [
555
+ "TQ4gL5VGbKWDoUwPMQa9JE9939ijfmPauB"
556
+ ]
557
+ },
558
+ "rpcMetadata": {
559
+ "rpcBaseUrl": "https://rpc.ankr.com/premium-http/tron",
560
+ "tronGridApi": "https://api.trongrid.io"
561
+ },
562
+ "rpcBaseUrl": "https://rpc.ankr.com/premium-http/tron",
563
+ "rpcBaseUrlWss": "",
564
+ "targetConfirmations": 2,
565
+ "quicknodeStreams": [
566
+ {
567
+ "network": "tron-mainnet",
568
+ "dataset": "logs",
569
+ "name": "tron-custodial-transfers",
570
+ "listConfig": {
571
+ "key": "custodial-addresses"
572
+ }
573
+ }
574
+ ],
575
+ "custodialAlchemyWebhooks": [],
576
+ "contracts": [
577
+ {
578
+ "type": "FundingWallet",
579
+ "version": "1",
580
+ "startingBlock": 1,
581
+ "escrowAlchemyWebhooks": [],
582
+ "addresses": [
583
+ "TQ4gL5VGbKWDoUwPMQa9JE9939ijfmPauB"
584
+ ]
585
+ }
586
+ ],
587
+ "paymentTokens": [
588
+ {
589
+ "name": "Tron",
590
+ "symbol": "TRX",
591
+ "token_standard": "TRX",
592
+ "type": "native",
593
+ "isStableCoin": false,
594
+ "decimals": 6,
595
+ "address": "0000000000000000000000000000000000000000",
596
+ "sweepThreshold": 10,
597
+ "sweepWalletMinBalance": 6,
598
+ "recommendedMinBalanceFundingWallet": 333,
599
+ "recommendedMinBalanceEscrow": 0,
600
+ "recommendedMinBalanceRentEnergy": 50
601
+ },
602
+ {
603
+ "name": "Tether Token",
604
+ "symbol": "USDT",
605
+ "token_standard": "TRC-20",
606
+ "type": "trc20",
607
+ "isStableCoin": true,
608
+ "decimals": 6,
609
+ "address": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t",
610
+ "sweepThreshold": 5,
611
+ "sweepWalletMinBalance": 1,
612
+ "recommendedMinBalanceFundingWallet": 100,
613
+ "recommendedMinBalanceEscrow": 0,
614
+ "recommendedMinBalanceRentEnergy": 0
615
+ }
616
+ ]
617
+ },
618
+ "1000000000": {
619
+ "status": true,
620
+ "isTestnet": false,
621
+ "name": "Bitcoin",
622
+ "blockchainType": "lightning",
623
+ "chainId": 1000000000,
624
+ "blockexplorerUrl": "https://mempool.space/lightning",
625
+ "rpcBaseUrl": "",
626
+ "rpcBaseUrlWss": "",
627
+ "targetConfirmations": 1,
628
+ "custodialAlchemyWebhooks": [],
629
+ "contracts": [],
630
+ "paymentTokens": [
631
+ {
632
+ "name": "Bitcoin",
633
+ "symbol": "BTC",
634
+ "token_standard": "LIGHTNING",
635
+ "type": "native",
636
+ "isStableCoin": false,
637
+ "decimals": 8,
638
+ "address": "000000000000000000000000000000000000000000",
639
+ "sweepThreshold": 0.001,
640
+ "sweepWalletMinBalance": 0.01
641
+ }
642
+ ]
643
+ }
644
+ }
@@ -233,7 +233,7 @@
233
233
  "targetConfirmations": 32,
234
234
  "accounting": {
235
235
  "funding_wallet": "7z5QwV7mg93PU8tBsbdvXscG9bf5VUP2QYHvS2czNisG",
236
- "treasury_receiver": "Cr1fJwtExaPdYG8huC5axiW2m2knSoTumLzYBj9rMjCd",
236
+ "treasury_receiver": "BgXb3Wd36rKaAUiz6KAo8vbQeikveDotWAm2HKFFAmjW",
237
237
  "overflow_treasury_receiver": "9Akuf5wxomRwzbu3wpSPpJ21EABGGaopoBoCD1boE4Hn",
238
238
  "overflow_threshold_decimal": 250,
239
239
  "min_funding_wallet_balance_usd": 5,
@@ -281,7 +281,7 @@
281
281
  }
282
282
  ],
283
283
  "addresses": [
284
- "Cr1fJwtExaPdYG8huC5axiW2m2knSoTumLzYBj9rMjCd"
284
+ "BgXb3Wd36rKaAUiz6KAo8vbQeikveDotWAm2HKFFAmjW"
285
285
  ]
286
286
  },
287
287
  {