@ercworldio/blockchain-shared 1.0.3-dev.4 → 1.0.3-dev.4-PROJ-1296.1

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 (137) hide show
  1. package/build/chains/networks_dev copy.json +793 -0
  2. package/build/chains/networks_dev.json +12 -12
  3. package/build/chains/networks_prod-sh.json +40 -4
  4. package/build/chains/networks_prod-yb.json +40 -4
  5. package/build/contracts/Escrow.d.ts +66 -5
  6. package/build/contracts/Escrow.d.ts.map +1 -1
  7. package/build/contracts/Escrow.js +93 -2
  8. package/build/contracts/EscrowErrors.d.ts +85 -1
  9. package/build/contracts/EscrowErrors.d.ts.map +1 -1
  10. package/build/contracts/EscrowErrors.js +59 -14
  11. package/build/contracts/artifacts/Escrow.json +0 -12
  12. package/build/contracts/contract-events/AccessControlEvents.d.ts +12 -2
  13. package/build/contracts/contract-events/AccessControlEvents.d.ts.map +1 -1
  14. package/build/contracts/contract-events/AccessControlEvents.js +29 -5
  15. package/build/contracts/contract-events/EscrowEvents.d.ts +134 -2
  16. package/build/contracts/contract-events/EscrowEvents.d.ts.map +1 -1
  17. package/build/contracts/contract-events/EscrowEvents.js +67 -17
  18. package/build/contracts/contract-events/types/events.d.ts +35 -1
  19. package/build/contracts/contract-events/types/events.d.ts.map +1 -1
  20. package/build/contracts/typechain-types/contracts/escrow/Escrow.d.ts +1 -4
  21. package/build/contracts/typechain-types/contracts/escrow/Escrow.d.ts.map +1 -1
  22. package/build/contracts/typechain-types/contracts/lib/Events.d.ts +1 -4
  23. package/build/contracts/typechain-types/contracts/lib/Events.d.ts.map +1 -1
  24. package/build/contracts/typechain-types/factories/contracts/escrow/EscrowAccessControl__factory.d.ts +1 -1
  25. package/build/contracts/typechain-types/factories/contracts/escrow/EscrowAccessControl__factory.js +1 -1
  26. package/build/contracts/typechain-types/factories/contracts/escrow/Escrow__factory.d.ts +1 -6
  27. package/build/contracts/typechain-types/factories/contracts/escrow/Escrow__factory.d.ts.map +1 -1
  28. package/build/contracts/typechain-types/factories/contracts/escrow/Escrow__factory.js +1 -7
  29. package/build/contracts/typechain-types/factories/contracts/lib/Events__factory.d.ts +1 -6
  30. package/build/contracts/typechain-types/factories/contracts/lib/Events__factory.d.ts.map +1 -1
  31. package/build/contracts/typechain-types/factories/contracts/lib/Events__factory.js +1 -7
  32. package/build/contracts/types/escrow.d.ts +13 -1
  33. package/build/contracts/types/escrow.d.ts.map +1 -1
  34. package/build/contracts/types/escrow.js +4 -0
  35. package/build/entities/AdminOperationThresholds.d.ts +0 -1
  36. package/build/entities/AdminOperationThresholds.d.ts.map +1 -1
  37. package/build/entities/AdminOperationThresholds.js +1 -5
  38. package/build/entities/AdminWithdrawal.d.ts +20 -0
  39. package/build/entities/AdminWithdrawal.d.ts.map +1 -0
  40. package/build/entities/AdminWithdrawal.js +88 -0
  41. package/build/entities/ClaimJob.d.ts +1 -0
  42. package/build/entities/ClaimJob.d.ts.map +1 -1
  43. package/build/entities/ClaimJob.js +4 -0
  44. package/build/entities/CryptoOperationType.d.ts +18 -0
  45. package/build/entities/CryptoOperationType.d.ts.map +1 -0
  46. package/build/entities/CryptoOperationType.js +50 -0
  47. package/build/entities/EscrowRoles.js +1 -1
  48. package/build/entities/GlobalTimelock.d.ts +0 -1
  49. package/build/entities/GlobalTimelock.d.ts.map +1 -1
  50. package/build/entities/GlobalTimelock.js +1 -5
  51. package/build/entities/GranularTimelock .d.ts +0 -1
  52. package/build/entities/GranularTimelock .d.ts.map +1 -1
  53. package/build/entities/GranularTimelock .js +0 -4
  54. package/build/entities/GranularTimelock.d.ts +11 -0
  55. package/build/entities/GranularTimelock.d.ts.map +1 -0
  56. package/build/entities/GranularTimelock.js +52 -0
  57. package/build/entities/RoleHash.js +1 -1
  58. package/build/entities/ScheduleTransactionJob.d.ts +23 -0
  59. package/build/entities/ScheduleTransactionJob.d.ts.map +1 -0
  60. package/build/entities/ScheduleTransactionJob.js +89 -0
  61. package/build/entities/ScheduleTransactionJobHistory.d.ts +17 -0
  62. package/build/entities/ScheduleTransactionJobHistory.d.ts.map +1 -0
  63. package/build/entities/ScheduleTransactionJobHistory.js +66 -0
  64. package/build/entities/TokenExecutionThresholds.d.ts +0 -1
  65. package/build/entities/TokenExecutionThresholds.d.ts.map +1 -1
  66. package/build/entities/TokenExecutionThresholds.js +1 -5
  67. package/build/entities/WithdrawalCommitment.d.ts +15 -0
  68. package/build/entities/WithdrawalCommitment.d.ts.map +1 -0
  69. package/build/entities/WithdrawalCommitment.js +64 -0
  70. package/build/entities/index.d.ts +22 -0
  71. package/build/entities/index.d.ts.map +1 -0
  72. package/build/entities/index.js +37 -0
  73. package/build/errors/errors.d.ts +30 -0
  74. package/build/errors/errors.d.ts.map +1 -1
  75. package/build/errors/errors.js +64 -2
  76. package/build/index.d.ts +6 -9
  77. package/build/index.d.ts.map +1 -1
  78. package/build/index.js +22 -11
  79. package/build/interfaces.d.ts +2 -2
  80. package/build/interfaces.d.ts.map +1 -1
  81. package/build/services/AlchemyWebhooks.d.ts.map +1 -1
  82. package/build/services/AlchemyWebhooks.js +33 -29
  83. package/build/services/AzureEventHubHandler.d.ts.map +1 -1
  84. package/build/services/AzureEventHubHandler.js +17 -5
  85. package/build/services/ClaimJobService.d.ts +5 -2
  86. package/build/services/ClaimJobService.d.ts.map +1 -1
  87. package/build/services/ClaimJobService.js +135 -24
  88. package/build/services/ClaimJobServiceStatic.d.ts +9 -0
  89. package/build/services/ClaimJobServiceStatic.d.ts.map +1 -0
  90. package/build/services/ClaimJobServiceStatic.js +54 -0
  91. package/build/services/SweepJobService.d.ts +3 -3
  92. package/build/services/SweepJobService.d.ts.map +1 -1
  93. package/build/services/SweepJobService.js +7 -12
  94. package/build/services/WithdrawalService.d.ts +10 -0
  95. package/build/services/WithdrawalService.d.ts.map +1 -0
  96. package/build/services/WithdrawalService.js +36 -0
  97. package/build/services/db/multisig/MultisigService.d.ts +31 -0
  98. package/build/services/db/multisig/MultisigService.d.ts.map +1 -0
  99. package/build/services/db/multisig/MultisigService.js +134 -0
  100. package/build/services/db/roles/ContractRoles.d.ts +2 -2
  101. package/build/services/db/roles/ContractRoles.d.ts.map +1 -1
  102. package/build/services/db/roles/ContractRoles.js +18 -12
  103. package/build/services/db/timelock/ScheduleTransactionJobHistoryService.d.ts +14 -0
  104. package/build/services/db/timelock/ScheduleTransactionJobHistoryService.d.ts.map +1 -0
  105. package/build/services/db/timelock/ScheduleTransactionJobHistoryService.js +63 -0
  106. package/build/services/db/timelock/ScheduleTransactionService.d.ts +32 -0
  107. package/build/services/db/timelock/ScheduleTransactionService.d.ts.map +1 -0
  108. package/build/services/db/timelock/ScheduleTransactionService.js +212 -0
  109. package/build/services/types/azure_event_hub_handler.d.ts +9 -1
  110. package/build/services/types/azure_event_hub_handler.d.ts.map +1 -1
  111. package/build/services/types/azure_event_hub_handler.js +8 -0
  112. package/build/services/types/claim.d.ts +17 -1
  113. package/build/services/types/claim.d.ts.map +1 -1
  114. package/build/services/types/claim_job_service.d.ts +9 -1
  115. package/build/services/types/claim_job_service.d.ts.map +1 -1
  116. package/build/services/types/db/index.d.ts +3 -0
  117. package/build/services/types/db/index.d.ts.map +1 -0
  118. package/build/services/types/db/index.js +18 -0
  119. package/build/services/types/db/multisig_service.d.ts +154 -0
  120. package/build/services/types/db/multisig_service.d.ts.map +1 -0
  121. package/build/services/types/db/multisig_service.js +2 -0
  122. package/build/services/types/db/timelock.d.ts +28 -0
  123. package/build/services/types/db/timelock.d.ts.map +1 -0
  124. package/build/services/types/db/timelock.js +2 -0
  125. package/build/services/types/db/withdrawal_service.d.ts +16 -0
  126. package/build/services/types/db/withdrawal_service.d.ts.map +1 -0
  127. package/build/services/types/db/withdrawal_service.js +2 -0
  128. package/build/services/types/index.d.ts +1 -0
  129. package/build/services/types/index.d.ts.map +1 -1
  130. package/build/services/types/index.js +1 -0
  131. package/build/services/types/watchdog.d.ts +9 -0
  132. package/build/services/types/watchdog.d.ts.map +1 -0
  133. package/build/services/types/watchdog.js +2 -0
  134. package/build/utils/custodial.d.ts +8 -0
  135. package/build/utils/custodial.d.ts.map +1 -1
  136. package/build/utils/custodial.js +23 -2
  137. package/package.json +6 -3
@@ -0,0 +1,793 @@
1
+ {
2
+ "1000000001": {
3
+ "status": true,
4
+ "isTestnet": true,
5
+ "name": "Bitcoin",
6
+ "blockchainType": "lightning",
7
+ "chainId": 1000000001,
8
+ "blockexplorerUrl": "https://mempool.space/lightning",
9
+ "rpcBaseUrl": "",
10
+ "rpcBaseUrlWss": "",
11
+ "targetConfirmations": 1,
12
+ "custodialAlchemyWebhooks": [],
13
+ "contracts": [],
14
+ "paymentTokens": [
15
+ {
16
+ "name": "Bitcoin",
17
+ "symbol": "BTC",
18
+ "token_standard": "LIGHTNING",
19
+ "type": "native",
20
+ "isStableCoin": false,
21
+ "decimals": 8,
22
+ "address": "000000000000000000000000000000000000000000",
23
+ "sweepThreshold": 0.001,
24
+ "sweepWalletMinBalance": 0.01
25
+ }
26
+ ]
27
+ },
28
+ "3448148188": {
29
+ "status": true,
30
+ "isTestnet": true,
31
+ "name": "Tron Testnet",
32
+ "blockchainType": "tron",
33
+ "chainId": 3448148188,
34
+ "blockexplorerUrl": "https://nile.tronscan.org",
35
+ "rpcMetadata": {
36
+ "rpcBaseUrl": "https://api.nileex.io",
37
+ "tronGridApi": "https://nile.trongrid.io"
38
+ },
39
+ "tronConfig": {
40
+ "trxTransferCost": 270000,
41
+ "trc20TransferCost": 4000000,
42
+ "rentEnergyWallet": "TCdE3ZGvBjUcqVCreT25SWwF36gkiLYTGD"
43
+ },
44
+ "accounting": {
45
+ "funding_wallet": "TN4tXH5F36BxWEe8UQuUeMr1EuPwJjNUFJ",
46
+ "treasury_receiver": "TN4tXH5F36BxWEe8UQuUeMr1EuPwJjNUFJ",
47
+ "overflow_treasury_receiver": "TCdE3ZGvBjUcqVCreT25SWwF36gkiLYTGD",
48
+ "overflow_threshold_decimal": 100000,
49
+ "min_funding_wallet_balance_usd": 5,
50
+ "allowed_receivers": [
51
+ "TCdE3ZGvBjUcqVCreT25SWwF36gkiLYTGD"
52
+ ]
53
+ },
54
+ "rpcBaseUrl": "https://api.nileex.io",
55
+ "rpcBaseUrlWss": "",
56
+ "targetConfirmations": 20,
57
+ "quicknodeStreams": [],
58
+ "custodialAlchemyWebhooks": [],
59
+ "contracts": [
60
+ {
61
+ "type": "Escrow",
62
+ "version": "1",
63
+ "startingBlock": 416497745,
64
+ "escrowAlchemyWebhooks": [],
65
+ "addresses": []
66
+ },
67
+ {
68
+ "type": "FundingWallet",
69
+ "version": "1",
70
+ "startingBlock": 45852351,
71
+ "escrowAlchemyWebhooks": [],
72
+ "addresses": [
73
+ "TN4tXH5F36BxWEe8UQuUeMr1EuPwJjNUFJ"
74
+ ]
75
+ }
76
+ ],
77
+ "paymentTokens": [
78
+ {
79
+ "name": "Tron",
80
+ "symbol": "TRX",
81
+ "token_standard": "TRX",
82
+ "type": "native",
83
+ "isStableCoin": false,
84
+ "decimals": 6,
85
+ "address": "0000000000000000000000000000000000000000",
86
+ "sweepThreshold": 10,
87
+ "sweepWalletMinBalance": 6,
88
+ "recommendedMinBalanceFundingWallet": 300,
89
+ "recommendedMinBalanceEscrow": 0,
90
+ "recommendedMinBalanceRentEnergy": 50
91
+ },
92
+ {
93
+ "name": "Tether Token",
94
+ "symbol": "USDT",
95
+ "token_standard": "TRC-20",
96
+ "type": "trc20",
97
+ "isStableCoin": true,
98
+ "decimals": 6,
99
+ "address": "TXYZopYRdj2D9XRtbG411XZZ3kM5VkAeBf",
100
+ "sweepThreshold": 1,
101
+ "sweepWalletMinBalance": 0.1,
102
+ "recommendedMinBalanceFundingWallet": 100,
103
+ "recommendedMinBalanceEscrow": 0,
104
+ "recommendedMinBalanceRentEnergy": 0
105
+ }
106
+ ]
107
+ },
108
+ "103": {
109
+ "status": true,
110
+ "isTestnet": true,
111
+ "name": "Solana Devnet",
112
+ "blockchainType": "solana",
113
+ "chainId": 103,
114
+ "blockexplorerUrl": "https://solscan.io/?cluster=devnet",
115
+ "rpcBaseUrl": "https://rpc.ankr.com/solana_devnet",
116
+ "rpcBaseUrlWss": "wss://rpc.ankr.com/solana_devnet/ws",
117
+ "targetConfirmations": 32,
118
+ "accounting": {
119
+ "funding_wallet": "GLfRJqsRtTNDVvYVccXrz8RCKNnad2hqQfgFaApAKXCq",
120
+ "treasury_receiver": "AAuFzrm6H4Vv7UyJi8R5Gsm4ixtR2yVmqzLmuyUTS5cu",
121
+ "overflow_treasury_receiver": "GLfRJqsRtTNDVvYVccXrz8RCKNnad2hqQfgFaApAKXCq",
122
+ "overflow_threshold_decimal": 100000,
123
+ "min_funding_wallet_balance_usd": 5,
124
+ "allowed_receivers": [
125
+ "AAuFzrm6H4Vv7UyJi8R5Gsm4ixtR2yVmqzLmuyUTS5cu"
126
+ ]
127
+ },
128
+ "custodialAlchemyWebhooks": [
129
+ {
130
+ "chainId": "103",
131
+ "network_symbol": "sol",
132
+ "network": "SOLANA_DEVNET",
133
+ "total_wallet_count": 10,
134
+ "endpoint": "webhook/alchemy/address-activity-sol",
135
+ "source": "wallet"
136
+ }
137
+ ],
138
+ "quicknodeNotificationConfig": [
139
+ {
140
+ "name": "escrow-sol-dev",
141
+ "network": "solana-devnet",
142
+ "template": "solanaWalletFilter",
143
+ "source": "contract",
144
+ "chain_id": 103
145
+ },
146
+ {
147
+ "name": "qn-custodial-webhook-sol-dev",
148
+ "network": "solana-devnet",
149
+ "template": "solanaWalletFilter"
150
+ }
151
+ ],
152
+ "contracts": [
153
+ {
154
+ "type": "Escrow",
155
+ "version": "1",
156
+ "startingBlock": 416497745,
157
+ "escrowAlchemyWebhooks": [
158
+ {
159
+ "chainId": "103",
160
+ "network_symbol": "sol",
161
+ "network": "SOLANA_DEVNET",
162
+ "type": "ADDRESS_ACTIVITY",
163
+ "endpoint": "webhook/alchemy/solana/escrow-events",
164
+ "source": "contract"
165
+ }
166
+ ],
167
+ "addresses": [
168
+ "AAuFzrm6H4Vv7UyJi8R5Gsm4ixtR2yVmqzLmuyUTS5cu"
169
+ ]
170
+ },
171
+ {
172
+ "type": "FundingWallet",
173
+ "version": "1",
174
+ "startingBlock": 45852351,
175
+ "escrowAlchemyWebhooks": [],
176
+ "addresses": [
177
+ "GLfRJqsRtTNDVvYVccXrz8RCKNnad2hqQfgFaApAKXCq"
178
+ ]
179
+ }
180
+ ],
181
+ "paymentTokens": [
182
+ {
183
+ "name": "Solana",
184
+ "symbol": "SOL",
185
+ "token_standard": "SOL",
186
+ "type": "native",
187
+ "decimals": 9,
188
+ "address": "11111111111111111111111111111111",
189
+ "sweepThreshold": 0.05,
190
+ "sweepWalletMinBalance": 0.01,
191
+ "recommendedMinBalanceFundingWallet": 0.25,
192
+ "recommendedMinBalanceEscrow": 10,
193
+ "recommendedMinBalanceRentEnergy": 0
194
+ },
195
+ {
196
+ "name": "Circle Token",
197
+ "symbol": "USDC",
198
+ "token_standard": "SOL",
199
+ "type": "erc20",
200
+ "isStableCoin": true,
201
+ "decimals": 6,
202
+ "address": "4zMMC9srt5Ri5X14GAgXhaHii3GnPAEERYPJgZJDncDU",
203
+ "sweepThreshold": 1,
204
+ "sweepWalletMinBalance": 0.1,
205
+ "recommendedMinBalanceFundingWallet": 0,
206
+ "recommendedMinBalanceEscrow": 100,
207
+ "recommendedMinBalanceRentEnergy": 0
208
+ }
209
+ ]
210
+ },
211
+ "97": {
212
+ "status": true,
213
+ "isTestnet": true,
214
+ "name": "BSC Testnet",
215
+ "blockchainType": "evm",
216
+ "chainId": 97,
217
+ "blockexplorerUrl": "https://testnet.bscscan.com",
218
+ "rpcBaseUrl": "https://rpc.ankr.com/bsc_testnet_chapel",
219
+ "rpcBaseUrlWss": "wss://rpc.ankr.com/bsc_testnet_chapel/ws",
220
+ "targetConfirmations": 10,
221
+ "accounting": {
222
+ "funding_wallet": "0xF84a78E56fBACAADd73E59eDAe02b3b80e4966C8",
223
+ "treasury_receiver": "0xaD372aCDd0F14A9430Af29DaEc8229A9F109d7F5",
224
+ "overflow_treasury_receiver": "0xF84a78E56fBACAADd73E59eDAe02b3b80e4966C8",
225
+ "overflow_threshold_decimal": 100000,
226
+ "min_funding_wallet_balance_usd": 5,
227
+ "allowed_receivers": [
228
+ "0xaD372aCDd0F14A9430Af29DaEc8229A9F109d7F5"
229
+ ]
230
+ },
231
+ "custodialAlchemyWebhooks": [
232
+ {
233
+ "chainId": "97",
234
+ "network_symbol": "bnb",
235
+ "network": "BNB_TESTNET",
236
+ "total_wallet_count": 10,
237
+ "endpoint": "webhook/alchemy/address-activity-bnb",
238
+ "source": "wallet"
239
+ }
240
+ ],
241
+ "quicknodeNotificationConfig": [
242
+ {
243
+ "name": "qn-custodial-webhook-bsc-dev",
244
+ "network": "bnbchain-testnet",
245
+ "template": "evmWalletFilter"
246
+ }
247
+ ],
248
+ "contracts": [
249
+ {
250
+ "type": "Escrow",
251
+ "version": "1",
252
+ "startingBlock": 45852351,
253
+ "escrowAlchemyWebhooks": [
254
+ {
255
+ "chainId": "97",
256
+ "network_symbol": "bnb",
257
+ "network": "BNB_TESTNET",
258
+ "type": "GRAPHQL",
259
+ "endpoint": "webhook/alchemy/escrow-events",
260
+ "source": "contract"
261
+ }
262
+ ],
263
+ "addresses": [
264
+ "0xaD372aCDd0F14A9430Af29DaEc8229A9F109d7F5"
265
+ ]
266
+ },
267
+ {
268
+ "type": "Erc20",
269
+ "version": "1",
270
+ "startingBlock": 0,
271
+ "escrowAlchemyWebhooks": [],
272
+ "addresses": [
273
+ "0x24607248E7F55B28548971B75A64d74515b49584"
274
+ ]
275
+ }
276
+ ],
277
+ "paymentTokens": [
278
+ {
279
+ "name": "Binance",
280
+ "symbol": "BNB",
281
+ "token_standard": "BEP-20",
282
+ "type": "native",
283
+ "isStableCoin": false,
284
+ "decimals": 18,
285
+ "address": "0x0000000000000000000000000000000000000000",
286
+ "sweepThreshold": 0.015,
287
+ "sweepWalletMinBalance": 0.0015,
288
+ "recommendedMinBalanceFundingWallet": 0.1,
289
+ "recommendedMinBalanceEscrow": 1,
290
+ "recommendedMinBalanceRentEnergy": 0
291
+ },
292
+ {
293
+ "name": "Tether Token",
294
+ "symbol": "USDT",
295
+ "token_standard": "BEP-20",
296
+ "type": "erc20",
297
+ "decimals": 6,
298
+ "isStableCoin": true,
299
+ "address": "0x24607248E7F55B28548971B75A64d74515b49584",
300
+ "sweepThreshold": 10,
301
+ "sweepWalletMinBalance": 0.1,
302
+ "recommendedMinBalanceFundingWallet": 0,
303
+ "recommendedMinBalanceEscrow": 100,
304
+ "recommendedMinBalanceRentEnergy": 0
305
+ }
306
+ ]
307
+ },
308
+ "4002": {
309
+ "status": false,
310
+ "isTestnet": true,
311
+ "name": "Fantom Testnet",
312
+ "blockchainType": "evm",
313
+ "chainId": 4002,
314
+ "blockexplorerUrl": "https://testnet.ftmscan.com",
315
+ "rpcBaseUrl": "https://rpc.ankr.com/fantom_testnet",
316
+ "rpcBaseUrlWss": "wss://rpc.ankr.com/fantom_testnet/ws",
317
+ "targetConfirmations": 10,
318
+ "custodialAlchemyWebhooks": [
319
+ {
320
+ "chainId": "4002",
321
+ "network_symbol": "ftm",
322
+ "network": "FANTOM_TESTNET",
323
+ "total_wallet_count": 10,
324
+ "endpoint": "webhook/alchemy/address-activity-ftm",
325
+ "source": "wallet"
326
+ }
327
+ ],
328
+ "contracts": [
329
+ {
330
+ "type": "Escrow",
331
+ "version": "1",
332
+ "startingBlock": 30221979,
333
+ "escrowAlchemyWebhooks": [
334
+ {
335
+ "chainId": "4002",
336
+ "network_symbol": "ftm",
337
+ "network": "FANTOM_TESTNET",
338
+ "type": "GRAPHQL",
339
+ "endpoint": "webhook/alchemy/escrow-events",
340
+ "source": "contract"
341
+ }
342
+ ],
343
+ "addresses": [
344
+ "0x6dD60D70cBE16047F7F4bbcA7d0E7bBf92E1cA3c"
345
+ ]
346
+ },
347
+ {
348
+ "type": "Erc20",
349
+ "version": "1",
350
+ "startingBlock": 0,
351
+ "escrowAlchemyWebhooks": [],
352
+ "addresses": [
353
+ "0x00E15B31f48aC6DB632aABf5B656e118b31b1BeB"
354
+ ]
355
+ }
356
+ ],
357
+ "paymentTokens": [
358
+ {
359
+ "name": "Fantom",
360
+ "symbol": "FTM",
361
+ "token_standard": "FTM",
362
+ "type": "native",
363
+ "decimals": 18,
364
+ "address": "0x0000000000000000000000000000000000000000",
365
+ "sweepThreshold": 0.1,
366
+ "sweepWalletMinBalance": 0.01,
367
+ "recommendedMinBalanceFundingWallet": 10,
368
+ "recommendedMinBalanceEscrow": 100,
369
+ "recommendedMinBalanceRentEnergy": 0
370
+ },
371
+ {
372
+ "name": "Tether Token",
373
+ "symbol": "USDT",
374
+ "token_standard": "FTM",
375
+ "type": "erc20",
376
+ "decimals": 6,
377
+ "address": "0x00E15B31f48aC6DB632aABf5B656e118b31b1BeB",
378
+ "sweepThreshold": 10,
379
+ "sweepWalletMinBalance": 0.1,
380
+ "recommendedMinBalanceFundingWallet": 0,
381
+ "recommendedMinBalanceEscrow": 100,
382
+ "recommendedMinBalanceRentEnergy": 0
383
+ }
384
+ ]
385
+ },
386
+ "43113": {
387
+ "status": true,
388
+ "isTestnet": true,
389
+ "name": "Avalanche Testnet",
390
+ "blockchainType": "evm",
391
+ "chainId": 43113,
392
+ "blockexplorerUrl": "https://testnet.snowtrace.io",
393
+ "rpcBaseUrl": "https://rpc.ankr.com/avalanche_fuji",
394
+ "rpcBaseUrlWss": "wss://rpc.ankr.com/avalanche_fuji/ws",
395
+ "targetConfirmations": 10,
396
+ "accounting": {
397
+ "funding_wallet": "0xF84a78E56fBACAADd73E59eDAe02b3b80e4966C8",
398
+ "treasury_receiver": "0x89DecB6b265D7714A69EE05E3Bc50Fd829D7Ef90",
399
+ "overflow_treasury_receiver": "0xF84a78E56fBACAADd73E59eDAe02b3b80e4966C8",
400
+ "overflow_threshold_decimal": 100000,
401
+ "min_funding_wallet_balance_usd": 5,
402
+ "allowed_receivers": [
403
+ "0x89DecB6b265D7714A69EE05E3Bc50Fd829D7Ef90"
404
+ ]
405
+ },
406
+ "custodialAlchemyWebhooks": [
407
+ {
408
+ "chainId": "43113",
409
+ "network_symbol": "avax",
410
+ "network": "AVAX_FUJI",
411
+ "total_wallet_count": 10,
412
+ "endpoint": "webhook/alchemy/address-activity-avax",
413
+ "source": "wallet"
414
+ }
415
+ ],
416
+ "quicknodeNotificationConfig": [
417
+ {
418
+ "name": "qn-custodial-webhook-avax-dev",
419
+ "network": "avalanche-fuji",
420
+ "template": "evmWalletFilter"
421
+ }
422
+ ],
423
+ "contracts": [
424
+ {
425
+ "type": "Escrow",
426
+ "version": "1",
427
+ "startingBlock": 36790396,
428
+ "escrowAlchemyWebhooks": [
429
+ {
430
+ "chainId": "43113",
431
+ "network_symbol": "avax",
432
+ "network": "AVAX_FUJI",
433
+ "type": "GRAPHQL",
434
+ "endpoint": "webhook/alchemy/escrow-events",
435
+ "source": "contract"
436
+ }
437
+ ],
438
+ "addresses": [
439
+ "0x89DecB6b265D7714A69EE05E3Bc50Fd829D7Ef90"
440
+ ]
441
+ },
442
+ {
443
+ "type": "Erc20",
444
+ "version": "1",
445
+ "startingBlock": 0,
446
+ "escrowAlchemyWebhooks": [],
447
+ "addresses": [
448
+ "0x6F8cCEFD7Ba389713C3DCFA6C145f2d4fC2731a9"
449
+ ]
450
+ }
451
+ ],
452
+ "paymentTokens": [
453
+ {
454
+ "name": "Avalanche",
455
+ "symbol": "AVAX",
456
+ "token_standard": "AVAXC",
457
+ "type": "native",
458
+ "isStableCoin": false,
459
+ "decimals": 18,
460
+ "address": "0x0000000000000000000000000000000000000000",
461
+ "sweepThreshold": 0.1,
462
+ "sweepWalletMinBalance": 0.01,
463
+ "recommendedMinBalanceFundingWallet": 3,
464
+ "recommendedMinBalanceEscrow": 50,
465
+ "recommendedMinBalanceRentEnergy": 0
466
+ },
467
+ {
468
+ "name": "Tether Token",
469
+ "symbol": "USDT",
470
+ "token_standard": "AVAXC",
471
+ "type": "erc20",
472
+ "isStableCoin": true,
473
+ "decimals": 6,
474
+ "address": "0x6F8cCEFD7Ba389713C3DCFA6C145f2d4fC2731a9",
475
+ "sweepThreshold": 10,
476
+ "sweepWalletMinBalance": 0.1,
477
+ "recommendedMinBalanceFundingWallet": 0,
478
+ "recommendedMinBalanceEscrow": 100,
479
+ "recommendedMinBalanceRentEnergy": 0
480
+ }
481
+ ]
482
+ },
483
+ "200810": {
484
+ "status": false,
485
+ "isTestnet": true,
486
+ "name": "Bitlayer Testnet",
487
+ "blockchainType": "evm",
488
+ "chainId": 200810,
489
+ "blockexplorerUrl": "https://testnet-scan.bitlayer.org",
490
+ "rpcBaseUrl": "https://rpc.ankr.com/bitlayer_testnet",
491
+ "rpcBaseUrlWss": "wss://rpc.ankr.com/bitlayer_testnet/ws",
492
+ "targetConfirmations": 10,
493
+ "custodialAlchemyWebhooks": [],
494
+ "contracts": [],
495
+ "paymentTokens": []
496
+ },
497
+ "11155111": {
498
+ "status": true,
499
+ "isTestnet": true,
500
+ "name": "Sepolia Testnet",
501
+ "blockchainType": "evm",
502
+ "chainId": 11155111,
503
+ "blockexplorerUrl": "https://sepolia.etherscan.io",
504
+ "rpcBaseUrl": "https://rpc.ankr.com/eth_sepolia",
505
+ "rpcBaseUrlWss": "wss://rpc.ankr.com/eth_sepolia/ws",
506
+ "targetConfirmations": 10,
507
+ "accounting": {
508
+ "funding_wallet": "0xF84a78E56fBACAADd73E59eDAe02b3b80e4966C8",
509
+ "treasury_receiver": "0xEA8Ad078561B83724EEcDBb5b5A4f03369115Cf8",
510
+ "overflow_treasury_receiver": "0xF84a78E56fBACAADd73E59eDAe02b3b80e4966C8",
511
+ "overflow_threshold_decimal": 100000,
512
+ "min_funding_wallet_balance_usd": 5,
513
+ "allowed_receivers": [
514
+ "0xEA8Ad078561B83724EEcDBb5b5A4f03369115Cf8"
515
+ ]
516
+ },
517
+ "custodialAlchemyWebhooks": [
518
+ {
519
+ "chainId": "11155111",
520
+ "network_symbol": "eth",
521
+ "network": "ETH_SEPOLIA",
522
+ "total_wallet_count": 10,
523
+ "endpoint": "webhook/alchemy/address-activity-eth",
524
+ "source": "wallet"
525
+ }
526
+ ],
527
+ "quicknodeNotificationConfig": [
528
+ {
529
+ "name": "qn-custodial-webhook-eth-dev",
530
+ "network": "ethereum-sepolia",
531
+ "template": "evmWalletFilter"
532
+ }
533
+ ],
534
+ "contracts": [
535
+ {
536
+ "type": "Escrow",
537
+ "version": "1",
538
+ "startingBlock": 7130234,
539
+ "escrowAlchemyWebhooks": [
540
+ {
541
+ "chainId": "11155111",
542
+ "network_symbol": "eth",
543
+ "network": "ETH_SEPOLIA",
544
+ "type": "GRAPHQL",
545
+ "endpoint": "webhook/alchemy/escrow-events",
546
+ "source": "contract"
547
+ }
548
+ ],
549
+ "addresses": [
550
+ "0xEA8Ad078561B83724EEcDBb5b5A4f03369115Cf8"
551
+ ]
552
+ },
553
+ {
554
+ "type": "Erc20",
555
+ "version": "1",
556
+ "startingBlock": 0,
557
+ "escrowAlchemyWebhooks": [],
558
+ "addresses": [
559
+ "0xd36A20dB12953F0bf09C66B08c1771ae046D2152"
560
+ ]
561
+ }
562
+ ],
563
+ "paymentTokens": [
564
+ {
565
+ "name": "Ethereum",
566
+ "symbol": "ETH",
567
+ "token_standard": "ERC-20",
568
+ "type": "native",
569
+ "isStableCoin": false,
570
+ "decimals": 18,
571
+ "address": "0x0000000000000000000000000000000000000000",
572
+ "sweepThreshold": 0.00033,
573
+ "sweepWalletMinBalance": 0.001,
574
+ "recommendedMinBalanceFundingWallet": 0.05,
575
+ "recommendedMinBalanceEscrow": 0.5,
576
+ "recommendedMinBalanceRentEnergy": 0
577
+ },
578
+ {
579
+ "name": "Tether Token",
580
+ "symbol": "USDT",
581
+ "token_standard": "ERC-20",
582
+ "type": "erc20",
583
+ "isStableCoin": true,
584
+ "decimals": 6,
585
+ "address": "0xd36A20dB12953F0bf09C66B08c1771ae046D2152",
586
+ "sweepThreshold": 10,
587
+ "sweepWalletMinBalance": 0.1,
588
+ "recommendedMinBalanceFundingWallet": 0,
589
+ "recommendedMinBalanceEscrow": 100,
590
+ "recommendedMinBalanceRentEnergy": 0
591
+ }
592
+ ]
593
+ },
594
+ "80002": {
595
+ "status": true,
596
+ "isTestnet": true,
597
+ "name": "Polygon Amoy",
598
+ "blockchainType": "evm",
599
+ "chainId": 80002,
600
+ "blockexplorerUrl": "https://amoy.polygonscan.com",
601
+ "rpcBaseUrl": "https://rpc.ankr.com/polygon_amoy",
602
+ "rpcBaseUrlWss": "wss://rpc.ankr.com/polygon_amoy/ws",
603
+ "targetConfirmations": 10,
604
+ "accounting": {
605
+ "funding_wallet": "0xF84a78E56fBACAADd73E59eDAe02b3b80e4966C8",
606
+ "treasury_receiver": "0x69E1F9316E03Da502B52f4682b0349d36CFBfFfD",
607
+ "overflow_treasury_receiver": "0xF84a78E56fBACAADd73E59eDAe02b3b80e4966C8",
608
+ "overflow_threshold_decimal": 100000,
609
+ "min_funding_wallet_balance_usd": 1,
610
+ "allowed_receivers": [
611
+ "0x69E1F9316E03Da502B52f4682b0349d36CFBfFfD"
612
+ ]
613
+ },
614
+ "custodialAlchemyWebhooks": [
615
+ {
616
+ "chainId": "80002",
617
+ "network_symbol": "pol",
618
+ "network": "MATIC_AMOY",
619
+ "total_wallet_count": 10,
620
+ "endpoint": "webhook/alchemy/address-activity-pol",
621
+ "source": "wallet"
622
+ }
623
+ ],
624
+ "quicknodeNotificationConfig": [
625
+ {
626
+ "name": "qn-custodial-webhook-pol-dev",
627
+ "network": "polygon-amoy",
628
+ "template": "evmWalletFilter"
629
+ }
630
+ ],
631
+ "contracts": [
632
+ {
633
+ "type": "Escrow",
634
+ "version": "1",
635
+ "startingBlock": 14742924,
636
+ "escrowAlchemyWebhooks": [
637
+ {
638
+ "chainId": "80002",
639
+ "network_symbol": "pol",
640
+ "network": "MATIC_AMOY",
641
+ "type": "GRAPHQL",
642
+ "endpoint": "webhook/alchemy/escrow-events",
643
+ "source": "contract"
644
+ }
645
+ ],
646
+ "addresses": [
647
+ "0x69E1F9316E03Da502B52f4682b0349d36CFBfFfD"
648
+ ]
649
+ },
650
+ {
651
+ "type": "Erc20",
652
+ "version": "1",
653
+ "startingBlock": 0,
654
+ "addresses": [
655
+ "0x6F8cCEFD7Ba389713C3DCFA6C145f2d4fC2731a9"
656
+ ]
657
+ }
658
+ ],
659
+ "paymentTokens": [
660
+ {
661
+ "name": "Amoy",
662
+ "symbol": "MATIC",
663
+ "token_standard": "MATIC",
664
+ "type": "native",
665
+ "decimals": 18,
666
+ "isStableCoin": false,
667
+ "address": "0x0000000000000000000000000000000000000000",
668
+ "sweepThreshold": 10,
669
+ "sweepWalletMinBalance": 0.01,
670
+ "recommendedMinBalanceFundingWallet": 100,
671
+ "recommendedMinBalanceEscrow": 1000,
672
+ "recommendedMinBalanceRentEnergy": 0
673
+ },
674
+ {
675
+ "name": "Tether Token",
676
+ "symbol": "USDT",
677
+ "token_standard": "MATIC",
678
+ "type": "erc20",
679
+ "decimals": 6,
680
+ "isStableCoin": true,
681
+ "address": "0x6F8cCEFD7Ba389713C3DCFA6C145f2d4fC2731a9",
682
+ "sweepThreshold": 10,
683
+ "sweepWalletMinBalance": 0.1,
684
+ "recommendedMinBalanceFundingWallet": 0,
685
+ "recommendedMinBalanceEscrow": 100,
686
+ "recommendedMinBalanceRentEnergy": 0
687
+ }
688
+ ]
689
+ },
690
+ "10143": {
691
+ "status": true,
692
+ "isTestnet": true,
693
+ "name": "Monad Testnet",
694
+ "blockchainType": "evm",
695
+ "chainId": 10143,
696
+ "blockexplorerUrl": "https://testnet.monadscan.com",
697
+ "rpcBaseUrl": "https://rpc.ankr.com/monad_testnet",
698
+ "rpcBaseUrlWss": "wss://rpc.ankr.com/monad_testnet/ws",
699
+ "targetConfirmations": 10,
700
+ "accounting": {
701
+ "funding_wallet": "0xF84a78E56fBACAADd73E59eDAe02b3b80e4966C8",
702
+ "treasury_receiver": "0xf4BE5695F5eCd281171ab625ceb59bEee081e14f",
703
+ "overflow_treasury_receiver": "0xF84a78E56fBACAADd73E59eDAe02b3b80e4966C8",
704
+ "overflow_threshold_decimal": 100000,
705
+ "min_funding_wallet_balance_usd": 0.5,
706
+ "allowed_receivers": [
707
+ "0xf4BE5695F5eCd281171ab625ceb59bEee081e14f"
708
+ ]
709
+ },
710
+ "custodialAlchemyWebhooks": [
711
+ {
712
+ "chainId": "10143",
713
+ "network_symbol": "mon",
714
+ "network": "MONAD_TESTNET",
715
+ "total_wallet_count": 10,
716
+ "endpoint": "webhook/alchemy/address-activity-mon",
717
+ "source": "wallet"
718
+ }
719
+ ],
720
+ "quicknodeNotificationConfig": [
721
+ {
722
+ "name": "escrow-mon-dev",
723
+ "network": "monad-testnet",
724
+ "template": "evmWalletFilter",
725
+ "source": "contract",
726
+ "chain_id": 10143
727
+ },
728
+ {
729
+ "name": "qn-custodial-webhook-mon-dev",
730
+ "network": "monad-testnet",
731
+ "template": "evmWalletFilter"
732
+ }
733
+ ],
734
+ "contracts": [
735
+ {
736
+ "type": "Escrow",
737
+ "version": "1",
738
+ "startingBlock": 56193231,
739
+ "escrowAlchemyWebhooks": [
740
+ {
741
+ "chainId": "10143",
742
+ "network_symbol": "mon",
743
+ "network": "MONAD_TESTNET",
744
+ "type": "GRAPHQL",
745
+ "endpoint": "webhook/alchemy/escrow-events",
746
+ "source": "contract"
747
+ }
748
+ ],
749
+ "addresses": [
750
+ "0xf4BE5695F5eCd281171ab625ceb59bEee081e14f"
751
+ ]
752
+ },
753
+ {
754
+ "type": "Erc20",
755
+ "version": "1",
756
+ "startingBlock": 56194507,
757
+ "addresses": [
758
+ "0xc60f378d2C9Cc06c4830B788976bc1003d5159fe"
759
+ ]
760
+ }
761
+ ],
762
+ "paymentTokens": [
763
+ {
764
+ "name": "Monad",
765
+ "symbol": "MON",
766
+ "token_standard": "ERC-20",
767
+ "type": "native",
768
+ "isStableCoin": false,
769
+ "decimals": 18,
770
+ "address": "0x0000000000000000000000000000000000000000",
771
+ "sweepThreshold": 10,
772
+ "sweepWalletMinBalance": 0.1,
773
+ "recommendedMinBalanceFundingWallet": 50,
774
+ "recommendedMinBalanceEscrow": 500,
775
+ "recommendedMinBalanceRentEnergy": 0
776
+ },
777
+ {
778
+ "name": "Tether Token",
779
+ "symbol": "USDT",
780
+ "token_standard": "ERC-20",
781
+ "isStableCoin": true,
782
+ "type": "erc20",
783
+ "decimals": 6,
784
+ "address": "0xc60f378d2C9Cc06c4830B788976bc1003d5159fe",
785
+ "sweepThreshold": 10,
786
+ "sweepWalletMinBalance": 0.1,
787
+ "recommendedMinBalanceFundingWallet": 0,
788
+ "recommendedMinBalanceEscrow": 100,
789
+ "recommendedMinBalanceRentEnergy": 0
790
+ }
791
+ ]
792
+ }
793
+ }