@ercworldio/blockchain-shared 1.0.0-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 (680) hide show
  1. package/README.md +1 -0
  2. package/build/chains/ChainDefinition.d.ts +2 -0
  3. package/build/chains/ChainDefinition.d.ts.map +1 -0
  4. package/build/chains/ChainDefinition.js +84 -0
  5. package/build/chains/Provider.d.ts +20 -0
  6. package/build/chains/Provider.d.ts.map +1 -0
  7. package/build/chains/Provider.js +85 -0
  8. package/build/chains/RPC.d.ts +34 -0
  9. package/build/chains/RPC.d.ts.map +1 -0
  10. package/build/chains/RPC.js +147 -0
  11. package/build/chains/chain_to_ticker.json +28 -0
  12. package/build/chains/chains.json +513 -0
  13. package/build/chains/chains_stg-bu.json +513 -0
  14. package/build/chains/chains_v2.json +494 -0
  15. package/build/chains/escrow-contracts/10143.json +8 -0
  16. package/build/chains/escrow-contracts/97.json +8 -0
  17. package/build/chains/event_listener_config_escrows.json +699 -0
  18. package/build/chains/networks_dev.json +669 -0
  19. package/build/chains/networks_prod-bu.json +568 -0
  20. package/build/chains/networks_prod-dz.json +510 -0
  21. package/build/chains/networks_prod.json +553 -0
  22. package/build/chains/networks_stg-bu.json +568 -0
  23. package/build/chains/networks_stg-dz.json +451 -0
  24. package/build/chains/networks_stg.json +541 -0
  25. package/build/chains/networks_stg_drizzle.json +130 -0
  26. package/build/chains/rpcs.d.ts +30 -0
  27. package/build/chains/rpcs.d.ts.map +1 -0
  28. package/build/chains/rpcs.js +138 -0
  29. package/build/constants.d.ts +34 -0
  30. package/build/constants.d.ts.map +1 -0
  31. package/build/constants.js +40 -0
  32. package/build/contracts/Escrow.d.ts +162 -0
  33. package/build/contracts/Escrow.d.ts.map +1 -0
  34. package/build/contracts/Escrow.js +359 -0
  35. package/build/contracts/EscrowErrors.d.ts +75 -0
  36. package/build/contracts/EscrowErrors.d.ts.map +1 -0
  37. package/build/contracts/EscrowErrors.js +47 -0
  38. package/build/contracts/artifacts/ERC20Mock.json +344 -0
  39. package/build/contracts/artifacts/Erc20.json +344 -0
  40. package/build/contracts/artifacts/ErrorAbi.json +1847 -0
  41. package/build/contracts/artifacts/Escrow.json +1545 -0
  42. package/build/contracts/contract-events/AccessControlEvents.d.ts +51 -0
  43. package/build/contracts/contract-events/AccessControlEvents.d.ts.map +1 -0
  44. package/build/contracts/contract-events/AccessControlEvents.js +83 -0
  45. package/build/contracts/contract-events/CoverageInfo.d.ts +16 -0
  46. package/build/contracts/contract-events/CoverageInfo.d.ts.map +1 -0
  47. package/build/contracts/contract-events/CoverageInfo.js +135 -0
  48. package/build/contracts/contract-events/Erc20Events.d.ts +23 -0
  49. package/build/contracts/contract-events/Erc20Events.d.ts.map +1 -0
  50. package/build/contracts/contract-events/Erc20Events.js +52 -0
  51. package/build/contracts/contract-events/EscrowEvents.d.ts +64 -0
  52. package/build/contracts/contract-events/EscrowEvents.d.ts.map +1 -0
  53. package/build/contracts/contract-events/EscrowEvents.js +142 -0
  54. package/build/contracts/contract-events/types/AccessControlEvents.d.ts +9 -0
  55. package/build/contracts/contract-events/types/AccessControlEvents.d.ts.map +1 -0
  56. package/build/contracts/contract-events/types/AccessControlEvents.js +2 -0
  57. package/build/contracts/contract-events/types/events.d.ts +24 -0
  58. package/build/contracts/contract-events/types/events.d.ts.map +1 -0
  59. package/build/contracts/contract-events/types/events.js +2 -0
  60. package/build/contracts/deployment/avalanche/contracts.json +37 -0
  61. package/build/contracts/deployment/bitlayer/contracts.json +50 -0
  62. package/build/contracts/deployment/bsc/contracts.json +62 -0
  63. package/build/contracts/deployment/config.d.ts +4 -0
  64. package/build/contracts/deployment/config.d.ts.map +1 -0
  65. package/build/contracts/deployment/config.js +19 -0
  66. package/build/contracts/deployment/fantom/contracts.json +61 -0
  67. package/build/contracts/deployment/mumbai/contracts.json +43 -0
  68. package/build/contracts/deployment/polygon/contracts.json +43 -0
  69. package/build/contracts/deployment/sepolia/contracts.json +62 -0
  70. package/build/contracts/typechain-types/@openzeppelin/contracts/access/AccessControl.d.ts +160 -0
  71. package/build/contracts/typechain-types/@openzeppelin/contracts/access/AccessControl.d.ts.map +1 -0
  72. package/build/contracts/typechain-types/@openzeppelin/contracts/access/AccessControl.js +2 -0
  73. package/build/contracts/typechain-types/@openzeppelin/contracts/access/IAccessControl.d.ts +148 -0
  74. package/build/contracts/typechain-types/@openzeppelin/contracts/access/IAccessControl.d.ts.map +1 -0
  75. package/build/contracts/typechain-types/@openzeppelin/contracts/access/IAccessControl.js +2 -0
  76. package/build/contracts/typechain-types/@openzeppelin/contracts/access/Ownable.d.ts +55 -0
  77. package/build/contracts/typechain-types/@openzeppelin/contracts/access/Ownable.d.ts.map +1 -0
  78. package/build/contracts/typechain-types/@openzeppelin/contracts/access/Ownable.js +2 -0
  79. package/build/contracts/typechain-types/@openzeppelin/contracts/access/index.d.ts +4 -0
  80. package/build/contracts/typechain-types/@openzeppelin/contracts/access/index.d.ts.map +1 -0
  81. package/build/contracts/typechain-types/@openzeppelin/contracts/access/index.js +2 -0
  82. package/build/contracts/typechain-types/@openzeppelin/contracts/index.d.ts +9 -0
  83. package/build/contracts/typechain-types/@openzeppelin/contracts/index.d.ts.map +1 -0
  84. package/build/contracts/typechain-types/@openzeppelin/contracts/index.js +2 -0
  85. package/build/contracts/typechain-types/@openzeppelin/contracts/interfaces/IERC5267.d.ts +79 -0
  86. package/build/contracts/typechain-types/@openzeppelin/contracts/interfaces/IERC5267.d.ts.map +1 -0
  87. package/build/contracts/typechain-types/@openzeppelin/contracts/interfaces/IERC5267.js +2 -0
  88. package/build/contracts/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC1155Errors.d.ts +21 -0
  89. package/build/contracts/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC1155Errors.d.ts.map +1 -0
  90. package/build/contracts/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC1155Errors.js +2 -0
  91. package/build/contracts/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC20Errors.d.ts +21 -0
  92. package/build/contracts/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC20Errors.d.ts.map +1 -0
  93. package/build/contracts/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC20Errors.js +2 -0
  94. package/build/contracts/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC721Errors.d.ts +21 -0
  95. package/build/contracts/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC721Errors.d.ts.map +1 -0
  96. package/build/contracts/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC721Errors.js +2 -0
  97. package/build/contracts/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/index.d.ts +4 -0
  98. package/build/contracts/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/index.d.ts.map +1 -0
  99. package/build/contracts/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/index.js +2 -0
  100. package/build/contracts/typechain-types/@openzeppelin/contracts/interfaces/index.d.ts +4 -0
  101. package/build/contracts/typechain-types/@openzeppelin/contracts/interfaces/index.d.ts.map +1 -0
  102. package/build/contracts/typechain-types/@openzeppelin/contracts/interfaces/index.js +2 -0
  103. package/build/contracts/typechain-types/@openzeppelin/contracts/token/ERC20/ERC20.d.ts +142 -0
  104. package/build/contracts/typechain-types/@openzeppelin/contracts/token/ERC20/ERC20.d.ts.map +1 -0
  105. package/build/contracts/typechain-types/@openzeppelin/contracts/token/ERC20/ERC20.js +2 -0
  106. package/build/contracts/typechain-types/@openzeppelin/contracts/token/ERC20/IERC20.d.ts +130 -0
  107. package/build/contracts/typechain-types/@openzeppelin/contracts/token/ERC20/IERC20.d.ts.map +1 -0
  108. package/build/contracts/typechain-types/@openzeppelin/contracts/token/ERC20/IERC20.js +2 -0
  109. package/build/contracts/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.d.ts +142 -0
  110. package/build/contracts/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.d.ts.map +1 -0
  111. package/build/contracts/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.js +2 -0
  112. package/build/contracts/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts +2 -0
  113. package/build/contracts/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts.map +1 -0
  114. package/build/contracts/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/index.js +2 -0
  115. package/build/contracts/typechain-types/@openzeppelin/contracts/token/ERC20/index.d.ts +5 -0
  116. package/build/contracts/typechain-types/@openzeppelin/contracts/token/ERC20/index.d.ts.map +1 -0
  117. package/build/contracts/typechain-types/@openzeppelin/contracts/token/ERC20/index.js +2 -0
  118. package/build/contracts/typechain-types/@openzeppelin/contracts/token/index.d.ts +3 -0
  119. package/build/contracts/typechain-types/@openzeppelin/contracts/token/index.d.ts.map +1 -0
  120. package/build/contracts/typechain-types/@openzeppelin/contracts/token/index.js +2 -0
  121. package/build/contracts/typechain-types/@openzeppelin/contracts/utils/ShortStrings.d.ts +21 -0
  122. package/build/contracts/typechain-types/@openzeppelin/contracts/utils/ShortStrings.d.ts.map +1 -0
  123. package/build/contracts/typechain-types/@openzeppelin/contracts/utils/ShortStrings.js +2 -0
  124. package/build/contracts/typechain-types/@openzeppelin/contracts/utils/Strings.d.ts +21 -0
  125. package/build/contracts/typechain-types/@openzeppelin/contracts/utils/Strings.d.ts.map +1 -0
  126. package/build/contracts/typechain-types/@openzeppelin/contracts/utils/Strings.js +2 -0
  127. package/build/contracts/typechain-types/@openzeppelin/contracts/utils/cryptography/EIP712.d.ts +79 -0
  128. package/build/contracts/typechain-types/@openzeppelin/contracts/utils/cryptography/EIP712.d.ts.map +1 -0
  129. package/build/contracts/typechain-types/@openzeppelin/contracts/utils/cryptography/EIP712.js +2 -0
  130. package/build/contracts/typechain-types/@openzeppelin/contracts/utils/cryptography/index.d.ts +2 -0
  131. package/build/contracts/typechain-types/@openzeppelin/contracts/utils/cryptography/index.d.ts.map +1 -0
  132. package/build/contracts/typechain-types/@openzeppelin/contracts/utils/cryptography/index.js +2 -0
  133. package/build/contracts/typechain-types/@openzeppelin/contracts/utils/index.d.ts +9 -0
  134. package/build/contracts/typechain-types/@openzeppelin/contracts/utils/index.d.ts.map +1 -0
  135. package/build/contracts/typechain-types/@openzeppelin/contracts/utils/index.js +2 -0
  136. package/build/contracts/typechain-types/@openzeppelin/contracts/utils/introspection/ERC165.d.ts +30 -0
  137. package/build/contracts/typechain-types/@openzeppelin/contracts/utils/introspection/ERC165.d.ts.map +1 -0
  138. package/build/contracts/typechain-types/@openzeppelin/contracts/utils/introspection/ERC165.js +2 -0
  139. package/build/contracts/typechain-types/@openzeppelin/contracts/utils/introspection/IERC165.d.ts +30 -0
  140. package/build/contracts/typechain-types/@openzeppelin/contracts/utils/introspection/IERC165.d.ts.map +1 -0
  141. package/build/contracts/typechain-types/@openzeppelin/contracts/utils/introspection/IERC165.js +2 -0
  142. package/build/contracts/typechain-types/@openzeppelin/contracts/utils/introspection/index.d.ts +3 -0
  143. package/build/contracts/typechain-types/@openzeppelin/contracts/utils/introspection/index.d.ts.map +1 -0
  144. package/build/contracts/typechain-types/@openzeppelin/contracts/utils/introspection/index.js +2 -0
  145. package/build/contracts/typechain-types/@openzeppelin/contracts/utils/math/SafeCast.d.ts +21 -0
  146. package/build/contracts/typechain-types/@openzeppelin/contracts/utils/math/SafeCast.d.ts.map +1 -0
  147. package/build/contracts/typechain-types/@openzeppelin/contracts/utils/math/SafeCast.js +2 -0
  148. package/build/contracts/typechain-types/@openzeppelin/contracts/utils/math/index.d.ts +2 -0
  149. package/build/contracts/typechain-types/@openzeppelin/contracts/utils/math/index.d.ts.map +1 -0
  150. package/build/contracts/typechain-types/@openzeppelin/contracts/utils/math/index.js +2 -0
  151. package/build/contracts/typechain-types/@openzeppelin/contracts-upgradeable/index.d.ts +3 -0
  152. package/build/contracts/typechain-types/@openzeppelin/contracts-upgradeable/index.d.ts.map +1 -0
  153. package/build/contracts/typechain-types/@openzeppelin/contracts-upgradeable/index.js +2 -0
  154. package/build/contracts/typechain-types/@openzeppelin/contracts-upgradeable/proxy/index.d.ts +3 -0
  155. package/build/contracts/typechain-types/@openzeppelin/contracts-upgradeable/proxy/index.d.ts.map +1 -0
  156. package/build/contracts/typechain-types/@openzeppelin/contracts-upgradeable/proxy/index.js +2 -0
  157. package/build/contracts/typechain-types/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.d.ts +37 -0
  158. package/build/contracts/typechain-types/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.d.ts.map +1 -0
  159. package/build/contracts/typechain-types/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.js +2 -0
  160. package/build/contracts/typechain-types/@openzeppelin/contracts-upgradeable/proxy/utils/index.d.ts +2 -0
  161. package/build/contracts/typechain-types/@openzeppelin/contracts-upgradeable/proxy/utils/index.d.ts.map +1 -0
  162. package/build/contracts/typechain-types/@openzeppelin/contracts-upgradeable/proxy/utils/index.js +2 -0
  163. package/build/contracts/typechain-types/@openzeppelin/index.d.ts +5 -0
  164. package/build/contracts/typechain-types/@openzeppelin/index.d.ts.map +1 -0
  165. package/build/contracts/typechain-types/@openzeppelin/index.js +2 -0
  166. package/build/contracts/typechain-types/common.d.ts +51 -0
  167. package/build/contracts/typechain-types/common.d.ts.map +1 -0
  168. package/build/contracts/typechain-types/common.js +2 -0
  169. package/build/contracts/typechain-types/contracts/escrow/Escrow.d.ts +856 -0
  170. package/build/contracts/typechain-types/contracts/escrow/Escrow.d.ts.map +1 -0
  171. package/build/contracts/typechain-types/contracts/escrow/Escrow.js +2 -0
  172. package/build/contracts/typechain-types/contracts/escrow/EscrowAccessControl.d.ts +218 -0
  173. package/build/contracts/typechain-types/contracts/escrow/EscrowAccessControl.d.ts.map +1 -0
  174. package/build/contracts/typechain-types/contracts/escrow/EscrowAccessControl.js +2 -0
  175. package/build/contracts/typechain-types/contracts/escrow/EscrowErrors.d.ts +21 -0
  176. package/build/contracts/typechain-types/contracts/escrow/EscrowErrors.d.ts.map +1 -0
  177. package/build/contracts/typechain-types/contracts/escrow/EscrowErrors.js +2 -0
  178. package/build/contracts/typechain-types/contracts/escrow/EscrowSignature.d.ts +120 -0
  179. package/build/contracts/typechain-types/contracts/escrow/EscrowSignature.d.ts.map +1 -0
  180. package/build/contracts/typechain-types/contracts/escrow/EscrowSignature.js +2 -0
  181. package/build/contracts/typechain-types/contracts/escrow/TokensWhitelist.d.ts +82 -0
  182. package/build/contracts/typechain-types/contracts/escrow/TokensWhitelist.d.ts.map +1 -0
  183. package/build/contracts/typechain-types/contracts/escrow/TokensWhitelist.js +2 -0
  184. package/build/contracts/typechain-types/contracts/escrow/index.d.ts +6 -0
  185. package/build/contracts/typechain-types/contracts/escrow/index.d.ts.map +1 -0
  186. package/build/contracts/typechain-types/contracts/escrow/index.js +2 -0
  187. package/build/contracts/typechain-types/contracts/index.d.ts +5 -0
  188. package/build/contracts/typechain-types/contracts/index.d.ts.map +1 -0
  189. package/build/contracts/typechain-types/contracts/index.js +2 -0
  190. package/build/contracts/typechain-types/contracts/mock/erc20/ERC20Mock.d.ts +146 -0
  191. package/build/contracts/typechain-types/contracts/mock/erc20/ERC20Mock.d.ts.map +1 -0
  192. package/build/contracts/typechain-types/contracts/mock/erc20/ERC20Mock.js +2 -0
  193. package/build/contracts/typechain-types/contracts/mock/erc20/index.d.ts +2 -0
  194. package/build/contracts/typechain-types/contracts/mock/erc20/index.d.ts.map +1 -0
  195. package/build/contracts/typechain-types/contracts/mock/erc20/index.js +2 -0
  196. package/build/contracts/typechain-types/contracts/mock/index.d.ts +3 -0
  197. package/build/contracts/typechain-types/contracts/mock/index.d.ts.map +1 -0
  198. package/build/contracts/typechain-types/contracts/mock/index.js +2 -0
  199. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/access/AccessControl__factory.d.ts +182 -0
  200. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/access/AccessControl__factory.d.ts.map +1 -0
  201. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/access/AccessControl__factory.js +244 -0
  202. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/access/IAccessControl__factory.d.ts +158 -0
  203. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/access/IAccessControl__factory.d.ts.map +1 -0
  204. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/access/IAccessControl__factory.js +212 -0
  205. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/access/Ownable__factory.d.ts +65 -0
  206. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/access/Ownable__factory.d.ts.map +1 -0
  207. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/access/Ownable__factory.js +93 -0
  208. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/access/index.d.ts +4 -0
  209. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/access/index.d.ts.map +1 -0
  210. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/access/index.js +12 -0
  211. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/index.d.ts +5 -0
  212. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/index.d.ts.map +1 -0
  213. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/index.js +43 -0
  214. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC5267__factory.d.ts +47 -0
  215. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC5267__factory.d.ts.map +1 -0
  216. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC5267__factory.js +68 -0
  217. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC1155Errors__factory.d.ts +84 -0
  218. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC1155Errors__factory.d.ts.map +1 -0
  219. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC1155Errors__factory.js +121 -0
  220. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC20Errors__factory.d.ts +72 -0
  221. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC20Errors__factory.d.ts.map +1 -0
  222. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC20Errors__factory.js +105 -0
  223. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC721Errors__factory.d.ts +84 -0
  224. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC721Errors__factory.d.ts.map +1 -0
  225. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC721Errors__factory.js +122 -0
  226. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/index.d.ts +4 -0
  227. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/index.d.ts.map +1 -0
  228. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/index.js +12 -0
  229. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/interfaces/index.d.ts +3 -0
  230. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/interfaces/index.d.ts.map +1 -0
  231. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/interfaces/index.js +42 -0
  232. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/token/ERC20/ERC20__factory.d.ts +242 -0
  233. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/token/ERC20/ERC20__factory.d.ts.map +1 -0
  234. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/token/ERC20/ERC20__factory.js +327 -0
  235. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/token/ERC20/IERC20__factory.d.ts +148 -0
  236. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/token/ERC20/IERC20__factory.d.ts.map +1 -0
  237. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/token/ERC20/IERC20__factory.js +202 -0
  238. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata__factory.d.ts +178 -0
  239. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata__factory.d.ts.map +1 -0
  240. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata__factory.js +241 -0
  241. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts +2 -0
  242. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts.map +1 -0
  243. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/index.js +8 -0
  244. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/token/ERC20/index.d.ts +4 -0
  245. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/token/ERC20/index.d.ts.map +1 -0
  246. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/token/ERC20/index.js +44 -0
  247. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/token/index.d.ts +2 -0
  248. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/token/index.d.ts.map +1 -0
  249. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/token/index.js +40 -0
  250. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/utils/ShortStrings__factory.d.ts +35 -0
  251. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/utils/ShortStrings__factory.d.ts.map +1 -0
  252. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/utils/ShortStrings__factory.js +55 -0
  253. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/utils/Strings__factory.d.ts +43 -0
  254. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/utils/Strings__factory.d.ts.map +1 -0
  255. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/utils/Strings__factory.js +65 -0
  256. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/EIP712__factory.d.ts +59 -0
  257. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/EIP712__factory.d.ts.map +1 -0
  258. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/EIP712__factory.js +84 -0
  259. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/index.d.ts +2 -0
  260. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/index.d.ts.map +1 -0
  261. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/index.js +8 -0
  262. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/utils/index.d.ts +6 -0
  263. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/utils/index.d.ts.map +1 -0
  264. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/utils/index.js +46 -0
  265. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/utils/introspection/ERC165__factory.d.ts +22 -0
  266. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/utils/introspection/ERC165__factory.d.ts.map +1 -0
  267. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/utils/introspection/ERC165__factory.js +38 -0
  268. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/utils/introspection/IERC165__factory.d.ts +22 -0
  269. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/utils/introspection/IERC165__factory.d.ts.map +1 -0
  270. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/utils/introspection/IERC165__factory.js +38 -0
  271. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/utils/introspection/index.d.ts +3 -0
  272. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/utils/introspection/index.d.ts.map +1 -0
  273. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/utils/introspection/index.js +10 -0
  274. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/utils/math/SafeCast__factory.d.ts +63 -0
  275. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/utils/math/SafeCast__factory.d.ts.map +1 -0
  276. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/utils/math/SafeCast__factory.js +93 -0
  277. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/utils/math/index.d.ts +2 -0
  278. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/utils/math/index.d.ts.map +1 -0
  279. package/build/contracts/typechain-types/factories/@openzeppelin/contracts/utils/math/index.js +8 -0
  280. package/build/contracts/typechain-types/factories/@openzeppelin/contracts-upgradeable/index.d.ts +2 -0
  281. package/build/contracts/typechain-types/factories/@openzeppelin/contracts-upgradeable/index.d.ts.map +1 -0
  282. package/build/contracts/typechain-types/factories/@openzeppelin/contracts-upgradeable/index.js +40 -0
  283. package/build/contracts/typechain-types/factories/@openzeppelin/contracts-upgradeable/proxy/index.d.ts +2 -0
  284. package/build/contracts/typechain-types/factories/@openzeppelin/contracts-upgradeable/proxy/index.d.ts.map +1 -0
  285. package/build/contracts/typechain-types/factories/@openzeppelin/contracts-upgradeable/proxy/index.js +40 -0
  286. package/build/contracts/typechain-types/factories/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable__factory.d.ts +26 -0
  287. package/build/contracts/typechain-types/factories/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable__factory.d.ts.map +1 -0
  288. package/build/contracts/typechain-types/factories/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable__factory.js +42 -0
  289. package/build/contracts/typechain-types/factories/@openzeppelin/contracts-upgradeable/proxy/utils/index.d.ts +2 -0
  290. package/build/contracts/typechain-types/factories/@openzeppelin/contracts-upgradeable/proxy/utils/index.d.ts.map +1 -0
  291. package/build/contracts/typechain-types/factories/@openzeppelin/contracts-upgradeable/proxy/utils/index.js +8 -0
  292. package/build/contracts/typechain-types/factories/@openzeppelin/index.d.ts +3 -0
  293. package/build/contracts/typechain-types/factories/@openzeppelin/index.d.ts.map +1 -0
  294. package/build/contracts/typechain-types/factories/@openzeppelin/index.js +41 -0
  295. package/build/contracts/typechain-types/factories/contracts/escrow/EscrowAccessControl__factory.d.ts +415 -0
  296. package/build/contracts/typechain-types/factories/contracts/escrow/EscrowAccessControl__factory.d.ts.map +1 -0
  297. package/build/contracts/typechain-types/factories/contracts/escrow/EscrowAccessControl__factory.js +547 -0
  298. package/build/contracts/typechain-types/factories/contracts/escrow/EscrowErrors__factory.d.ts +151 -0
  299. package/build/contracts/typechain-types/factories/contracts/escrow/EscrowErrors__factory.d.ts.map +1 -0
  300. package/build/contracts/typechain-types/factories/contracts/escrow/EscrowErrors__factory.js +205 -0
  301. package/build/contracts/typechain-types/factories/contracts/escrow/EscrowSignature__factory.d.ts +151 -0
  302. package/build/contracts/typechain-types/factories/contracts/escrow/EscrowSignature__factory.d.ts.map +1 -0
  303. package/build/contracts/typechain-types/factories/contracts/escrow/EscrowSignature__factory.js +205 -0
  304. package/build/contracts/typechain-types/factories/contracts/escrow/Escrow__factory.d.ts +1217 -0
  305. package/build/contracts/typechain-types/factories/contracts/escrow/Escrow__factory.d.ts.map +1 -0
  306. package/build/contracts/typechain-types/factories/contracts/escrow/Escrow__factory.js +1582 -0
  307. package/build/contracts/typechain-types/factories/contracts/escrow/TokensWhitelist__factory.d.ts +99 -0
  308. package/build/contracts/typechain-types/factories/contracts/escrow/TokensWhitelist__factory.d.ts.map +1 -0
  309. package/build/contracts/typechain-types/factories/contracts/escrow/TokensWhitelist__factory.js +139 -0
  310. package/build/contracts/typechain-types/factories/contracts/escrow/index.d.ts +6 -0
  311. package/build/contracts/typechain-types/factories/contracts/escrow/index.d.ts.map +1 -0
  312. package/build/contracts/typechain-types/factories/contracts/escrow/index.js +16 -0
  313. package/build/contracts/typechain-types/factories/contracts/index.d.ts +3 -0
  314. package/build/contracts/typechain-types/factories/contracts/index.d.ts.map +1 -0
  315. package/build/contracts/typechain-types/factories/contracts/index.js +41 -0
  316. package/build/contracts/typechain-types/factories/contracts/mock/erc20/ERC20Mock__factory.d.ts +283 -0
  317. package/build/contracts/typechain-types/factories/contracts/mock/erc20/ERC20Mock__factory.d.ts.map +1 -0
  318. package/build/contracts/typechain-types/factories/contracts/mock/erc20/ERC20Mock__factory.js +381 -0
  319. package/build/contracts/typechain-types/factories/contracts/mock/erc20/index.d.ts +2 -0
  320. package/build/contracts/typechain-types/factories/contracts/mock/erc20/index.d.ts.map +1 -0
  321. package/build/contracts/typechain-types/factories/contracts/mock/erc20/index.js +8 -0
  322. package/build/contracts/typechain-types/factories/contracts/mock/index.d.ts +2 -0
  323. package/build/contracts/typechain-types/factories/contracts/mock/index.d.ts.map +1 -0
  324. package/build/contracts/typechain-types/factories/contracts/mock/index.js +40 -0
  325. package/build/contracts/typechain-types/factories/index.d.ts +3 -0
  326. package/build/contracts/typechain-types/factories/index.d.ts.map +1 -0
  327. package/build/contracts/typechain-types/factories/index.js +41 -0
  328. package/build/contracts/typechain-types/index.d.ts +52 -0
  329. package/build/contracts/typechain-types/index.d.ts.map +1 -0
  330. package/build/contracts/typechain-types/index.js +83 -0
  331. package/build/contracts/types/escrow.d.ts +42 -0
  332. package/build/contracts/types/escrow.d.ts.map +1 -0
  333. package/build/contracts/types/escrow.js +20 -0
  334. package/build/entities/Checkpoint.d.ts +11 -0
  335. package/build/entities/Checkpoint.d.ts.map +1 -0
  336. package/build/entities/Checkpoint.js +52 -0
  337. package/build/entities/ClaimHistory.d.ts +17 -0
  338. package/build/entities/ClaimHistory.d.ts.map +1 -0
  339. package/build/entities/ClaimHistory.js +73 -0
  340. package/build/entities/ClaimJob.d.ts +27 -0
  341. package/build/entities/ClaimJob.d.ts.map +1 -0
  342. package/build/entities/ClaimJob.js +113 -0
  343. package/build/entities/CryptoConfirmationLocks.d.ts +14 -0
  344. package/build/entities/CryptoConfirmationLocks.d.ts.map +1 -0
  345. package/build/entities/CryptoConfirmationLocks.js +65 -0
  346. package/build/entities/DepositAddress.d.ts +12 -0
  347. package/build/entities/DepositAddress.d.ts.map +1 -0
  348. package/build/entities/DepositAddress.js +56 -0
  349. package/build/entities/DepositWalletBalance.d.ts +16 -0
  350. package/build/entities/DepositWalletBalance.d.ts.map +1 -0
  351. package/build/entities/DepositWalletBalance.js +72 -0
  352. package/build/entities/SweepHistory.d.ts +16 -0
  353. package/build/entities/SweepHistory.d.ts.map +1 -0
  354. package/build/entities/SweepHistory.js +72 -0
  355. package/build/entities/SweepJob.d.ts +26 -0
  356. package/build/entities/SweepJob.d.ts.map +1 -0
  357. package/build/entities/SweepJob.js +116 -0
  358. package/build/entities/WalletIndex.d.ts +8 -0
  359. package/build/entities/WalletIndex.d.ts.map +1 -0
  360. package/build/entities/WalletIndex.js +40 -0
  361. package/build/errors/AdminErrors.d.ts +25 -0
  362. package/build/errors/AdminErrors.d.ts.map +1 -0
  363. package/build/errors/AdminErrors.js +45 -0
  364. package/build/errors/AlchemyErrors.d.ts +34 -0
  365. package/build/errors/AlchemyErrors.d.ts.map +1 -0
  366. package/build/errors/AlchemyErrors.js +79 -0
  367. package/build/errors/BalanceErrors.d.ts +23 -0
  368. package/build/errors/BalanceErrors.d.ts.map +1 -0
  369. package/build/errors/BalanceErrors.js +45 -0
  370. package/build/errors/DatabaseErrors.d.ts +25 -0
  371. package/build/errors/DatabaseErrors.d.ts.map +1 -0
  372. package/build/errors/DatabaseErrors.js +49 -0
  373. package/build/errors/TransactionsErrors.d.ts +37 -0
  374. package/build/errors/TransactionsErrors.d.ts.map +1 -0
  375. package/build/errors/TransactionsErrors.js +95 -0
  376. package/build/errors/VoltageErrors.d.ts +29 -0
  377. package/build/errors/VoltageErrors.d.ts.map +1 -0
  378. package/build/errors/VoltageErrors.js +69 -0
  379. package/build/errors/WalletErrors.d.ts +26 -0
  380. package/build/errors/WalletErrors.d.ts.map +1 -0
  381. package/build/errors/WalletErrors.js +55 -0
  382. package/build/errors/errors.d.ts +74 -0
  383. package/build/errors/errors.d.ts.map +1 -0
  384. package/build/errors/errors.js +117 -0
  385. package/build/errors/index.d.ts +81 -0
  386. package/build/errors/index.d.ts.map +1 -0
  387. package/build/errors/index.js +78 -0
  388. package/build/index.d.ts +95 -0
  389. package/build/index.d.ts.map +1 -0
  390. package/build/index.js +208 -0
  391. package/build/interfaces/config.d.ts +87 -0
  392. package/build/interfaces/config.d.ts.map +1 -0
  393. package/build/interfaces/config.js +7 -0
  394. package/build/interfaces/database.d.ts +29 -0
  395. package/build/interfaces/database.d.ts.map +1 -0
  396. package/build/interfaces/database.js +2 -0
  397. package/build/interfaces.d.ts +311 -0
  398. package/build/interfaces.d.ts.map +1 -0
  399. package/build/interfaces.js +12 -0
  400. package/build/services/AccountingService.d.ts +34 -0
  401. package/build/services/AccountingService.d.ts.map +1 -0
  402. package/build/services/AccountingService.js +239 -0
  403. package/build/services/AlchemyService.d.ts +47 -0
  404. package/build/services/AlchemyService.d.ts.map +1 -0
  405. package/build/services/AlchemyService.js +239 -0
  406. package/build/services/AlchemyWebhookSignature.d.ts +16 -0
  407. package/build/services/AlchemyWebhookSignature.d.ts.map +1 -0
  408. package/build/services/AlchemyWebhookSignature.js +119 -0
  409. package/build/services/AlchemyWebhooks.d.ts +87 -0
  410. package/build/services/AlchemyWebhooks.d.ts.map +1 -0
  411. package/build/services/AlchemyWebhooks.js +406 -0
  412. package/build/services/AsyncTTLCache.d.ts +12 -0
  413. package/build/services/AsyncTTLCache.d.ts.map +1 -0
  414. package/build/services/AsyncTTLCache.js +67 -0
  415. package/build/services/AzureEventHubHandler.d.ts +32 -0
  416. package/build/services/AzureEventHubHandler.d.ts.map +1 -0
  417. package/build/services/AzureEventHubHandler.js +139 -0
  418. package/build/services/BalanceService.d.ts +39 -0
  419. package/build/services/BalanceService.d.ts.map +1 -0
  420. package/build/services/BalanceService.js +482 -0
  421. package/build/services/ChainManager.d.ts +86 -0
  422. package/build/services/ChainManager.d.ts.map +1 -0
  423. package/build/services/ChainManager.js +442 -0
  424. package/build/services/ClaimHistoryService.d.ts +40 -0
  425. package/build/services/ClaimHistoryService.d.ts.map +1 -0
  426. package/build/services/ClaimHistoryService.js +121 -0
  427. package/build/services/ClaimJobService.d.ts +46 -0
  428. package/build/services/ClaimJobService.d.ts.map +1 -0
  429. package/build/services/ClaimJobService.js +407 -0
  430. package/build/services/CryptoConfirmationLocksService.d.ts +13 -0
  431. package/build/services/CryptoConfirmationLocksService.d.ts.map +1 -0
  432. package/build/services/CryptoConfirmationLocksService.js +46 -0
  433. package/build/services/CryptoKeysManager.d.ts +16 -0
  434. package/build/services/CryptoKeysManager.d.ts.map +1 -0
  435. package/build/services/CryptoKeysManager.js +136 -0
  436. package/build/services/DepositAddressService.d.ts +42 -0
  437. package/build/services/DepositAddressService.d.ts.map +1 -0
  438. package/build/services/DepositAddressService.js +275 -0
  439. package/build/services/ElasticSearch.d.ts +19 -0
  440. package/build/services/ElasticSearch.d.ts.map +1 -0
  441. package/build/services/ElasticSearch.js +104 -0
  442. package/build/services/EventsHandler.d.ts +11 -0
  443. package/build/services/EventsHandler.d.ts.map +1 -0
  444. package/build/services/EventsHandler.js +39 -0
  445. package/build/services/EventsService.d.ts +44 -0
  446. package/build/services/EventsService.d.ts.map +1 -0
  447. package/build/services/EventsService.js +234 -0
  448. package/build/services/InvoiceQueue.d.ts +56 -0
  449. package/build/services/InvoiceQueue.d.ts.map +1 -0
  450. package/build/services/InvoiceQueue.js +297 -0
  451. package/build/services/KeyVaultService.d.ts +14 -0
  452. package/build/services/KeyVaultService.d.ts.map +1 -0
  453. package/build/services/KeyVaultService.js +65 -0
  454. package/build/services/PriceCache.d.ts +19 -0
  455. package/build/services/PriceCache.d.ts.map +1 -0
  456. package/build/services/PriceCache.js +125 -0
  457. package/build/services/ProviderManager.d.ts +41 -0
  458. package/build/services/ProviderManager.d.ts.map +1 -0
  459. package/build/services/ProviderManager.js +111 -0
  460. package/build/services/QuicknodeWebhookSignature.d.ts +14 -0
  461. package/build/services/QuicknodeWebhookSignature.d.ts.map +1 -0
  462. package/build/services/QuicknodeWebhookSignature.js +119 -0
  463. package/build/services/Redis.d.ts +52 -0
  464. package/build/services/Redis.d.ts.map +1 -0
  465. package/build/services/Redis.js +364 -0
  466. package/build/services/RedisListQueue.d.ts +15 -0
  467. package/build/services/RedisListQueue.d.ts.map +1 -0
  468. package/build/services/RedisListQueue.js +87 -0
  469. package/build/services/RedisPubSub.d.ts +41 -0
  470. package/build/services/RedisPubSub.d.ts.map +1 -0
  471. package/build/services/RedisPubSub.js +254 -0
  472. package/build/services/RedisQueue.d.ts +18 -0
  473. package/build/services/RedisQueue.d.ts.map +1 -0
  474. package/build/services/RedisQueue.js +82 -0
  475. package/build/services/StorageService.d.ts +12 -0
  476. package/build/services/StorageService.d.ts.map +1 -0
  477. package/build/services/StorageService.js +92 -0
  478. package/build/services/SweepHistoryService.d.ts +15 -0
  479. package/build/services/SweepHistoryService.d.ts.map +1 -0
  480. package/build/services/SweepHistoryService.js +52 -0
  481. package/build/services/SweepJobService.d.ts +53 -0
  482. package/build/services/SweepJobService.d.ts.map +1 -0
  483. package/build/services/SweepJobService.js +725 -0
  484. package/build/services/TimerManager.d.ts +44 -0
  485. package/build/services/TimerManager.d.ts.map +1 -0
  486. package/build/services/TimerManager.js +239 -0
  487. package/build/services/WalletIndexService.d.ts +11 -0
  488. package/build/services/WalletIndexService.d.ts.map +1 -0
  489. package/build/services/WalletIndexService.js +73 -0
  490. package/build/services/WalletManager.d.ts +42 -0
  491. package/build/services/WalletManager.d.ts.map +1 -0
  492. package/build/services/WalletManager.js +359 -0
  493. package/build/services/WithdrawalManager.d.ts +51 -0
  494. package/build/services/WithdrawalManager.d.ts.map +1 -0
  495. package/build/services/WithdrawalManager.js +372 -0
  496. package/build/services/Worker.d.ts +25 -0
  497. package/build/services/Worker.d.ts.map +1 -0
  498. package/build/services/Worker.js +115 -0
  499. package/build/services/solana/escrow/SolanaEscrowAdmin.d.ts +102 -0
  500. package/build/services/solana/escrow/SolanaEscrowAdmin.d.ts.map +1 -0
  501. package/build/services/solana/escrow/SolanaEscrowAdmin.js +209 -0
  502. package/build/services/solana/escrow/SolanaEscrowInteraction.d.ts +50 -0
  503. package/build/services/solana/escrow/SolanaEscrowInteraction.d.ts.map +1 -0
  504. package/build/services/solana/escrow/SolanaEscrowInteraction.js +235 -0
  505. package/build/services/solana/escrow/idl/escrow.json +2941 -0
  506. package/build/services/solana/escrow/index.d.ts +5 -0
  507. package/build/services/solana/escrow/index.d.ts.map +1 -0
  508. package/build/services/solana/escrow/index.js +20 -0
  509. package/build/services/solana/escrow/services/Errors.d.ts +19 -0
  510. package/build/services/solana/escrow/services/Errors.d.ts.map +1 -0
  511. package/build/services/solana/escrow/services/Errors.js +29 -0
  512. package/build/services/solana/escrow/services/EscrowAdminUtility.d.ts +122 -0
  513. package/build/services/solana/escrow/services/EscrowAdminUtility.d.ts.map +1 -0
  514. package/build/services/solana/escrow/services/EscrowAdminUtility.js +665 -0
  515. package/build/services/solana/escrow/services/EscrowService.d.ts +15 -0
  516. package/build/services/solana/escrow/services/EscrowService.d.ts.map +1 -0
  517. package/build/services/solana/escrow/services/EscrowService.js +155 -0
  518. package/build/services/solana/escrow/services/EscrowUtility.d.ts +58 -0
  519. package/build/services/solana/escrow/services/EscrowUtility.d.ts.map +1 -0
  520. package/build/services/solana/escrow/services/EscrowUtility.js +318 -0
  521. package/build/services/solana/escrow/services/TokenAccountService.d.ts +10 -0
  522. package/build/services/solana/escrow/services/TokenAccountService.d.ts.map +1 -0
  523. package/build/services/solana/escrow/services/TokenAccountService.js +145 -0
  524. package/build/services/solana/escrow/services/TransactionsService.d.ts +12 -0
  525. package/build/services/solana/escrow/services/TransactionsService.d.ts.map +1 -0
  526. package/build/services/solana/escrow/services/TransactionsService.js +44 -0
  527. package/build/services/solana/escrow/services/index.d.ts +7 -0
  528. package/build/services/solana/escrow/services/index.d.ts.map +1 -0
  529. package/build/services/solana/escrow/services/index.js +22 -0
  530. package/build/services/solana/escrow/types/custom.d.ts +14 -0
  531. package/build/services/solana/escrow/types/custom.d.ts.map +1 -0
  532. package/build/services/solana/escrow/types/custom.js +2 -0
  533. package/build/services/solana/escrow/types/escrow.d.ts +2948 -0
  534. package/build/services/solana/escrow/types/escrow.d.ts.map +1 -0
  535. package/build/services/solana/escrow/types/escrow.js +2 -0
  536. package/build/services/solana/escrow/types/index.d.ts +3 -0
  537. package/build/services/solana/escrow/types/index.d.ts.map +1 -0
  538. package/build/services/solana/escrow/types/index.js +18 -0
  539. package/build/services/solana/escrow/types/types.d.ts +19 -0
  540. package/build/services/solana/escrow/types/types.d.ts.map +1 -0
  541. package/build/services/solana/escrow/types/types.js +2 -0
  542. package/build/services/solana/index.d.ts +2 -0
  543. package/build/services/solana/index.d.ts.map +1 -0
  544. package/build/services/solana/index.js +17 -0
  545. package/build/services/tron/index.d.ts +5 -0
  546. package/build/services/tron/index.d.ts.map +1 -0
  547. package/build/services/tron/index.js +21 -0
  548. package/build/services/tron/services/BitQueryQueue.d.ts +13 -0
  549. package/build/services/tron/services/BitQueryQueue.d.ts.map +1 -0
  550. package/build/services/tron/services/BitQueryQueue.js +22 -0
  551. package/build/services/tron/services/BitQuerySubscription.d.ts +5 -0
  552. package/build/services/tron/services/BitQuerySubscription.d.ts.map +1 -0
  553. package/build/services/tron/services/BitQuerySubscription.js +7 -0
  554. package/build/services/tron/services/Escrow.d.ts +1 -0
  555. package/build/services/tron/services/Escrow.d.ts.map +1 -0
  556. package/build/services/tron/services/Escrow.js +1 -0
  557. package/build/services/tron/services/Transactions.d.ts +33 -0
  558. package/build/services/tron/services/Transactions.d.ts.map +1 -0
  559. package/build/services/tron/services/Transactions.js +164 -0
  560. package/build/services/tron/services/TronCustodialWallet.d.ts +17 -0
  561. package/build/services/tron/services/TronCustodialWallet.d.ts.map +1 -0
  562. package/build/services/tron/services/TronCustodialWallet.js +46 -0
  563. package/build/services/tron/services/TronFundingWallet.d.ts +30 -0
  564. package/build/services/tron/services/TronFundingWallet.d.ts.map +1 -0
  565. package/build/services/tron/services/TronFundingWallet.js +57 -0
  566. package/build/services/tron/services/TronHelper.d.ts +11 -0
  567. package/build/services/tron/services/TronHelper.d.ts.map +1 -0
  568. package/build/services/tron/services/TronHelper.js +29 -0
  569. package/build/services/tron/services/TronHotWallet.d.ts +29 -0
  570. package/build/services/tron/services/TronHotWallet.d.ts.map +1 -0
  571. package/build/services/tron/services/TronHotWallet.js +168 -0
  572. package/build/services/tron/services/TronSigner.d.ts +12 -0
  573. package/build/services/tron/services/TronSigner.d.ts.map +1 -0
  574. package/build/services/tron/services/TronSigner.js +51 -0
  575. package/build/services/tron/services/TronWallet.d.ts +32 -0
  576. package/build/services/tron/services/TronWallet.d.ts.map +1 -0
  577. package/build/services/tron/services/TronWallet.js +110 -0
  578. package/build/services/tron/types/bitquery.d.ts +26 -0
  579. package/build/services/tron/types/bitquery.d.ts.map +1 -0
  580. package/build/services/tron/types/bitquery.js +3 -0
  581. package/build/services/tron/types/index.d.ts +3 -0
  582. package/build/services/tron/types/index.d.ts.map +1 -0
  583. package/build/services/tron/types/index.js +18 -0
  584. package/build/services/tron/types/transactions.d.ts +36 -0
  585. package/build/services/tron/types/transactions.d.ts.map +1 -0
  586. package/build/services/tron/types/transactions.js +3 -0
  587. package/build/services/tron/types/tron_helper.d.ts +25 -0
  588. package/build/services/tron/types/tron_helper.d.ts.map +1 -0
  589. package/build/services/tron/types/tron_helper.js +3 -0
  590. package/build/services/types/RedisPubSub.d.ts +11 -0
  591. package/build/services/types/RedisPubSub.d.ts.map +1 -0
  592. package/build/services/types/RedisPubSub.js +15 -0
  593. package/build/services/types/accounting_service.d.ts +7 -0
  594. package/build/services/types/accounting_service.d.ts.map +1 -0
  595. package/build/services/types/accounting_service.js +2 -0
  596. package/build/services/types/alchemy.d.ts +243 -0
  597. package/build/services/types/alchemy.d.ts.map +1 -0
  598. package/build/services/types/alchemy.js +3 -0
  599. package/build/services/types/azure_event_hub_handler.d.ts +18 -0
  600. package/build/services/types/azure_event_hub_handler.d.ts.map +1 -0
  601. package/build/services/types/azure_event_hub_handler.js +20 -0
  602. package/build/services/types/balance_service.d.ts +10 -0
  603. package/build/services/types/balance_service.d.ts.map +1 -0
  604. package/build/services/types/balance_service.js +2 -0
  605. package/build/services/types/chain_manager.d.ts +49 -0
  606. package/build/services/types/chain_manager.d.ts.map +1 -0
  607. package/build/services/types/chain_manager.js +2 -0
  608. package/build/services/types/claim.d.ts +42 -0
  609. package/build/services/types/claim.d.ts.map +1 -0
  610. package/build/services/types/claim.js +2 -0
  611. package/build/services/types/claim_job_service.d.ts +54 -0
  612. package/build/services/types/claim_job_service.d.ts.map +1 -0
  613. package/build/services/types/claim_job_service.js +2 -0
  614. package/build/services/types/crypto_confirmation_locks_service.d.ts +6 -0
  615. package/build/services/types/crypto_confirmation_locks_service.d.ts.map +1 -0
  616. package/build/services/types/crypto_confirmation_locks_service.js +2 -0
  617. package/build/services/types/events_service.d.ts +57 -0
  618. package/build/services/types/events_service.d.ts.map +1 -0
  619. package/build/services/types/events_service.js +2 -0
  620. package/build/services/types/index.d.ts +16 -0
  621. package/build/services/types/index.d.ts.map +1 -0
  622. package/build/services/types/index.js +31 -0
  623. package/build/services/types/lightning.d.ts +129 -0
  624. package/build/services/types/lightning.d.ts.map +1 -0
  625. package/build/services/types/lightning.js +2 -0
  626. package/build/services/types/quicknode.d.ts +7 -0
  627. package/build/services/types/quicknode.d.ts.map +1 -0
  628. package/build/services/types/quicknode.js +2 -0
  629. package/build/services/types/sweep_job_service.d.ts +9 -0
  630. package/build/services/types/sweep_job_service.d.ts.map +1 -0
  631. package/build/services/types/sweep_job_service.js +3 -0
  632. package/build/services/types/timer_manager.d.ts +6 -0
  633. package/build/services/types/timer_manager.d.ts.map +1 -0
  634. package/build/services/types/timer_manager.js +2 -0
  635. package/build/services/types/wallet_manager.d.ts +36 -0
  636. package/build/services/types/wallet_manager.d.ts.map +1 -0
  637. package/build/services/types/wallet_manager.js +2 -0
  638. package/build/services/types/withdrawal.d.ts +48 -0
  639. package/build/services/types/withdrawal.d.ts.map +1 -0
  640. package/build/services/types/withdrawal.js +50 -0
  641. package/build/services/types/withdrawal_manager.d.ts +14 -0
  642. package/build/services/types/withdrawal_manager.d.ts.map +1 -0
  643. package/build/services/types/withdrawal_manager.js +2 -0
  644. package/build/services/utils/alchemy.d.ts +6 -0
  645. package/build/services/utils/alchemy.d.ts.map +1 -0
  646. package/build/services/utils/alchemy.js +155 -0
  647. package/build/services/utils/graphql.d.ts +2 -0
  648. package/build/services/utils/graphql.d.ts.map +1 -0
  649. package/build/services/utils/graphql.js +46 -0
  650. package/build/utils/AsyncRateLimiter.d.ts +23 -0
  651. package/build/utils/AsyncRateLimiter.d.ts.map +1 -0
  652. package/build/utils/AsyncRateLimiter.js +87 -0
  653. package/build/utils/AsyncTTLCache.d.ts +12 -0
  654. package/build/utils/AsyncTTLCache.d.ts.map +1 -0
  655. package/build/utils/AsyncTTLCache.js +69 -0
  656. package/build/utils/Logger.d.ts +67 -0
  657. package/build/utils/Logger.d.ts.map +1 -0
  658. package/build/utils/Logger.js +171 -0
  659. package/build/utils/MemoryMonitor.d.ts +12 -0
  660. package/build/utils/MemoryMonitor.d.ts.map +1 -0
  661. package/build/utils/MemoryMonitor.js +59 -0
  662. package/build/utils/Parsing.d.ts +13 -0
  663. package/build/utils/Parsing.d.ts.map +1 -0
  664. package/build/utils/Parsing.js +84 -0
  665. package/build/utils/RpcLimiter.d.ts +10 -0
  666. package/build/utils/RpcLimiter.d.ts.map +1 -0
  667. package/build/utils/RpcLimiter.js +28 -0
  668. package/build/utils/Utility.d.ts +23 -0
  669. package/build/utils/Utility.d.ts.map +1 -0
  670. package/build/utils/Utility.js +211 -0
  671. package/build/utils/Wallets.d.ts +4 -0
  672. package/build/utils/Wallets.d.ts.map +1 -0
  673. package/build/utils/Wallets.js +68 -0
  674. package/build/utils/custodial.d.ts +32 -0
  675. package/build/utils/custodial.d.ts.map +1 -0
  676. package/build/utils/custodial.js +291 -0
  677. package/build/utils/solana.d.ts +151 -0
  678. package/build/utils/solana.d.ts.map +1 -0
  679. package/build/utils/solana.js +674 -0
  680. package/package.json +107 -0
@@ -0,0 +1,669 @@
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
+ },
43
+ "accounting": {
44
+ "funding_wallet": "TN4tXH5F36BxWEe8UQuUeMr1EuPwJjNUFJ",
45
+ "treasury_receiver": "TN4tXH5F36BxWEe8UQuUeMr1EuPwJjNUFJ",
46
+ "overflow_treasury_receiver": "TCdE3ZGvBjUcqVCreT25SWwF36gkiLYTGD",
47
+ "overflow_threshold_decimal": 100000
48
+ },
49
+ "rpcBaseUrl": "https://api.nileex.io",
50
+ "rpcBaseUrlWss": "",
51
+ "targetConfirmations": 20,
52
+ "quicknodeStreams": [
53
+ {
54
+ "network": "tron-mainnet",
55
+ "dataset": "logs",
56
+ "name": "tron-custodial-transfers",
57
+ "listConfig": {
58
+ "key": "custodial-addresses"
59
+ }
60
+ }
61
+ ],
62
+ "custodialAlchemyWebhooks": [],
63
+ "contracts": [
64
+ {
65
+ "type": "Escrow",
66
+ "version": "1",
67
+ "startingBlock": 416497745,
68
+ "escrowAlchemyWebhooks": [],
69
+ "addresses": []
70
+ },
71
+ {
72
+ "type": "FundingWallet",
73
+ "version": "1",
74
+ "startingBlock": 45852351,
75
+ "escrowAlchemyWebhooks": [],
76
+ "addresses": [
77
+ "TN4tXH5F36BxWEe8UQuUeMr1EuPwJjNUFJ"
78
+ ]
79
+ }
80
+ ],
81
+ "paymentTokens": [
82
+ {
83
+ "name": "Tron",
84
+ "symbol": "TRX",
85
+ "token_standard": "TRX",
86
+ "type": "native",
87
+ "isStableCoin": false,
88
+ "decimals": 6,
89
+ "address": "0000000000000000000000000000000000000000",
90
+ "sweepThreshold": 10,
91
+ "sweepWalletMinBalance": 6
92
+ },
93
+ {
94
+ "name": "Tether Token",
95
+ "symbol": "USDT",
96
+ "token_standard": "TRC-20",
97
+ "type": "trc20",
98
+ "isStableCoin": true,
99
+ "decimals": 6,
100
+ "address": "TXYZopYRdj2D9XRtbG411XZZ3kM5VkAeBf",
101
+ "sweepThreshold": 1,
102
+ "sweepWalletMinBalance": 0.1
103
+ }
104
+ ]
105
+ },
106
+ "103": {
107
+ "status": true,
108
+ "isTestnet": true,
109
+ "name": "Solana Devnet",
110
+ "blockchainType": "solana",
111
+ "chainId": 103,
112
+ "blockexplorerUrl": "https://solscan.io/?cluster=devnet",
113
+ "rpcBaseUrl": "https://rpc.ankr.com/solana_devnet",
114
+ "rpcBaseUrlWss": "wss://rpc.ankr.com/solana_devnet/ws",
115
+ "targetConfirmations": 2,
116
+ "accounting": {
117
+ "funding_wallet": "GLfRJqsRtTNDVvYVccXrz8RCKNnad2hqQfgFaApAKXCq",
118
+ "treasury_receiver": "AAuFzrm6H4Vv7UyJi8R5Gsm4ixtR2yVmqzLmuyUTS5cu",
119
+ "overflow_treasury_receiver": "GLfRJqsRtTNDVvYVccXrz8RCKNnad2hqQfgFaApAKXCq",
120
+ "overflow_threshold_decimal": 100000
121
+ },
122
+ "custodialAlchemyWebhooks": [
123
+ {
124
+ "chainId": "103",
125
+ "network_symbol": "sol",
126
+ "network": "SOLANA_DEVNET",
127
+ "total_wallet_count": 10,
128
+ "endpoint": "webhook/alchemy/address-activity-sol",
129
+ "source": "wallet"
130
+ }
131
+ ],
132
+ "contracts": [
133
+ {
134
+ "type": "Escrow",
135
+ "version": "1",
136
+ "startingBlock": 416497745,
137
+ "escrowAlchemyWebhooks": [
138
+ {
139
+ "chainId": "103",
140
+ "network_symbol": "sol",
141
+ "network": "SOLANA_DEVNET",
142
+ "type": "ADDRESS_ACTIVITY",
143
+ "endpoint": "webhook/alchemy/solana/escrow-events",
144
+ "source": "contract"
145
+ }
146
+ ],
147
+ "addresses": [
148
+ "AAuFzrm6H4Vv7UyJi8R5Gsm4ixtR2yVmqzLmuyUTS5cu"
149
+ ]
150
+ },
151
+ {
152
+ "type": "FundingWallet",
153
+ "version": "1",
154
+ "startingBlock": 45852351,
155
+ "escrowAlchemyWebhooks": [],
156
+ "addresses": [
157
+ "GLfRJqsRtTNDVvYVccXrz8RCKNnad2hqQfgFaApAKXCq"
158
+ ]
159
+ }
160
+ ],
161
+ "paymentTokens": [
162
+ {
163
+ "name": "Solana",
164
+ "symbol": "SOL",
165
+ "token_standard": "SOL",
166
+ "type": "native",
167
+ "decimals": 9,
168
+ "address": "11111111111111111111111111111111",
169
+ "sweepThreshold": 0.05,
170
+ "sweepWalletMinBalance": 0.01
171
+ },
172
+ {
173
+ "name": "Circle Token",
174
+ "symbol": "USDC",
175
+ "token_standard": "SOL",
176
+ "type": "erc20",
177
+ "isStableCoin": true,
178
+ "decimals": 6,
179
+ "address": "4zMMC9srt5Ri5X14GAgXhaHii3GnPAEERYPJgZJDncDU",
180
+ "sweepThreshold": 1,
181
+ "sweepWalletMinBalance": 0.1
182
+ }
183
+ ]
184
+ },
185
+ "97": {
186
+ "status": true,
187
+ "isTestnet": true,
188
+ "name": "BSC Testnet",
189
+ "blockchainType": "evm",
190
+ "chainId": 97,
191
+ "blockexplorerUrl": "https://testnet.bscscan.com",
192
+ "rpcBaseUrl": "https://rpc.ankr.com/bsc_testnet_chapel",
193
+ "rpcBaseUrlWss": "wss://rpc.ankr.com/bsc_testnet_chapel/ws",
194
+ "targetConfirmations": 10,
195
+ "accounting": {
196
+ "funding_wallet": "0xF84a78E56fBACAADd73E59eDAe02b3b80e4966C8",
197
+ "treasury_receiver": "0xaD372aCDd0F14A9430Af29DaEc8229A9F109d7F5",
198
+ "overflow_treasury_receiver": "0xF84a78E56fBACAADd73E59eDAe02b3b80e4966C8",
199
+ "overflow_threshold_decimal": 100000
200
+ },
201
+ "custodialAlchemyWebhooks": [
202
+ {
203
+ "chainId": "97",
204
+ "network_symbol": "bnb",
205
+ "network": "BNB_TESTNET",
206
+ "total_wallet_count": 10,
207
+ "endpoint": "webhook/alchemy/address-activity-bnb",
208
+ "source": "wallet"
209
+ }
210
+ ],
211
+ "contracts": [
212
+ {
213
+ "type": "Escrow",
214
+ "version": "1",
215
+ "startingBlock": 45852351,
216
+ "escrowAlchemyWebhooks": [
217
+ {
218
+ "chainId": "97",
219
+ "network_symbol": "bnb",
220
+ "network": "BNB_TESTNET",
221
+ "type": "GRAPHQL",
222
+ "endpoint": "webhook/alchemy/escrow-events",
223
+ "source": "contract"
224
+ }
225
+ ],
226
+ "addresses": [
227
+ "0xaD372aCDd0F14A9430Af29DaEc8229A9F109d7F5"
228
+ ]
229
+ },
230
+ {
231
+ "type": "Erc20",
232
+ "version": "1",
233
+ "startingBlock": 0,
234
+ "escrowAlchemyWebhooks": [],
235
+ "addresses": [
236
+ "0x24607248E7F55B28548971B75A64d74515b49584"
237
+ ]
238
+ }
239
+ ],
240
+ "paymentTokens": [
241
+ {
242
+ "name": "Binance",
243
+ "symbol": "BNB",
244
+ "token_standard": "BEP-20",
245
+ "type": "native",
246
+ "isStableCoin": false,
247
+ "decimals": 18,
248
+ "address": "0x0000000000000000000000000000000000000000",
249
+ "sweepThreshold": 0.015,
250
+ "sweepWalletMinBalance": 0.0015
251
+ },
252
+ {
253
+ "name": "Tether Token",
254
+ "symbol": "USDT",
255
+ "token_standard": "BEP-20",
256
+ "type": "erc20",
257
+ "decimals": 6,
258
+ "isStableCoin": true,
259
+ "address": "0x24607248E7F55B28548971B75A64d74515b49584",
260
+ "sweepThreshold": 10,
261
+ "sweepWalletMinBalance": 0.1
262
+ }
263
+ ]
264
+ },
265
+ "4002": {
266
+ "status": false,
267
+ "isTestnet": true,
268
+ "name": "Fantom Testnet",
269
+ "blockchainType": "evm",
270
+ "chainId": 4002,
271
+ "blockexplorerUrl": "https://testnet.ftmscan.com",
272
+ "rpcBaseUrl": "https://rpc.ankr.com/fantom_testnet",
273
+ "rpcBaseUrlWss": "wss://rpc.ankr.com/fantom_testnet/ws",
274
+ "targetConfirmations": 10,
275
+ "custodialAlchemyWebhooks": [
276
+ {
277
+ "chainId": "4002",
278
+ "network_symbol": "ftm",
279
+ "network": "FANTOM_TESTNET",
280
+ "total_wallet_count": 10,
281
+ "endpoint": "webhook/alchemy/address-activity-ftm",
282
+ "source": "wallet"
283
+ }
284
+ ],
285
+ "contracts": [
286
+ {
287
+ "type": "Escrow",
288
+ "version": "1",
289
+ "startingBlock": 30221979,
290
+ "escrowAlchemyWebhooks": [
291
+ {
292
+ "chainId": "4002",
293
+ "network_symbol": "ftm",
294
+ "network": "FANTOM_TESTNET",
295
+ "type": "GRAPHQL",
296
+ "endpoint": "webhook/alchemy/escrow-events",
297
+ "source": "contract"
298
+ }
299
+ ],
300
+ "addresses": [
301
+ "0x6dD60D70cBE16047F7F4bbcA7d0E7bBf92E1cA3c"
302
+ ]
303
+ },
304
+ {
305
+ "type": "Erc20",
306
+ "version": "1",
307
+ "startingBlock": 0,
308
+ "escrowAlchemyWebhooks": [],
309
+ "addresses": [
310
+ "0x00E15B31f48aC6DB632aABf5B656e118b31b1BeB"
311
+ ]
312
+ }
313
+ ],
314
+ "paymentTokens": [
315
+ {
316
+ "name": "Fantom",
317
+ "symbol": "FTM",
318
+ "token_standard": "FTM",
319
+ "type": "native",
320
+ "decimals": 18,
321
+ "address": "0x0000000000000000000000000000000000000000",
322
+ "sweepThreshold": 0.1,
323
+ "sweepWalletMinBalance": 0.01
324
+ },
325
+ {
326
+ "name": "Tether Token",
327
+ "symbol": "USDT",
328
+ "token_standard": "FTM",
329
+ "type": "erc20",
330
+ "decimals": 6,
331
+ "address": "0x00E15B31f48aC6DB632aABf5B656e118b31b1BeB",
332
+ "sweepThreshold": 10,
333
+ "sweepWalletMinBalance": 0.1
334
+ }
335
+ ]
336
+ },
337
+ "43113": {
338
+ "status": true,
339
+ "isTestnet": true,
340
+ "name": "Avalanche Testnet",
341
+ "blockchainType": "evm",
342
+ "chainId": 43113,
343
+ "blockexplorerUrl": "https://testnet.snowtrace.io",
344
+ "rpcBaseUrl": "https://rpc.ankr.com/avalanche_fuji",
345
+ "rpcBaseUrlWss": "wss://rpc.ankr.com/avalanche_fuji/ws",
346
+ "targetConfirmations": 10,
347
+ "accounting": {
348
+ "funding_wallet": "0xF84a78E56fBACAADd73E59eDAe02b3b80e4966C8",
349
+ "treasury_receiver": "0x89DecB6b265D7714A69EE05E3Bc50Fd829D7Ef90",
350
+ "overflow_treasury_receiver": "0xF84a78E56fBACAADd73E59eDAe02b3b80e4966C8",
351
+ "overflow_threshold_decimal": 100000
352
+ },
353
+ "custodialAlchemyWebhooks": [
354
+ {
355
+ "chainId": "43113",
356
+ "network_symbol": "avax",
357
+ "network": "AVAX_FUJI",
358
+ "total_wallet_count": 10,
359
+ "endpoint": "webhook/alchemy/address-activity-avax",
360
+ "source": "wallet"
361
+ }
362
+ ],
363
+ "contracts": [
364
+ {
365
+ "type": "Escrow",
366
+ "version": "1",
367
+ "startingBlock": 36790396,
368
+ "escrowAlchemyWebhooks": [
369
+ {
370
+ "chainId": "43113",
371
+ "network_symbol": "avax",
372
+ "network": "AVAX_FUJI",
373
+ "type": "GRAPHQL",
374
+ "endpoint": "webhook/alchemy/escrow-events",
375
+ "source": "contract"
376
+ }
377
+ ],
378
+ "addresses": [
379
+ "0x89DecB6b265D7714A69EE05E3Bc50Fd829D7Ef90"
380
+ ]
381
+ },
382
+ {
383
+ "type": "Erc20",
384
+ "version": "1",
385
+ "startingBlock": 0,
386
+ "escrowAlchemyWebhooks": [],
387
+ "addresses": [
388
+ "0x6F8cCEFD7Ba389713C3DCFA6C145f2d4fC2731a9"
389
+ ]
390
+ }
391
+ ],
392
+ "paymentTokens": [
393
+ {
394
+ "name": "Avalanche",
395
+ "symbol": "AVAX",
396
+ "token_standard": "AVAXC",
397
+ "type": "native",
398
+ "isStableCoin": false,
399
+ "decimals": 18,
400
+ "address": "0x0000000000000000000000000000000000000000",
401
+ "sweepThreshold": 0.1,
402
+ "sweepWalletMinBalance": 0.01
403
+ },
404
+ {
405
+ "name": "Tether Token",
406
+ "symbol": "USDT",
407
+ "token_standard": "AVAXC",
408
+ "type": "erc20",
409
+ "isStableCoin": true,
410
+ "decimals": 6,
411
+ "address": "0x6F8cCEFD7Ba389713C3DCFA6C145f2d4fC2731a9",
412
+ "sweepThreshold": 10,
413
+ "sweepWalletMinBalance": 0.1
414
+ }
415
+ ]
416
+ },
417
+ "200810": {
418
+ "status": false,
419
+ "isTestnet": true,
420
+ "name": "Bitlayer Testnet",
421
+ "blockchainType": "evm",
422
+ "chainId": 200810,
423
+ "blockexplorerUrl": "https://testnet-scan.bitlayer.org",
424
+ "rpcBaseUrl": "https://rpc.ankr.com/bitlayer_testnet",
425
+ "rpcBaseUrlWss": "wss://rpc.ankr.com/bitlayer_testnet/ws",
426
+ "targetConfirmations": 10,
427
+ "custodialAlchemyWebhooks": [],
428
+ "contracts": [],
429
+ "paymentTokens": []
430
+ },
431
+ "11155111": {
432
+ "status": true,
433
+ "isTestnet": true,
434
+ "name": "Sepolia Testnet",
435
+ "blockchainType": "evm",
436
+ "chainId": 11155111,
437
+ "blockexplorerUrl": "https://sepolia.etherscan.io",
438
+ "rpcBaseUrl": "https://rpc.ankr.com/eth_sepolia",
439
+ "rpcBaseUrlWss": "wss://rpc.ankr.com/eth_sepolia/ws",
440
+ "targetConfirmations": 10,
441
+ "accounting": {
442
+ "funding_wallet": "0xF84a78E56fBACAADd73E59eDAe02b3b80e4966C8",
443
+ "treasury_receiver": "0xEA8Ad078561B83724EEcDBb5b5A4f03369115Cf8",
444
+ "overflow_treasury_receiver": "0xF84a78E56fBACAADd73E59eDAe02b3b80e4966C8",
445
+ "overflow_threshold_decimal": 100000
446
+ },
447
+ "custodialAlchemyWebhooks": [
448
+ {
449
+ "chainId": "11155111",
450
+ "network_symbol": "eth",
451
+ "network": "ETH_SEPOLIA",
452
+ "total_wallet_count": 10,
453
+ "endpoint": "webhook/alchemy/address-activity-eth",
454
+ "source": "wallet"
455
+ }
456
+ ],
457
+ "contracts": [
458
+ {
459
+ "type": "Escrow",
460
+ "version": "1",
461
+ "startingBlock": 7130234,
462
+ "escrowAlchemyWebhooks": [
463
+ {
464
+ "chainId": "11155111",
465
+ "network_symbol": "eth",
466
+ "network": "ETH_SEPOLIA",
467
+ "type": "GRAPHQL",
468
+ "endpoint": "webhook/alchemy/escrow-events",
469
+ "source": "contract"
470
+ }
471
+ ],
472
+ "addresses": [
473
+ "0xEA8Ad078561B83724EEcDBb5b5A4f03369115Cf8"
474
+ ]
475
+ },
476
+ {
477
+ "type": "Erc20",
478
+ "version": "1",
479
+ "startingBlock": 0,
480
+ "escrowAlchemyWebhooks": [],
481
+ "addresses": [
482
+ "0xd36A20dB12953F0bf09C66B08c1771ae046D2152"
483
+ ]
484
+ }
485
+ ],
486
+ "paymentTokens": [
487
+ {
488
+ "name": "Ethereum",
489
+ "symbol": "ETH",
490
+ "token_standard": "ERC-20",
491
+ "type": "native",
492
+ "isStableCoin": false,
493
+ "decimals": 18,
494
+ "address": "0x0000000000000000000000000000000000000000",
495
+ "sweepThreshold": 0.00033,
496
+ "sweepWalletMinBalance": 0.001
497
+ },
498
+ {
499
+ "name": "Tether Token",
500
+ "symbol": "USDT",
501
+ "token_standard": "ERC-20",
502
+ "type": "erc20",
503
+ "isStableCoin": true,
504
+ "decimals": 6,
505
+ "address": "0xd36A20dB12953F0bf09C66B08c1771ae046D2152",
506
+ "sweepThreshold": 10,
507
+ "sweepWalletMinBalance": 0.1
508
+ }
509
+ ]
510
+ },
511
+ "80002": {
512
+ "status": true,
513
+ "isTestnet": true,
514
+ "name": "Polygon Amoy",
515
+ "blockchainType": "evm",
516
+ "chainId": 80002,
517
+ "blockexplorerUrl": "https://amoy.polygonscan.com",
518
+ "rpcBaseUrl": "https://rpc.ankr.com/polygon_amoy",
519
+ "rpcBaseUrlWss": "wss://rpc.ankr.com/polygon_amoy/ws",
520
+ "targetConfirmations": 10,
521
+ "accounting": {
522
+ "funding_wallet": "0xF84a78E56fBACAADd73E59eDAe02b3b80e4966C8",
523
+ "treasury_receiver": "0x69E1F9316E03Da502B52f4682b0349d36CFBfFfD",
524
+ "overflow_treasury_receiver": "0xF84a78E56fBACAADd73E59eDAe02b3b80e4966C8",
525
+ "overflow_threshold_decimal": 100000
526
+ },
527
+ "custodialAlchemyWebhooks": [
528
+ {
529
+ "chainId": "80002",
530
+ "network_symbol": "pol",
531
+ "network": "MATIC_AMOY",
532
+ "total_wallet_count": 10,
533
+ "endpoint": "webhook/alchemy/address-activity-pol",
534
+ "source": "wallet"
535
+ }
536
+ ],
537
+ "contracts": [
538
+ {
539
+ "type": "Escrow",
540
+ "version": "1",
541
+ "startingBlock": 14742924,
542
+ "escrowAlchemyWebhooks": [
543
+ {
544
+ "chainId": "80002",
545
+ "network_symbol": "pol",
546
+ "network": "MATIC_AMOY",
547
+ "type": "GRAPHQL",
548
+ "endpoint": "webhook/alchemy/escrow-events",
549
+ "source": "contract"
550
+ }
551
+ ],
552
+ "addresses": [
553
+ "0x69E1F9316E03Da502B52f4682b0349d36CFBfFfD"
554
+ ]
555
+ },
556
+ {
557
+ "type": "Erc20",
558
+ "version": "1",
559
+ "startingBlock": 0,
560
+ "addresses": [
561
+ "0x6F8cCEFD7Ba389713C3DCFA6C145f2d4fC2731a9"
562
+ ]
563
+ }
564
+ ],
565
+ "paymentTokens": [
566
+ {
567
+ "name": "Amoy",
568
+ "symbol": "MATIC",
569
+ "token_standard": "MATIC",
570
+ "type": "native",
571
+ "decimals": 18,
572
+ "isStableCoin": false,
573
+ "address": "0x0000000000000000000000000000000000000000",
574
+ "sweepThreshold": 10,
575
+ "sweepWalletMinBalance": 0.01
576
+ },
577
+ {
578
+ "name": "Tether Token",
579
+ "symbol": "USDT",
580
+ "token_standard": "MATIC",
581
+ "type": "erc20",
582
+ "decimals": 6,
583
+ "isStableCoin": true,
584
+ "address": "0x6F8cCEFD7Ba389713C3DCFA6C145f2d4fC2731a9",
585
+ "sweepThreshold": 10,
586
+ "sweepWalletMinBalance": 0.1
587
+ }
588
+ ]
589
+ },
590
+ "10143": {
591
+ "status": true,
592
+ "isTestnet": true,
593
+ "name": "Monad Testnet",
594
+ "blockchainType": "evm",
595
+ "chainId": 10143,
596
+ "blockexplorerUrl": "https://testnet.monadscan.com",
597
+ "rpcBaseUrl": "https://rpc.ankr.com/monad_testnet",
598
+ "rpcBaseUrlWss": "wss://rpc.ankr.com/monad_testnet/ws",
599
+ "targetConfirmations": 10,
600
+ "accounting": {
601
+ "funding_wallet": "0xF84a78E56fBACAADd73E59eDAe02b3b80e4966C8",
602
+ "treasury_receiver": "0xf4BE5695F5eCd281171ab625ceb59bEee081e14f",
603
+ "overflow_treasury_receiver": "0xF84a78E56fBACAADd73E59eDAe02b3b80e4966C8",
604
+ "overflow_threshold_decimal": 100000
605
+ },
606
+ "custodialAlchemyWebhooks": [
607
+ {
608
+ "chainId": "10143",
609
+ "network_symbol": "mon",
610
+ "network": "MONAD_TESTNET",
611
+ "total_wallet_count": 10,
612
+ "endpoint": "webhook/alchemy/address-activity-mon",
613
+ "source": "wallet"
614
+ }
615
+ ],
616
+ "contracts": [
617
+ {
618
+ "type": "Escrow",
619
+ "version": "1",
620
+ "startingBlock": 56193231,
621
+ "escrowAlchemyWebhooks": [
622
+ {
623
+ "chainId": "10143",
624
+ "network_symbol": "mon",
625
+ "network": "MONAD_TESTNET",
626
+ "type": "GRAPHQL",
627
+ "endpoint": "webhook/alchemy/escrow-events",
628
+ "source": "contract"
629
+ }
630
+ ],
631
+ "addresses": [
632
+ "0xf4BE5695F5eCd281171ab625ceb59bEee081e14f"
633
+ ]
634
+ },
635
+ {
636
+ "type": "Erc20",
637
+ "version": "1",
638
+ "startingBlock": 56194507,
639
+ "addresses": [
640
+ "0xc60f378d2C9Cc06c4830B788976bc1003d5159fe"
641
+ ]
642
+ }
643
+ ],
644
+ "paymentTokens": [
645
+ {
646
+ "name": "Monad",
647
+ "symbol": "MON",
648
+ "token_standard": "ERC-20",
649
+ "type": "native",
650
+ "isStableCoin": false,
651
+ "decimals": 18,
652
+ "address": "0x0000000000000000000000000000000000000000",
653
+ "sweepThreshold": 10,
654
+ "sweepWalletMinBalance": 0.1
655
+ },
656
+ {
657
+ "name": "Tether Token",
658
+ "symbol": "USDT",
659
+ "token_standard": "ERC-20",
660
+ "isStableCoin": true,
661
+ "type": "erc20",
662
+ "decimals": 6,
663
+ "address": "0xc60f378d2C9Cc06c4830B788976bc1003d5159fe",
664
+ "sweepThreshold": 10,
665
+ "sweepWalletMinBalance": 0.1
666
+ }
667
+ ]
668
+ }
669
+ }