@ercworldio/blockchain-shared 1.0.2-dev.0 → 1.0.2-dev.10

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/README.md +26 -0
  2. package/build/chains/networks_dev.json +31 -9
  3. package/build/chains/networks_prod-bu.json +25 -8
  4. package/build/chains/networks_prod-dz.json +178 -9
  5. package/build/chains/networks_stg-bu.json +27 -8
  6. package/build/chains/networks_stg-dz.json +47 -8
  7. package/build/errors/errors.d.ts +34 -2
  8. package/build/errors/errors.d.ts.map +1 -1
  9. package/build/errors/errors.js +66 -4
  10. package/build/index.d.ts +1 -0
  11. package/build/index.d.ts.map +1 -1
  12. package/build/index.js +4 -2
  13. package/build/interfaces.d.ts +2 -1
  14. package/build/interfaces.d.ts.map +1 -1
  15. package/build/interfaces.js +1 -0
  16. package/build/services/solana/escrow/SolanaEscrowAdmin.d.ts +1 -1
  17. package/build/services/solana/escrow/SolanaEscrowAdmin.d.ts.map +1 -1
  18. package/build/services/solana/escrow/SolanaEscrowAdmin.js +8 -4
  19. package/build/services/solana/escrow/services/EscrowAdminUtility.d.ts.map +1 -1
  20. package/build/services/solana/escrow/services/EscrowAdminUtility.js +5 -2
  21. package/build/services/solana/escrow/services/SolanaTokenProgramCache.d.ts +9 -0
  22. package/build/services/solana/escrow/services/SolanaTokenProgramCache.d.ts.map +1 -0
  23. package/build/services/solana/escrow/services/SolanaTokenProgramCache.js +38 -0
  24. package/build/services/types/bo_withdrawal.d.ts +17 -0
  25. package/build/services/types/bo_withdrawal.d.ts.map +1 -0
  26. package/build/services/types/bo_withdrawal.js +9 -0
  27. package/build/services/types/chain_manager.d.ts +2 -0
  28. package/build/services/types/chain_manager.d.ts.map +1 -1
  29. package/build/services/types/index.d.ts +1 -0
  30. package/build/services/types/index.d.ts.map +1 -1
  31. package/build/services/types/index.js +1 -0
  32. package/build/utils/RpcLimiter.d.ts +1 -0
  33. package/build/utils/RpcLimiter.d.ts.map +1 -1
  34. package/build/utils/RpcLimiter.js +1 -0
  35. package/package.json +1 -1
package/README.md CHANGED
@@ -1 +1,27 @@
1
1
  ## README
2
+
3
+ # blockchain-shared
4
+
5
+ Shared TypeScript library for multi-chain blockchain infrastructure used across projectx services.
6
+
7
+ ## What it does
8
+
9
+ - Manages deposit addresses, wallet indexes, and custodial/hot wallets
10
+ - Handles balances, withdrawals, sweeps, and claims across chains
11
+ - Abstracts RPC providers and chain configuration
12
+ - Processes on-chain events via Alchemy and Quicknode webhooks
13
+ - Integrates with Azure KeyVault, Redis, and PostgreSQL
14
+
15
+ ## Supported chains
16
+
17
+ EVM (Ethereum, BSC, Avalanche, Polygon, Fantom, Bitlayer, Monad), Solana, Tron, Bitcoin, Lightning
18
+
19
+ ## Stack
20
+
21
+ TypeScript · ethers.js v6 · @solana/web3.js · TronWeb · TypeORM · Redis · Azure
22
+
23
+ ## Install
24
+
25
+ ```bash
26
+ npm install @ercworldio/blockchain-shared
27
+ ```
@@ -38,14 +38,18 @@
38
38
  },
39
39
  "tronConfig": {
40
40
  "trxTransferCost": 270000,
41
- "trc20TransferCost": 4000000
41
+ "trc20TransferCost": 4000000,
42
+ "rentEnergyWallet": "THJXTqTw1gyAegWmHooebj6YNT8XHqcyFA"
42
43
  },
43
44
  "accounting": {
44
45
  "funding_wallet": "TN4tXH5F36BxWEe8UQuUeMr1EuPwJjNUFJ",
45
46
  "treasury_receiver": "TN4tXH5F36BxWEe8UQuUeMr1EuPwJjNUFJ",
46
47
  "overflow_treasury_receiver": "TCdE3ZGvBjUcqVCreT25SWwF36gkiLYTGD",
47
48
  "overflow_threshold_decimal": 100000,
48
- "min_funding_wallet_balance_usd": 5
49
+ "min_funding_wallet_balance_usd": 5,
50
+ "allowed_receivers": [
51
+ "TCdE3ZGvBjUcqVCreT25SWwF36gkiLYTGD"
52
+ ]
49
53
  },
50
54
  "rpcBaseUrl": "https://api.nileex.io",
51
55
  "rpcBaseUrlWss": "",
@@ -104,13 +108,16 @@
104
108
  "blockexplorerUrl": "https://solscan.io/?cluster=devnet",
105
109
  "rpcBaseUrl": "https://rpc.ankr.com/solana_devnet",
106
110
  "rpcBaseUrlWss": "wss://rpc.ankr.com/solana_devnet/ws",
107
- "targetConfirmations": 2,
111
+ "targetConfirmations": 32,
108
112
  "accounting": {
109
113
  "funding_wallet": "GLfRJqsRtTNDVvYVccXrz8RCKNnad2hqQfgFaApAKXCq",
110
114
  "treasury_receiver": "AAuFzrm6H4Vv7UyJi8R5Gsm4ixtR2yVmqzLmuyUTS5cu",
111
115
  "overflow_treasury_receiver": "GLfRJqsRtTNDVvYVccXrz8RCKNnad2hqQfgFaApAKXCq",
112
116
  "overflow_threshold_decimal": 100000,
113
- "min_funding_wallet_balance_usd": 5
117
+ "min_funding_wallet_balance_usd": 5,
118
+ "allowed_receivers": [
119
+ "AAuFzrm6H4Vv7UyJi8R5Gsm4ixtR2yVmqzLmuyUTS5cu"
120
+ ]
114
121
  },
115
122
  "custodialAlchemyWebhooks": [
116
123
  {
@@ -204,7 +211,10 @@
204
211
  "treasury_receiver": "0xaD372aCDd0F14A9430Af29DaEc8229A9F109d7F5",
205
212
  "overflow_treasury_receiver": "0xF84a78E56fBACAADd73E59eDAe02b3b80e4966C8",
206
213
  "overflow_threshold_decimal": 100000,
207
- "min_funding_wallet_balance_usd": 5
214
+ "min_funding_wallet_balance_usd": 5,
215
+ "allowed_receivers": [
216
+ "0xaD372aCDd0F14A9430Af29DaEc8229A9F109d7F5"
217
+ ]
208
218
  },
209
219
  "custodialAlchemyWebhooks": [
210
220
  {
@@ -364,7 +374,10 @@
364
374
  "treasury_receiver": "0x89DecB6b265D7714A69EE05E3Bc50Fd829D7Ef90",
365
375
  "overflow_treasury_receiver": "0xF84a78E56fBACAADd73E59eDAe02b3b80e4966C8",
366
376
  "overflow_threshold_decimal": 100000,
367
- "min_funding_wallet_balance_usd": 5
377
+ "min_funding_wallet_balance_usd": 5,
378
+ "allowed_receivers": [
379
+ "0x89DecB6b265D7714A69EE05E3Bc50Fd829D7Ef90"
380
+ ]
368
381
  },
369
382
  "custodialAlchemyWebhooks": [
370
383
  {
@@ -466,7 +479,10 @@
466
479
  "treasury_receiver": "0xEA8Ad078561B83724EEcDBb5b5A4f03369115Cf8",
467
480
  "overflow_treasury_receiver": "0xF84a78E56fBACAADd73E59eDAe02b3b80e4966C8",
468
481
  "overflow_threshold_decimal": 100000,
469
- "min_funding_wallet_balance_usd": 5
482
+ "min_funding_wallet_balance_usd": 5,
483
+ "allowed_receivers": [
484
+ "0xEA8Ad078561B83724EEcDBb5b5A4f03369115Cf8"
485
+ ]
470
486
  },
471
487
  "custodialAlchemyWebhooks": [
472
488
  {
@@ -554,7 +570,10 @@
554
570
  "treasury_receiver": "0x69E1F9316E03Da502B52f4682b0349d36CFBfFfD",
555
571
  "overflow_treasury_receiver": "0xF84a78E56fBACAADd73E59eDAe02b3b80e4966C8",
556
572
  "overflow_threshold_decimal": 100000,
557
- "min_funding_wallet_balance_usd": 1
573
+ "min_funding_wallet_balance_usd": 1,
574
+ "allowed_receivers": [
575
+ "0x69E1F9316E03Da502B52f4682b0349d36CFBfFfD"
576
+ ]
558
577
  },
559
578
  "custodialAlchemyWebhooks": [
560
579
  {
@@ -641,7 +660,10 @@
641
660
  "treasury_receiver": "0xf4BE5695F5eCd281171ab625ceb59bEee081e14f",
642
661
  "overflow_treasury_receiver": "0xF84a78E56fBACAADd73E59eDAe02b3b80e4966C8",
643
662
  "overflow_threshold_decimal": 100000,
644
- "min_funding_wallet_balance_usd": 0.5
663
+ "min_funding_wallet_balance_usd": 0.5,
664
+ "allowed_receivers": [
665
+ "0xf4BE5695F5eCd281171ab625ceb59bEee081e14f"
666
+ ]
645
667
  },
646
668
  "custodialAlchemyWebhooks": [
647
669
  {
@@ -14,7 +14,10 @@
14
14
  "treasury_receiver": "0x7F625Ba70fA13694218cD68b14F99EEF3518eC7C",
15
15
  "overflow_treasury_receiver": "0x7F625Ba70fA13694218cD68b14F99EEF3518eC7C",
16
16
  "overflow_threshold_decimal": 100000,
17
- "min_funding_wallet_balance_usd": 5
17
+ "min_funding_wallet_balance_usd": 5,
18
+ "allowed_receivers": [
19
+ "0x7F625Ba70fA13694218cD68b14F99EEF3518eC7C"
20
+ ]
18
21
  },
19
22
  "custodialAlchemyWebhooks": [
20
23
  {
@@ -109,7 +112,10 @@
109
112
  "treasury_receiver": "0x7F625Ba70fA13694218cD68b14F99EEF3518eC7C",
110
113
  "overflow_treasury_receiver": "0x7F625Ba70fA13694218cD68b14F99EEF3518eC7C",
111
114
  "overflow_threshold_decimal": 100000,
112
- "min_funding_wallet_balance_usd": 5
115
+ "min_funding_wallet_balance_usd": 5,
116
+ "allowed_receivers": [
117
+ "0x7F625Ba70fA13694218cD68b14F99EEF3518eC7C"
118
+ ]
113
119
  },
114
120
  "custodialAlchemyWebhooks": [
115
121
  {
@@ -198,13 +204,14 @@
198
204
  "blockexplorerUrl": "https://solscan.io",
199
205
  "rpcBaseUrl": "https://rpc.ankr.com/solana",
200
206
  "rpcBaseUrlWss": "wss://rpc.ankr.com/solana/ws",
201
- "targetConfirmations": 2,
207
+ "targetConfirmations": 32,
202
208
  "accounting": {
203
209
  "funding_wallet": "EvEmp35XMdWcsG3sULndr2Vb5yiLcA9JCfSBw5A6bXk6",
204
210
  "treasury_receiver": "67e3Robajph3KSAq3VDuYL21xifkCmD5y28DPwMecu7S",
205
211
  "overflow_treasury_receiver": "67e3Robajph3KSAq3VDuYL21xifkCmD5y28DPwMecu7S",
206
212
  "overflow_threshold_decimal": 100000,
207
- "min_funding_wallet_balance_usd": 5
213
+ "min_funding_wallet_balance_usd": 5,
214
+ "allowed_receivers": []
208
215
  },
209
216
  "custodialAlchemyWebhooks": [
210
217
  {
@@ -299,7 +306,10 @@
299
306
  "treasury_receiver": "0xE75526AaD30364d198b8553C716Aa9DDc2f8BD26",
300
307
  "overflow_treasury_receiver": "0xE75526AaD30364d198b8553C716Aa9DDc2f8BD26",
301
308
  "overflow_threshold_decimal": 100000,
302
- "min_funding_wallet_balance_usd": 5
309
+ "min_funding_wallet_balance_usd": 5,
310
+ "allowed_receivers": [
311
+ "0xE75526AaD30364d198b8553C716Aa9DDc2f8BD26"
312
+ ]
303
313
  },
304
314
  "custodialAlchemyWebhooks": [
305
315
  {
@@ -394,7 +404,10 @@
394
404
  "treasury_receiver": "0xD7205fD63Fa5def834DD3556c149FF7911478391",
395
405
  "overflow_treasury_receiver": "0xD7205fD63Fa5def834DD3556c149FF7911478391",
396
406
  "overflow_threshold_decimal": 100000,
397
- "min_funding_wallet_balance_usd": 5
407
+ "min_funding_wallet_balance_usd": 5,
408
+ "allowed_receivers": [
409
+ "0xD7205fD63Fa5def834DD3556c149FF7911478391"
410
+ ]
398
411
  },
399
412
  "custodialAlchemyWebhooks": [
400
413
  {
@@ -478,7 +491,10 @@
478
491
  "treasury_receiver": "0xedb9e987Da3806205D2f1e246Eb8c538A872783E",
479
492
  "overflow_treasury_receiver": "0xedb9e987Da3806205D2f1e246Eb8c538A872783E",
480
493
  "overflow_threshold_decimal": 100000,
481
- "min_funding_wallet_balance_usd": 5
494
+ "min_funding_wallet_balance_usd": 5,
495
+ "allowed_receivers": [
496
+ "0xedb9e987Da3806205D2f1e246Eb8c538A872783E"
497
+ ]
482
498
  },
483
499
  "custodialAlchemyWebhooks": [
484
500
  {
@@ -574,7 +590,8 @@
574
590
  "treasury_receiver": "TTxo5LeNkq5g9sywaGdXjttKRvoum8xSGp",
575
591
  "overflow_treasury_receiver": "TTxo5LeNkq5g9sywaGdXjttKRvoum8xSGp",
576
592
  "overflow_threshold_decimal": 100000,
577
- "min_funding_wallet_balance_usd": 5
593
+ "min_funding_wallet_balance_usd": 5,
594
+ "allowed_receivers": []
578
595
  },
579
596
  "rpcMetadata": {
580
597
  "rpcBaseUrl": "https://rpc.ankr.com/premium-http/tron",
@@ -14,7 +14,10 @@
14
14
  "treasury_receiver": "0x5df6F2A9016d6cA062e60da3b056736B2015B6f0",
15
15
  "overflow_treasury_receiver": "0x9ec71A61106a84048D19bDb4D27EbBcD4f12fd2e",
16
16
  "overflow_threshold_decimal": 100000,
17
- "min_funding_wallet_balance_usd": 5
17
+ "min_funding_wallet_balance_usd": 5,
18
+ "allowed_receivers": [
19
+ "0x9ec71A61106a84048D19bDb4D27EbBcD4f12fd2e"
20
+ ]
18
21
  },
19
22
  "custodialAlchemyWebhooks": [
20
23
  {
@@ -26,6 +29,20 @@
26
29
  "source": "wallet"
27
30
  }
28
31
  ],
32
+ "quicknodeNotificationConfig": [
33
+ {
34
+ "name": "escrow-eth-prod-dz",
35
+ "network": "ethereum-mainnet",
36
+ "template": "evmWalletFilter",
37
+ "source": "contract",
38
+ "chain_id": 1
39
+ },
40
+ {
41
+ "name": "qn-custodial-webhook-eth-prod-dz",
42
+ "network": "ethereum-mainnet",
43
+ "template": "evmWalletFilter"
44
+ }
45
+ ],
29
46
  "contracts": [
30
47
  {
31
48
  "type": "Escrow",
@@ -88,6 +105,17 @@
88
105
  "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
89
106
  "sweepThreshold": 4,
90
107
  "sweepWalletMinBalance": 1
108
+ },
109
+ {
110
+ "name": "PalmUSD",
111
+ "symbol": "PUSD",
112
+ "token_standard": "ERC-20",
113
+ "type": "erc20",
114
+ "isStableCoin": true,
115
+ "decimals": 6,
116
+ "address": "0xFAF0cEe6B20e2Aaa4B80748a6AF4CD89609a3d78",
117
+ "sweepThreshold": 1,
118
+ "sweepWalletMinBalance": 0.1
91
119
  }
92
120
  ]
93
121
  },
@@ -106,7 +134,10 @@
106
134
  "treasury_receiver": "0x184D508C3934e36Df2531175460DCca51F238E4e",
107
135
  "overflow_treasury_receiver": "0x9ec71A61106a84048D19bDb4D27EbBcD4f12fd2e",
108
136
  "overflow_threshold_decimal": 100000,
109
- "min_funding_wallet_balance_usd": 5
137
+ "min_funding_wallet_balance_usd": 5,
138
+ "allowed_receivers": [
139
+ "0x9ec71A61106a84048D19bDb4D27EbBcD4f12fd2e"
140
+ ]
110
141
  },
111
142
  "custodialAlchemyWebhooks": [
112
143
  {
@@ -118,6 +149,20 @@
118
149
  "source": "wallet"
119
150
  }
120
151
  ],
152
+ "quicknodeNotificationConfig": [
153
+ {
154
+ "name": "escrow-bnb-prod-dz",
155
+ "network": "bnbchain-mainnet",
156
+ "template": "evmWalletFilter",
157
+ "source": "contract",
158
+ "chain_id": 56
159
+ },
160
+ {
161
+ "name": "qn-custodial-webhook-bnb-prod-dz",
162
+ "network": "bnbchain-mainnet",
163
+ "template": "evmWalletFilter"
164
+ }
165
+ ],
121
166
  "contracts": [
122
167
  {
123
168
  "type": "Escrow",
@@ -181,13 +226,16 @@
181
226
  "blockexplorerUrl": "https://solscan.io",
182
227
  "rpcBaseUrl": "https://rpc.ankr.com/solana",
183
228
  "rpcBaseUrlWss": "wss://rpc.ankr.com/solana/ws",
184
- "targetConfirmations": 2,
229
+ "targetConfirmations": 32,
185
230
  "accounting": {
186
231
  "funding_wallet": "7z5QwV7mg93PU8tBsbdvXscG9bf5VUP2QYHvS2czNisG",
187
232
  "treasury_receiver": "Cr1fJwtExaPdYG8huC5axiW2m2knSoTumLzYBj9rMjCd",
188
233
  "overflow_treasury_receiver": "9Akuf5wxomRwzbu3wpSPpJ21EABGGaopoBoCD1boE4Hn",
189
234
  "overflow_threshold_decimal": 100000,
190
- "min_funding_wallet_balance_usd": 5
235
+ "min_funding_wallet_balance_usd": 5,
236
+ "allowed_receivers": [
237
+ "9Akuf5wxomRwzbu3wpSPpJ21EABGGaopoBoCD1boE4Hn"
238
+ ]
191
239
  },
192
240
  "custodialAlchemyWebhooks": [
193
241
  {
@@ -201,14 +249,14 @@
201
249
  ],
202
250
  "quicknodeNotificationConfig": [
203
251
  {
204
- "name": "escrow-sol-prod-bu",
252
+ "name": "escrow-sol-prod-dz",
205
253
  "network": "solana-mainnet",
206
254
  "template": "solanaWalletFilter",
207
255
  "source": "contract",
208
256
  "chain_id": 101
209
257
  },
210
258
  {
211
- "name": "qn-custodial-webhook-sol-prod-bu",
259
+ "name": "qn-custodial-webhook-sol-prod-dz",
212
260
  "network": "solana-mainnet",
213
261
  "template": "solanaWalletFilter"
214
262
  }
@@ -264,6 +312,17 @@
264
312
  "address": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
265
313
  "sweepThreshold": 1,
266
314
  "sweepWalletMinBalance": 1
315
+ },
316
+ {
317
+ "name": "PalmUSD",
318
+ "symbol": "PUSD",
319
+ "token_standard": "SOL",
320
+ "type": "erc20",
321
+ "isStableCoin": true,
322
+ "decimals": 6,
323
+ "address": "CZzgUBvxaMLwMhVSLgqJn3npmxoTo6nzMNQPAnwtHF3s",
324
+ "sweepThreshold": 1,
325
+ "sweepWalletMinBalance": 0.1
267
326
  }
268
327
  ]
269
328
  },
@@ -282,7 +341,10 @@
282
341
  "treasury_receiver": "0x1821236AaC799c31F12C7359017083620a49a52E",
283
342
  "overflow_treasury_receiver": "0x9ec71A61106a84048D19bDb4D27EbBcD4f12fd2e",
284
343
  "overflow_threshold_decimal": 100000,
285
- "min_funding_wallet_balance_usd": 5
344
+ "min_funding_wallet_balance_usd": 5,
345
+ "allowed_receivers": [
346
+ "0x9ec71A61106a84048D19bDb4D27EbBcD4f12fd2e"
347
+ ]
286
348
  },
287
349
  "custodialAlchemyWebhooks": [
288
350
  {
@@ -294,6 +356,20 @@
294
356
  "source": "wallet"
295
357
  }
296
358
  ],
359
+ "quicknodeNotificationConfig": [
360
+ {
361
+ "name": "escrow-pol-prod-dz",
362
+ "network": "polygon-mainnet",
363
+ "template": "evmWalletFilter",
364
+ "source": "contract",
365
+ "chain_id": 137
366
+ },
367
+ {
368
+ "name": "qn-custodial-webhook-pol-prod-dz",
369
+ "network": "bnbchain-mainnet",
370
+ "template": "evmWalletFilter"
371
+ }
372
+ ],
297
373
  "contracts": [
298
374
  {
299
375
  "type": "Escrow",
@@ -348,6 +424,93 @@
348
424
  }
349
425
  ]
350
426
  },
427
+ "143": {
428
+ "status": true,
429
+ "isTestnet": false,
430
+ "name": "Monad",
431
+ "blockchainType": "evm",
432
+ "chainId": 143,
433
+ "blockexplorerUrl": "https://monadscan.com",
434
+ "rpcBaseUrl": "https://rpc.ankr.com/monad_mainnet",
435
+ "rpcBaseUrlWss": "wss://rpc.ankr.com/monad_mainnet/ws",
436
+ "targetConfirmations": 10,
437
+ "accounting": {
438
+ "funding_wallet": "0x9Ea8Fb697981Fe83599E3F90b0Bd77E3a3253fE7",
439
+ "treasury_receiver": "0x567559911E22E461a449BB036fE4C44464aaa664",
440
+ "overflow_treasury_receiver": "0x9ec71A61106a84048D19bDb4D27EbBcD4f12fd2e",
441
+ "overflow_threshold_decimal": 100000,
442
+ "min_funding_wallet_balance_usd": 5,
443
+ "allowed_receivers": [
444
+ "0x9ec71A61106a84048D19bDb4D27EbBcD4f12fd2e"
445
+ ]
446
+ },
447
+ "custodialAlchemyWebhooks": [
448
+ {
449
+ "chainId": "143",
450
+ "network_symbol": "mon",
451
+ "network": "MONAD_MAINNET",
452
+ "total_wallet_count": 10,
453
+ "endpoint": "webhook/alchemy/address-activity-mon",
454
+ "source": "wallet"
455
+ }
456
+ ],
457
+ "quicknodeNotificationConfig": [
458
+ {
459
+ "name": "escrow-mon-prod-dz",
460
+ "network": "monad-mainnet",
461
+ "template": "evmWalletFilter",
462
+ "source": "contract",
463
+ "chain_id": 143
464
+ },
465
+ {
466
+ "name": "qn-custodial-webhook-mon-prod-dz",
467
+ "network": "monad-mainnet",
468
+ "template": "evmWalletFilter"
469
+ }
470
+ ],
471
+ "contracts": [
472
+ {
473
+ "type": "Escrow",
474
+ "version": "1",
475
+ "startingBlock": 56816192,
476
+ "escrowAlchemyWebhooks": [
477
+ {
478
+ "chainId": "143",
479
+ "network_symbol": "mon",
480
+ "network": "MONAD_MAINNET",
481
+ "type": "GRAPHQL",
482
+ "endpoint": "webhook/alchemy/escrow-events",
483
+ "source": "contract"
484
+ }
485
+ ],
486
+ "addresses": [
487
+ "0x567559911E22E461a449BB036fE4C44464aaa664"
488
+ ]
489
+ },
490
+ {
491
+ "type": "FundingWallet",
492
+ "version": "1",
493
+ "startingBlock": 1,
494
+ "escrowAlchemyWebhooks": [],
495
+ "addresses": [
496
+ "0x9Ea8Fb697981Fe83599E3F90b0Bd77E3a3253fE7"
497
+ ]
498
+ }
499
+ ],
500
+ "paymentTokens": [
501
+ {
502
+ "name": "Monad",
503
+ "symbol": "MON",
504
+ "token_standard": "ERC-20",
505
+ "type": "native",
506
+ "decimals": 18,
507
+ "address": "0x0000000000000000000000000000000000000000",
508
+ "isStableCoin": false,
509
+ "sweepThreshold": 10,
510
+ "sweepWalletMinBalance": 0.1
511
+ }
512
+ ]
513
+ },
351
514
  "43114": {
352
515
  "status": true,
353
516
  "isTestnet": false,
@@ -363,7 +526,10 @@
363
526
  "treasury_receiver": "0x5df6F2A9016d6cA062e60da3b056736B2015B6f0",
364
527
  "overflow_treasury_receiver": "0x9ec71A61106a84048D19bDb4D27EbBcD4f12fd2e",
365
528
  "overflow_threshold_decimal": 100000,
366
- "min_funding_wallet_balance_usd": 5
529
+ "min_funding_wallet_balance_usd": 5,
530
+ "allowed_receivers": [
531
+ "0x9ec71A61106a84048D19bDb4D27EbBcD4f12fd2e"
532
+ ]
367
533
  },
368
534
  "custodialAlchemyWebhooks": [
369
535
  {
@@ -459,7 +625,10 @@
459
625
  "treasury_receiver": "TBLeFCWoBrwgbvj33F41t8FErhkgbm3276",
460
626
  "overflow_treasury_receiver": "TJetV4XspjvQ3adfQV8RExniL7NAJukF2p",
461
627
  "overflow_threshold_decimal": 100000,
462
- "min_funding_wallet_balance_usd": 5
628
+ "min_funding_wallet_balance_usd": 5,
629
+ "allowed_receivers": [
630
+ "0x9ec71A61106a84048D19bDb4D27EbBcD4f12fd2e"
631
+ ]
463
632
  },
464
633
  "rpcMetadata": {
465
634
  "rpcBaseUrl": "https://rpc.ankr.com/premium-http/tron",
@@ -14,7 +14,10 @@
14
14
  "treasury_receiver": "0x8A729F30A9860ad6148D35A4Df49314f571bE84d",
15
15
  "overflow_treasury_receiver": "0x8A729F30A9860ad6148D35A4Df49314f571bE84d",
16
16
  "overflow_threshold_decimal": 100000,
17
- "min_funding_wallet_balance_usd": 5
17
+ "min_funding_wallet_balance_usd": 5,
18
+ "allowed_receivers": [
19
+ "0x8A729F30A9860ad6148D35A4Df49314f571bE84d"
20
+ ]
18
21
  },
19
22
  "custodialAlchemyWebhooks": [
20
23
  {
@@ -95,7 +98,10 @@
95
98
  "treasury_receiver": "0x8A729F30A9860ad6148D35A4Df49314f571bE84d",
96
99
  "overflow_treasury_receiver": "0x8A729F30A9860ad6148D35A4Df49314f571bE84d",
97
100
  "overflow_threshold_decimal": 100000,
98
- "min_funding_wallet_balance_usd": 5
101
+ "min_funding_wallet_balance_usd": 5,
102
+ "allowed_receivers": [
103
+ "0x8A729F30A9860ad6148D35A4Df49314f571bE84d"
104
+ ]
99
105
  },
100
106
  "custodialAlchemyWebhooks": [
101
107
  {
@@ -170,13 +176,14 @@
170
176
  "blockexplorerUrl": "https://solscan.io",
171
177
  "rpcBaseUrl": "https://rpc.ankr.com/solana",
172
178
  "rpcBaseUrlWss": "wss://rpc.ankr.com/solana/ws",
173
- "targetConfirmations": 2,
179
+ "targetConfirmations": 32,
174
180
  "accounting": {
175
181
  "funding_wallet": "79ojMgdb9dLuGnFRjaNzkYmd4NFxV5ukRTpYSrTxmTFN",
176
182
  "treasury_receiver": "Fi2BknBbXXcjHst2PwQQVZwYx8NHx6k8NsU5cLXhTwmT",
177
183
  "overflow_treasury_receiver": "Fi2BknBbXXcjHst2PwQQVZwYx8NHx6k8NsU5cLXhTwmT",
178
184
  "overflow_threshold_decimal": 100000,
179
- "min_funding_wallet_balance_usd": 5
185
+ "min_funding_wallet_balance_usd": 5,
186
+ "allowed_receivers": []
180
187
  },
181
188
  "custodialAlchemyWebhooks": [
182
189
  {
@@ -257,7 +264,10 @@
257
264
  "treasury_receiver": "0x45B284aB71F18866438E33f1f68e7561aa8D5806",
258
265
  "overflow_treasury_receiver": "0x45B284aB71F18866438E33f1f68e7561aa8D5806",
259
266
  "overflow_threshold_decimal": 100000,
260
- "min_funding_wallet_balance_usd": 5
267
+ "min_funding_wallet_balance_usd": 5,
268
+ "allowed_receivers": [
269
+ "0x45B284aB71F18866438E33f1f68e7561aa8D5806"
270
+ ]
261
271
  },
262
272
  "custodialAlchemyWebhooks": [
263
273
  {
@@ -338,7 +348,10 @@
338
348
  "treasury_receiver": "0x8A729F30A9860ad6148D35A4Df49314f571bE84d",
339
349
  "overflow_treasury_receiver": "0x8A729F30A9860ad6148D35A4Df49314f571bE84d",
340
350
  "overflow_threshold_decimal": 100000,
341
- "min_funding_wallet_balance_usd": 5
351
+ "min_funding_wallet_balance_usd": 5,
352
+ "allowed_receivers": [
353
+ "0x8A729F30A9860ad6148D35A4Df49314f571bE84d"
354
+ ]
342
355
  },
343
356
  "custodialAlchemyWebhooks": [
344
357
  {
@@ -408,7 +421,10 @@
408
421
  "treasury_receiver": "0x8A729F30A9860ad6148D35A4Df49314f571bE84d",
409
422
  "overflow_treasury_receiver": "0x8A729F30A9860ad6148D35A4Df49314f571bE84d",
410
423
  "overflow_threshold_decimal": 100000,
411
- "min_funding_wallet_balance_usd": 5
424
+ "min_funding_wallet_balance_usd": 5,
425
+ "allowed_receivers": [
426
+ "0x8A729F30A9860ad6148D35A4Df49314f571bE84d"
427
+ ]
412
428
  },
413
429
  "custodialAlchemyWebhooks": [
414
430
  {
@@ -490,7 +506,10 @@
490
506
  "treasury_receiver": "TWA4NYYdVtnb7iZfmyruC5MefsFdw84iZu",
491
507
  "overflow_treasury_receiver": "TWA4NYYdVtnb7iZfmyruC5MefsFdw84iZu",
492
508
  "overflow_threshold_decimal": 100000,
493
- "min_funding_wallet_balance_usd": 5
509
+ "min_funding_wallet_balance_usd": 5,
510
+ "allowed_receivers": [
511
+ "TWA4NYYdVtnb7iZfmyruC5MefsFdw84iZu"
512
+ ]
494
513
  },
495
514
  "rpcMetadata": {
496
515
  "rpcBaseUrl": "https://rpc.ankr.com/premium-http/tron",