@0xtorch/core 0.0.36 → 0.0.38

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 (1682) hide show
  1. package/.DS_Store +0 -0
  2. package/_cjs/actions/action.js +117 -0
  3. package/_cjs/actions/action.js.map +1 -0
  4. package/_cjs/actions/actionTransferPattern.js +353 -0
  5. package/_cjs/actions/actionTransferPattern.js.map +1 -0
  6. package/_cjs/actions/index.js +19 -154
  7. package/_cjs/actions/index.js.map +1 -1
  8. package/_cjs/actions/logic/checkIfActionsIsValid/checkIfActionsHaveAllTransfers.js +32 -0
  9. package/_cjs/actions/logic/checkIfActionsIsValid/checkIfActionsHaveAllTransfers.js.map +1 -0
  10. package/_cjs/actions/logic/checkIfActionsIsValid/checkIfTransfersAreExactMatches.js +19 -0
  11. package/_cjs/actions/logic/checkIfActionsIsValid/checkIfTransfersAreExactMatches.js.map +1 -0
  12. package/_cjs/actions/logic/checkIfActionsIsValid/index.js +61 -0
  13. package/_cjs/actions/logic/checkIfActionsIsValid/index.js.map +1 -0
  14. package/_cjs/actions/logic/checkIfActionsIsValid/isMatchActionTransferPattern.js +11 -0
  15. package/_cjs/actions/logic/checkIfActionsIsValid/isMatchActionTransferPattern.js.map +1 -0
  16. package/_cjs/actions/logic/createGeneralActionsByTransfers.js +131 -0
  17. package/_cjs/actions/logic/createGeneralActionsByTransfers.js.map +1 -0
  18. package/_cjs/actions/logic/filterAvailableActionTypes.js +12 -0
  19. package/_cjs/actions/logic/filterAvailableActionTypes.js.map +1 -0
  20. package/_cjs/actions/logic/setActionPrices.js +98 -0
  21. package/_cjs/actions/logic/setActionPrices.js.map +1 -0
  22. package/_cjs/actions/transfer.js +18 -0
  23. package/_cjs/actions/transfer.js.map +1 -0
  24. package/_cjs/actions/utils/createActionTransferPatternCount.js +82 -0
  25. package/_cjs/actions/utils/createActionTransferPatternCount.js.map +1 -0
  26. package/_cjs/actions/utils/isMatchActionTransferPatternCount.js +106 -0
  27. package/_cjs/actions/utils/isMatchActionTransferPatternCount.js.map +1 -0
  28. package/_cjs/actions/utils/mergeSameAssetTransfers.js +65 -97
  29. package/_cjs/actions/utils/mergeSameAssetTransfers.js.map +1 -1
  30. package/_cjs/apps/schemas.js +2 -9
  31. package/_cjs/apps/schemas.js.map +1 -1
  32. package/_cjs/assets/definitions/astar.js +2 -5
  33. package/_cjs/assets/definitions/astar.js.map +1 -1
  34. package/_cjs/assets/definitions/avalanche.js +2 -5
  35. package/_cjs/assets/definitions/avalanche.js.map +1 -1
  36. package/_cjs/assets/definitions/bnb.js +2 -5
  37. package/_cjs/assets/definitions/bnb.js.map +1 -1
  38. package/_cjs/assets/definitions/ethereum.js +2 -5
  39. package/_cjs/assets/definitions/ethereum.js.map +1 -1
  40. package/_cjs/assets/definitions/eur.js +2 -3
  41. package/_cjs/assets/definitions/eur.js.map +1 -1
  42. package/_cjs/assets/definitions/fantom.js +2 -5
  43. package/_cjs/assets/definitions/fantom.js.map +1 -1
  44. package/_cjs/assets/definitions/jpy.js +2 -3
  45. package/_cjs/assets/definitions/jpy.js.map +1 -1
  46. package/_cjs/assets/definitions/kava.js +2 -5
  47. package/_cjs/assets/definitions/kava.js.map +1 -1
  48. package/_cjs/assets/definitions/mantle.js +2 -5
  49. package/_cjs/assets/definitions/mantle.js.map +1 -1
  50. package/_cjs/assets/definitions/maticNetwork.js +2 -5
  51. package/_cjs/assets/definitions/maticNetwork.js.map +1 -1
  52. package/_cjs/assets/definitions/metis.js +2 -5
  53. package/_cjs/assets/definitions/metis.js.map +1 -1
  54. package/_cjs/assets/definitions/moonbeam.js +2 -5
  55. package/_cjs/assets/definitions/moonbeam.js.map +1 -1
  56. package/_cjs/assets/definitions/moonriver.js +2 -5
  57. package/_cjs/assets/definitions/moonriver.js.map +1 -1
  58. package/_cjs/assets/definitions/oasys.js +2 -5
  59. package/_cjs/assets/definitions/oasys.js.map +1 -1
  60. package/_cjs/assets/definitions/ronin.js +2 -5
  61. package/_cjs/assets/definitions/ronin.js.map +1 -1
  62. package/_cjs/assets/definitions/solana.js +2 -5
  63. package/_cjs/assets/definitions/solana.js.map +1 -1
  64. package/_cjs/assets/definitions/usd.js +2 -3
  65. package/_cjs/assets/definitions/usd.js.map +1 -1
  66. package/_cjs/assets/index.js +39 -23
  67. package/_cjs/assets/index.js.map +1 -1
  68. package/_cjs/assets/schemas/cryptoCurrency.js +7 -20
  69. package/_cjs/assets/schemas/cryptoCurrency.js.map +1 -1
  70. package/_cjs/assets/schemas/fiatCurrency.js +2 -7
  71. package/_cjs/assets/schemas/fiatCurrency.js.map +1 -1
  72. package/_cjs/assets/schemas/nft.js +3 -12
  73. package/_cjs/assets/schemas/nft.js.map +1 -1
  74. package/_cjs/index.js +12 -112
  75. package/_cjs/index.js.map +1 -1
  76. package/_cjs/test.js +8 -0
  77. package/_cjs/test.js.map +1 -0
  78. package/_cjs/utils/errors.js +1 -1
  79. package/_cjs/utils/errors.js.map +1 -1
  80. package/_cjs/utils/schema.js +6 -1
  81. package/_cjs/utils/schema.js.map +1 -1
  82. package/_cjs/utils/stringify.js +21 -1
  83. package/_cjs/utils/stringify.js.map +1 -1
  84. package/_esm/actions/action.js +139 -0
  85. package/_esm/actions/action.js.map +1 -0
  86. package/_esm/actions/actionTransferPattern.js +366 -0
  87. package/_esm/actions/actionTransferPattern.js.map +1 -0
  88. package/_esm/actions/index.js +7 -8
  89. package/_esm/actions/index.js.map +1 -1
  90. package/_esm/actions/logic/checkIfActionsIsValid/checkIfActionsHaveAllTransfers.js +32 -0
  91. package/_esm/actions/logic/checkIfActionsIsValid/checkIfActionsHaveAllTransfers.js.map +1 -0
  92. package/_esm/actions/logic/checkIfActionsIsValid/checkIfTransfersAreExactMatches.js +15 -0
  93. package/_esm/actions/logic/checkIfActionsIsValid/checkIfTransfersAreExactMatches.js.map +1 -0
  94. package/_esm/actions/logic/checkIfActionsIsValid/index.js +68 -0
  95. package/_esm/actions/logic/checkIfActionsIsValid/index.js.map +1 -0
  96. package/_esm/actions/logic/checkIfActionsIsValid/isMatchActionTransferPattern.js +7 -0
  97. package/_esm/actions/logic/checkIfActionsIsValid/isMatchActionTransferPattern.js.map +1 -0
  98. package/_esm/actions/logic/createGeneralActionsByTransfers.js +137 -0
  99. package/_esm/actions/logic/createGeneralActionsByTransfers.js.map +1 -0
  100. package/_esm/actions/logic/filterAvailableActionTypes.js +8 -0
  101. package/_esm/actions/logic/filterAvailableActionTypes.js.map +1 -0
  102. package/_esm/actions/logic/setActionPrices.js +97 -0
  103. package/_esm/actions/logic/setActionPrices.js.map +1 -0
  104. package/_esm/actions/transfer.js +15 -0
  105. package/_esm/actions/transfer.js.map +1 -0
  106. package/_esm/actions/utils/createActionTransferPatternCount.js +79 -0
  107. package/_esm/actions/utils/createActionTransferPatternCount.js.map +1 -0
  108. package/_esm/actions/utils/isMatchActionTransferPatternCount.js +115 -0
  109. package/_esm/actions/utils/isMatchActionTransferPatternCount.js.map +1 -0
  110. package/_esm/actions/utils/mergeSameAssetTransfers.js +66 -105
  111. package/_esm/actions/utils/mergeSameAssetTransfers.js.map +1 -1
  112. package/_esm/apps/schemas.js +2 -9
  113. package/_esm/apps/schemas.js.map +1 -1
  114. package/_esm/assets/definitions/astar.js +1 -4
  115. package/_esm/assets/definitions/astar.js.map +1 -1
  116. package/_esm/assets/definitions/avalanche.js +1 -4
  117. package/_esm/assets/definitions/avalanche.js.map +1 -1
  118. package/_esm/assets/definitions/bnb.js +1 -4
  119. package/_esm/assets/definitions/bnb.js.map +1 -1
  120. package/_esm/assets/definitions/ethereum.js +1 -4
  121. package/_esm/assets/definitions/ethereum.js.map +1 -1
  122. package/_esm/assets/definitions/eur.js +1 -2
  123. package/_esm/assets/definitions/eur.js.map +1 -1
  124. package/_esm/assets/definitions/fantom.js +1 -4
  125. package/_esm/assets/definitions/fantom.js.map +1 -1
  126. package/_esm/assets/definitions/jpy.js +1 -2
  127. package/_esm/assets/definitions/jpy.js.map +1 -1
  128. package/_esm/assets/definitions/kava.js +1 -4
  129. package/_esm/assets/definitions/kava.js.map +1 -1
  130. package/_esm/assets/definitions/mantle.js +1 -4
  131. package/_esm/assets/definitions/mantle.js.map +1 -1
  132. package/_esm/assets/definitions/maticNetwork.js +1 -4
  133. package/_esm/assets/definitions/maticNetwork.js.map +1 -1
  134. package/_esm/assets/definitions/metis.js +1 -4
  135. package/_esm/assets/definitions/metis.js.map +1 -1
  136. package/_esm/assets/definitions/moonbeam.js +1 -4
  137. package/_esm/assets/definitions/moonbeam.js.map +1 -1
  138. package/_esm/assets/definitions/moonriver.js +1 -4
  139. package/_esm/assets/definitions/moonriver.js.map +1 -1
  140. package/_esm/assets/definitions/oasys.js +1 -4
  141. package/_esm/assets/definitions/oasys.js.map +1 -1
  142. package/_esm/assets/definitions/ronin.js +1 -4
  143. package/_esm/assets/definitions/ronin.js.map +1 -1
  144. package/_esm/assets/definitions/solana.js +1 -4
  145. package/_esm/assets/definitions/solana.js.map +1 -1
  146. package/_esm/assets/definitions/usd.js +1 -2
  147. package/_esm/assets/definitions/usd.js.map +1 -1
  148. package/_esm/assets/index.js +19 -2
  149. package/_esm/assets/index.js.map +1 -1
  150. package/_esm/assets/schemas/cryptoCurrency.js +7 -20
  151. package/_esm/assets/schemas/cryptoCurrency.js.map +1 -1
  152. package/_esm/assets/schemas/fiatCurrency.js +2 -7
  153. package/_esm/assets/schemas/fiatCurrency.js.map +1 -1
  154. package/_esm/assets/schemas/nft.js +3 -12
  155. package/_esm/assets/schemas/nft.js.map +1 -1
  156. package/_esm/index.js +2 -4
  157. package/_esm/index.js.map +1 -1
  158. package/_esm/test.js +5 -0
  159. package/_esm/test.js.map +1 -0
  160. package/_esm/utils/errors.js +1 -1
  161. package/_esm/utils/errors.js.map +1 -1
  162. package/_esm/utils/schema.js +5 -0
  163. package/_esm/utils/schema.js.map +1 -1
  164. package/_esm/utils/stringify.js +21 -1
  165. package/_esm/utils/stringify.js.map +1 -1
  166. package/_types/actions/action.d.ts +307 -0
  167. package/_types/actions/action.d.ts.map +1 -0
  168. package/_types/actions/actionTransferPattern.d.ts +40 -0
  169. package/_types/actions/actionTransferPattern.d.ts.map +1 -0
  170. package/_types/actions/index.d.ts +10 -9
  171. package/_types/actions/index.d.ts.map +1 -1
  172. package/_types/actions/logic/checkIfActionsIsValid/checkIfActionsHaveAllTransfers.d.ts +10 -0
  173. package/_types/actions/logic/checkIfActionsIsValid/checkIfActionsHaveAllTransfers.d.ts.map +1 -0
  174. package/_types/actions/logic/checkIfActionsIsValid/checkIfTransfersAreExactMatches.d.ts +3 -0
  175. package/_types/actions/logic/checkIfActionsIsValid/checkIfTransfersAreExactMatches.d.ts.map +1 -0
  176. package/_types/actions/logic/checkIfActionsIsValid/index.d.ts +10 -0
  177. package/_types/actions/logic/checkIfActionsIsValid/index.d.ts.map +1 -0
  178. package/_types/actions/logic/checkIfActionsIsValid/isMatchActionTransferPattern.d.ts +9 -0
  179. package/_types/actions/logic/checkIfActionsIsValid/isMatchActionTransferPattern.d.ts.map +1 -0
  180. package/_types/actions/logic/createGeneralActionsByTransfers.d.ts +11 -0
  181. package/_types/actions/logic/createGeneralActionsByTransfers.d.ts.map +1 -0
  182. package/_types/actions/logic/filterAvailableActionTypes.d.ts +4 -0
  183. package/_types/actions/logic/filterAvailableActionTypes.d.ts.map +1 -0
  184. package/_types/actions/logic/setActionPrices.d.ts +10 -0
  185. package/_types/actions/logic/setActionPrices.d.ts.map +1 -0
  186. package/_types/actions/transfer.d.ts +160 -0
  187. package/_types/actions/transfer.d.ts.map +1 -0
  188. package/_types/actions/utils/createActionTransferPatternCount.d.ts +4 -0
  189. package/_types/actions/utils/createActionTransferPatternCount.d.ts.map +1 -0
  190. package/_types/actions/utils/isMatchActionTransferPatternCount.d.ts +4 -0
  191. package/_types/actions/utils/isMatchActionTransferPatternCount.d.ts.map +1 -0
  192. package/_types/actions/utils/mergeSameAssetTransfers.d.ts +1 -1
  193. package/_types/actions/utils/mergeSameAssetTransfers.d.ts.map +1 -1
  194. package/_types/apps/schemas.d.ts +1 -15
  195. package/_types/apps/schemas.d.ts.map +1 -1
  196. package/_types/assets/definitions/astar.d.ts +0 -3
  197. package/_types/assets/definitions/astar.d.ts.map +1 -1
  198. package/_types/assets/definitions/avalanche.d.ts +0 -3
  199. package/_types/assets/definitions/avalanche.d.ts.map +1 -1
  200. package/_types/assets/definitions/bnb.d.ts +0 -3
  201. package/_types/assets/definitions/bnb.d.ts.map +1 -1
  202. package/_types/assets/definitions/ethereum.d.ts +0 -3
  203. package/_types/assets/definitions/ethereum.d.ts.map +1 -1
  204. package/_types/assets/definitions/eur.d.ts +0 -1
  205. package/_types/assets/definitions/eur.d.ts.map +1 -1
  206. package/_types/assets/definitions/fantom.d.ts +0 -3
  207. package/_types/assets/definitions/fantom.d.ts.map +1 -1
  208. package/_types/assets/definitions/jpy.d.ts +0 -1
  209. package/_types/assets/definitions/jpy.d.ts.map +1 -1
  210. package/_types/assets/definitions/kava.d.ts +0 -3
  211. package/_types/assets/definitions/kava.d.ts.map +1 -1
  212. package/_types/assets/definitions/mantle.d.ts +0 -3
  213. package/_types/assets/definitions/mantle.d.ts.map +1 -1
  214. package/_types/assets/definitions/maticNetwork.d.ts +0 -3
  215. package/_types/assets/definitions/maticNetwork.d.ts.map +1 -1
  216. package/_types/assets/definitions/metis.d.ts +0 -3
  217. package/_types/assets/definitions/metis.d.ts.map +1 -1
  218. package/_types/assets/definitions/moonbeam.d.ts +0 -3
  219. package/_types/assets/definitions/moonbeam.d.ts.map +1 -1
  220. package/_types/assets/definitions/moonriver.d.ts +0 -3
  221. package/_types/assets/definitions/moonriver.d.ts.map +1 -1
  222. package/_types/assets/definitions/oasys.d.ts +0 -3
  223. package/_types/assets/definitions/oasys.d.ts.map +1 -1
  224. package/_types/assets/definitions/ronin.d.ts +0 -3
  225. package/_types/assets/definitions/ronin.d.ts.map +1 -1
  226. package/_types/assets/definitions/solana.d.ts +0 -3
  227. package/_types/assets/definitions/solana.d.ts.map +1 -1
  228. package/_types/assets/definitions/usd.d.ts +0 -1
  229. package/_types/assets/definitions/usd.d.ts.map +1 -1
  230. package/_types/assets/index.d.ts +19 -2
  231. package/_types/assets/index.d.ts.map +1 -1
  232. package/_types/assets/schemas/asset.d.ts +15 -109
  233. package/_types/assets/schemas/asset.d.ts.map +1 -1
  234. package/_types/assets/schemas/cryptoCurrency.d.ts +13 -76
  235. package/_types/assets/schemas/cryptoCurrency.d.ts.map +1 -1
  236. package/_types/assets/schemas/fiatCurrency.d.ts +1 -13
  237. package/_types/assets/schemas/fiatCurrency.d.ts.map +1 -1
  238. package/_types/assets/schemas/nft.d.ts +1 -20
  239. package/_types/assets/schemas/nft.d.ts.map +1 -1
  240. package/_types/assets/types/dataSource.d.ts +0 -5
  241. package/_types/assets/types/dataSource.d.ts.map +1 -1
  242. package/_types/assets/types/index.d.ts +1 -1
  243. package/_types/assets/types/index.d.ts.map +1 -1
  244. package/_types/index.d.ts +3 -8
  245. package/_types/index.d.ts.map +1 -1
  246. package/_types/test.d.ts +5 -0
  247. package/_types/test.d.ts.map +1 -0
  248. package/_types/utils/schema.d.ts +1 -0
  249. package/_types/utils/schema.d.ts.map +1 -1
  250. package/_types/utils/stringify.d.ts.map +1 -1
  251. package/actions/.DS_Store +0 -0
  252. package/actions/action.ts +150 -0
  253. package/actions/actionTransferPattern.ts +406 -0
  254. package/actions/index.ts +18 -253
  255. package/actions/logic/checkIfActionsIsValid/checkIfActionsHaveAllTransfers.ts +54 -0
  256. package/actions/logic/checkIfActionsIsValid/checkIfTransfersAreExactMatches.ts +24 -0
  257. package/actions/logic/checkIfActionsIsValid/index.ts +93 -0
  258. package/actions/logic/checkIfActionsIsValid/isMatchActionTransferPattern.ts +17 -0
  259. package/actions/logic/createGeneralActionsByTransfers.ts +162 -0
  260. package/actions/logic/filterAvailableActionTypes.ts +13 -0
  261. package/actions/logic/setActionPrices.ts +148 -0
  262. package/actions/transfer.ts +20 -0
  263. package/actions/utils/createActionTransferPatternCount.ts +97 -0
  264. package/actions/utils/isMatchActionTransferPatternCount.ts +159 -0
  265. package/actions/utils/mergeSameAssetTransfers.ts +87 -129
  266. package/apps/schemas.ts +8 -15
  267. package/assets/.DS_Store +0 -0
  268. package/assets/definitions/astar.ts +1 -4
  269. package/assets/definitions/avalanche.ts +1 -4
  270. package/assets/definitions/bnb.ts +1 -4
  271. package/assets/definitions/ethereum.ts +1 -4
  272. package/assets/definitions/eur.ts +1 -2
  273. package/assets/definitions/fantom.ts +1 -4
  274. package/assets/definitions/jpy.ts +1 -2
  275. package/assets/definitions/kava.ts +1 -4
  276. package/assets/definitions/mantle.ts +1 -4
  277. package/assets/definitions/maticNetwork.ts +1 -4
  278. package/assets/definitions/metis.ts +1 -4
  279. package/assets/definitions/moonbeam.ts +1 -4
  280. package/assets/definitions/moonriver.ts +1 -4
  281. package/assets/definitions/oasys.ts +1 -4
  282. package/assets/definitions/ronin.ts +1 -4
  283. package/assets/definitions/solana.ts +1 -4
  284. package/assets/definitions/usd.ts +1 -2
  285. package/assets/index.ts +19 -21
  286. package/assets/schemas/cryptoCurrency.ts +14 -27
  287. package/assets/schemas/fiatCurrency.ts +7 -12
  288. package/assets/schemas/nft.ts +8 -17
  289. package/assets/types/dataSource.ts +0 -9
  290. package/assets/types/index.ts +0 -1
  291. package/index.ts +16 -213
  292. package/package.json +1 -1
  293. package/test.ts +7 -0
  294. package/utils/errors.ts +1 -1
  295. package/utils/schema.ts +6 -0
  296. package/utils/stringify.ts +23 -1
  297. package/_cjs/accounts/index.js +0 -3
  298. package/_cjs/accounts/index.js.map +0 -1
  299. package/_cjs/accounts/types/account.js +0 -3
  300. package/_cjs/accounts/types/account.js.map +0 -1
  301. package/_cjs/accounts/types/index.js +0 -3
  302. package/_cjs/accounts/types/index.js.map +0 -1
  303. package/_cjs/actions/parsers/action.js +0 -335
  304. package/_cjs/actions/parsers/action.js.map +0 -1
  305. package/_cjs/actions/parsers/borrow/borrow.js +0 -23
  306. package/_cjs/actions/parsers/borrow/borrow.js.map +0 -1
  307. package/_cjs/actions/parsers/borrow/index.js +0 -6
  308. package/_cjs/actions/parsers/borrow/index.js.map +0 -1
  309. package/_cjs/actions/parsers/crossReplace/bridgeFrom.js +0 -24
  310. package/_cjs/actions/parsers/crossReplace/bridgeFrom.js.map +0 -1
  311. package/_cjs/actions/parsers/crossReplace/bridgeTo.js +0 -24
  312. package/_cjs/actions/parsers/crossReplace/bridgeTo.js.map +0 -1
  313. package/_cjs/actions/parsers/crossReplace/crossReplace.js +0 -24
  314. package/_cjs/actions/parsers/crossReplace/crossReplace.js.map +0 -1
  315. package/_cjs/actions/parsers/crossReplace/index.js +0 -10
  316. package/_cjs/actions/parsers/crossReplace/index.js.map +0 -1
  317. package/_cjs/actions/parsers/crossTrade/crossTrade.js +0 -24
  318. package/_cjs/actions/parsers/crossTrade/crossTrade.js.map +0 -1
  319. package/_cjs/actions/parsers/crossTrade/index.js +0 -6
  320. package/_cjs/actions/parsers/crossTrade/index.js.map +0 -1
  321. package/_cjs/actions/parsers/default.js +0 -133
  322. package/_cjs/actions/parsers/default.js.map +0 -1
  323. package/_cjs/actions/parsers/deposit/addLiquidity.js +0 -23
  324. package/_cjs/actions/parsers/deposit/addLiquidity.js.map +0 -1
  325. package/_cjs/actions/parsers/deposit/deposit.js +0 -23
  326. package/_cjs/actions/parsers/deposit/deposit.js.map +0 -1
  327. package/_cjs/actions/parsers/deposit/depositWithBond.js +0 -23
  328. package/_cjs/actions/parsers/deposit/depositWithBond.js.map +0 -1
  329. package/_cjs/actions/parsers/deposit/index.js +0 -12
  330. package/_cjs/actions/parsers/deposit/index.js.map +0 -1
  331. package/_cjs/actions/parsers/deposit/stake.js +0 -23
  332. package/_cjs/actions/parsers/deposit/stake.js.map +0 -1
  333. package/_cjs/actions/parsers/fee/fee.js +0 -40
  334. package/_cjs/actions/parsers/fee/fee.js.map +0 -1
  335. package/_cjs/actions/parsers/fee/index.js +0 -8
  336. package/_cjs/actions/parsers/fee/index.js.map +0 -1
  337. package/_cjs/actions/parsers/fee/transactionFee.js +0 -22
  338. package/_cjs/actions/parsers/fee/transactionFee.js.map +0 -1
  339. package/_cjs/actions/parsers/ignore/approve.js +0 -15
  340. package/_cjs/actions/parsers/ignore/approve.js.map +0 -1
  341. package/_cjs/actions/parsers/ignore/failTx.js +0 -15
  342. package/_cjs/actions/parsers/ignore/failTx.js.map +0 -1
  343. package/_cjs/actions/parsers/ignore/index.js +0 -16
  344. package/_cjs/actions/parsers/ignore/index.js.map +0 -1
  345. package/_cjs/actions/parsers/ignore/receiveFromCex.js +0 -12
  346. package/_cjs/actions/parsers/ignore/receiveFromCex.js.map +0 -1
  347. package/_cjs/actions/parsers/ignore/revoke.js +0 -15
  348. package/_cjs/actions/parsers/ignore/revoke.js.map +0 -1
  349. package/_cjs/actions/parsers/ignore/sendToCex.js +0 -12
  350. package/_cjs/actions/parsers/ignore/sendToCex.js.map +0 -1
  351. package/_cjs/actions/parsers/ignore/spam.js +0 -23
  352. package/_cjs/actions/parsers/ignore/spam.js.map +0 -1
  353. package/_cjs/actions/parsers/income/atomicArbitrage.js +0 -84
  354. package/_cjs/actions/parsers/income/atomicArbitrage.js.map +0 -1
  355. package/_cjs/actions/parsers/income/freeMintNft.js +0 -22
  356. package/_cjs/actions/parsers/income/freeMintNft.js.map +0 -1
  357. package/_cjs/actions/parsers/income/income.js +0 -29
  358. package/_cjs/actions/parsers/income/income.js.map +0 -1
  359. package/_cjs/actions/parsers/income/index.js +0 -10
  360. package/_cjs/actions/parsers/income/index.js.map +0 -1
  361. package/_cjs/actions/parsers/index.js +0 -59
  362. package/_cjs/actions/parsers/index.js.map +0 -1
  363. package/_cjs/actions/parsers/repayment/index.js +0 -8
  364. package/_cjs/actions/parsers/repayment/index.js.map +0 -1
  365. package/_cjs/actions/parsers/repayment/repayment.js +0 -23
  366. package/_cjs/actions/parsers/repayment/repayment.js.map +0 -1
  367. package/_cjs/actions/parsers/repayment/repaymentWithDebt.js +0 -23
  368. package/_cjs/actions/parsers/repayment/repaymentWithDebt.js.map +0 -1
  369. package/_cjs/actions/parsers/replace/index.js +0 -12
  370. package/_cjs/actions/parsers/replace/index.js.map +0 -1
  371. package/_cjs/actions/parsers/replace/replace.js +0 -22
  372. package/_cjs/actions/parsers/replace/replace.js.map +0 -1
  373. package/_cjs/actions/parsers/replace/swapNft.js +0 -22
  374. package/_cjs/actions/parsers/replace/swapNft.js.map +0 -1
  375. package/_cjs/actions/parsers/replace/unwrap.js +0 -22
  376. package/_cjs/actions/parsers/replace/unwrap.js.map +0 -1
  377. package/_cjs/actions/parsers/replace/wrap.js +0 -22
  378. package/_cjs/actions/parsers/replace/wrap.js.map +0 -1
  379. package/_cjs/actions/parsers/trade/buyCrypto.js +0 -52
  380. package/_cjs/actions/parsers/trade/buyCrypto.js.map +0 -1
  381. package/_cjs/actions/parsers/trade/buyNft.js +0 -123
  382. package/_cjs/actions/parsers/trade/buyNft.js.map +0 -1
  383. package/_cjs/actions/parsers/trade/index.js +0 -16
  384. package/_cjs/actions/parsers/trade/index.js.map +0 -1
  385. package/_cjs/actions/parsers/trade/mintNft.js +0 -91
  386. package/_cjs/actions/parsers/trade/mintNft.js.map +0 -1
  387. package/_cjs/actions/parsers/trade/sellCrypto.js +0 -52
  388. package/_cjs/actions/parsers/trade/sellCrypto.js.map +0 -1
  389. package/_cjs/actions/parsers/trade/sellNft.js +0 -123
  390. package/_cjs/actions/parsers/trade/sellNft.js.map +0 -1
  391. package/_cjs/actions/parsers/trade/trade.js +0 -171
  392. package/_cjs/actions/parsers/trade/trade.js.map +0 -1
  393. package/_cjs/actions/parsers/transfer/index.js +0 -6
  394. package/_cjs/actions/parsers/transfer/index.js.map +0 -1
  395. package/_cjs/actions/parsers/transfer/transfer.js +0 -15
  396. package/_cjs/actions/parsers/transfer/transfer.js.map +0 -1
  397. package/_cjs/actions/parsers/types.js +0 -3
  398. package/_cjs/actions/parsers/types.js.map +0 -1
  399. package/_cjs/actions/parsers/valuedown/index.js +0 -6
  400. package/_cjs/actions/parsers/valuedown/index.js.map +0 -1
  401. package/_cjs/actions/parsers/valuedown/valuedown.js +0 -23
  402. package/_cjs/actions/parsers/valuedown/valuedown.js.map +0 -1
  403. package/_cjs/actions/parsers/valueup/index.js +0 -6
  404. package/_cjs/actions/parsers/valueup/index.js.map +0 -1
  405. package/_cjs/actions/parsers/valueup/valueup.js +0 -23
  406. package/_cjs/actions/parsers/valueup/valueup.js.map +0 -1
  407. package/_cjs/actions/parsers/withdraw/index.js +0 -12
  408. package/_cjs/actions/parsers/withdraw/index.js.map +0 -1
  409. package/_cjs/actions/parsers/withdraw/removeLiquidity.js +0 -23
  410. package/_cjs/actions/parsers/withdraw/removeLiquidity.js.map +0 -1
  411. package/_cjs/actions/parsers/withdraw/unstake.js +0 -23
  412. package/_cjs/actions/parsers/withdraw/unstake.js.map +0 -1
  413. package/_cjs/actions/parsers/withdraw/withdraw.js +0 -23
  414. package/_cjs/actions/parsers/withdraw/withdraw.js.map +0 -1
  415. package/_cjs/actions/parsers/withdraw/withdrawWithBond.js +0 -23
  416. package/_cjs/actions/parsers/withdraw/withdrawWithBond.js.map +0 -1
  417. package/_cjs/actions/schemas/action.js +0 -149
  418. package/_cjs/actions/schemas/action.js.map +0 -1
  419. package/_cjs/actions/schemas/borrow/borrow.js +0 -26
  420. package/_cjs/actions/schemas/borrow/borrow.js.map +0 -1
  421. package/_cjs/actions/schemas/borrow/index.js +0 -7
  422. package/_cjs/actions/schemas/borrow/index.js.map +0 -1
  423. package/_cjs/actions/schemas/crossActionBundle.js +0 -16
  424. package/_cjs/actions/schemas/crossActionBundle.js.map +0 -1
  425. package/_cjs/actions/schemas/crossReplace/bridgeFrom.js +0 -26
  426. package/_cjs/actions/schemas/crossReplace/bridgeFrom.js.map +0 -1
  427. package/_cjs/actions/schemas/crossReplace/bridgeTo.js +0 -26
  428. package/_cjs/actions/schemas/crossReplace/bridgeTo.js.map +0 -1
  429. package/_cjs/actions/schemas/crossReplace/crossReplace.js +0 -26
  430. package/_cjs/actions/schemas/crossReplace/crossReplace.js.map +0 -1
  431. package/_cjs/actions/schemas/crossReplace/index.js +0 -13
  432. package/_cjs/actions/schemas/crossReplace/index.js.map +0 -1
  433. package/_cjs/actions/schemas/crossTrade/crossTrade.js +0 -26
  434. package/_cjs/actions/schemas/crossTrade/crossTrade.js.map +0 -1
  435. package/_cjs/actions/schemas/crossTrade/index.js +0 -7
  436. package/_cjs/actions/schemas/crossTrade/index.js.map +0 -1
  437. package/_cjs/actions/schemas/default/accountAction.js +0 -30
  438. package/_cjs/actions/schemas/default/accountAction.js.map +0 -1
  439. package/_cjs/actions/schemas/default/index.js +0 -29
  440. package/_cjs/actions/schemas/default/index.js.map +0 -1
  441. package/_cjs/actions/schemas/default/normalAction.js +0 -26
  442. package/_cjs/actions/schemas/default/normalAction.js.map +0 -1
  443. package/_cjs/actions/schemas/default/transfer.js +0 -137
  444. package/_cjs/actions/schemas/default/transfer.js.map +0 -1
  445. package/_cjs/actions/schemas/default/unions.js +0 -99
  446. package/_cjs/actions/schemas/default/unions.js.map +0 -1
  447. package/_cjs/actions/schemas/deposit/addLiquidity.js +0 -36
  448. package/_cjs/actions/schemas/deposit/addLiquidity.js.map +0 -1
  449. package/_cjs/actions/schemas/deposit/deposit.js +0 -26
  450. package/_cjs/actions/schemas/deposit/deposit.js.map +0 -1
  451. package/_cjs/actions/schemas/deposit/depositWithBond.js +0 -36
  452. package/_cjs/actions/schemas/deposit/depositWithBond.js.map +0 -1
  453. package/_cjs/actions/schemas/deposit/index.js +0 -16
  454. package/_cjs/actions/schemas/deposit/index.js.map +0 -1
  455. package/_cjs/actions/schemas/deposit/stake.js +0 -26
  456. package/_cjs/actions/schemas/deposit/stake.js.map +0 -1
  457. package/_cjs/actions/schemas/fee/fee.js +0 -26
  458. package/_cjs/actions/schemas/fee/fee.js.map +0 -1
  459. package/_cjs/actions/schemas/fee/index.js +0 -10
  460. package/_cjs/actions/schemas/fee/index.js.map +0 -1
  461. package/_cjs/actions/schemas/fee/transactionFee.js +0 -26
  462. package/_cjs/actions/schemas/fee/transactionFee.js.map +0 -1
  463. package/_cjs/actions/schemas/ignore/approve.js +0 -26
  464. package/_cjs/actions/schemas/ignore/approve.js.map +0 -1
  465. package/_cjs/actions/schemas/ignore/failTx.js +0 -26
  466. package/_cjs/actions/schemas/ignore/failTx.js.map +0 -1
  467. package/_cjs/actions/schemas/ignore/ignore.js +0 -15
  468. package/_cjs/actions/schemas/ignore/ignore.js.map +0 -1
  469. package/_cjs/actions/schemas/ignore/index.js +0 -26
  470. package/_cjs/actions/schemas/ignore/index.js.map +0 -1
  471. package/_cjs/actions/schemas/ignore/move.js +0 -15
  472. package/_cjs/actions/schemas/ignore/move.js.map +0 -1
  473. package/_cjs/actions/schemas/ignore/receiveFromCex.js +0 -26
  474. package/_cjs/actions/schemas/ignore/receiveFromCex.js.map +0 -1
  475. package/_cjs/actions/schemas/ignore/revoke.js +0 -26
  476. package/_cjs/actions/schemas/ignore/revoke.js.map +0 -1
  477. package/_cjs/actions/schemas/ignore/sendToCex.js +0 -26
  478. package/_cjs/actions/schemas/ignore/sendToCex.js.map +0 -1
  479. package/_cjs/actions/schemas/ignore/spam.js +0 -36
  480. package/_cjs/actions/schemas/ignore/spam.js.map +0 -1
  481. package/_cjs/actions/schemas/income/atomicArbitrage.js +0 -32
  482. package/_cjs/actions/schemas/income/atomicArbitrage.js.map +0 -1
  483. package/_cjs/actions/schemas/income/freeMintNft.js +0 -26
  484. package/_cjs/actions/schemas/income/freeMintNft.js.map +0 -1
  485. package/_cjs/actions/schemas/income/income.js +0 -26
  486. package/_cjs/actions/schemas/income/income.js.map +0 -1
  487. package/_cjs/actions/schemas/income/index.js +0 -17
  488. package/_cjs/actions/schemas/income/index.js.map +0 -1
  489. package/_cjs/actions/schemas/income/nftRoyalty.js +0 -16
  490. package/_cjs/actions/schemas/income/nftRoyalty.js.map +0 -1
  491. package/_cjs/actions/schemas/income/swapIncome.js +0 -16
  492. package/_cjs/actions/schemas/income/swapIncome.js.map +0 -1
  493. package/_cjs/actions/schemas/index.js +0 -126
  494. package/_cjs/actions/schemas/index.js.map +0 -1
  495. package/_cjs/actions/schemas/reduce/index.js +0 -6
  496. package/_cjs/actions/schemas/reduce/index.js.map +0 -1
  497. package/_cjs/actions/schemas/reduce/reduce.js +0 -16
  498. package/_cjs/actions/schemas/reduce/reduce.js.map +0 -1
  499. package/_cjs/actions/schemas/repayment/index.js +0 -10
  500. package/_cjs/actions/schemas/repayment/index.js.map +0 -1
  501. package/_cjs/actions/schemas/repayment/repayment.js +0 -26
  502. package/_cjs/actions/schemas/repayment/repayment.js.map +0 -1
  503. package/_cjs/actions/schemas/repayment/repaymentWithDebt.js +0 -36
  504. package/_cjs/actions/schemas/repayment/repaymentWithDebt.js.map +0 -1
  505. package/_cjs/actions/schemas/replace/index.js +0 -16
  506. package/_cjs/actions/schemas/replace/index.js.map +0 -1
  507. package/_cjs/actions/schemas/replace/replace.js +0 -36
  508. package/_cjs/actions/schemas/replace/replace.js.map +0 -1
  509. package/_cjs/actions/schemas/replace/swapNft.js +0 -26
  510. package/_cjs/actions/schemas/replace/swapNft.js.map +0 -1
  511. package/_cjs/actions/schemas/replace/unwrap.js +0 -32
  512. package/_cjs/actions/schemas/replace/unwrap.js.map +0 -1
  513. package/_cjs/actions/schemas/replace/wrap.js +0 -32
  514. package/_cjs/actions/schemas/replace/wrap.js.map +0 -1
  515. package/_cjs/actions/schemas/trade/buyCrypto.js +0 -26
  516. package/_cjs/actions/schemas/trade/buyCrypto.js.map +0 -1
  517. package/_cjs/actions/schemas/trade/buyNft.js +0 -34
  518. package/_cjs/actions/schemas/trade/buyNft.js.map +0 -1
  519. package/_cjs/actions/schemas/trade/index.js +0 -22
  520. package/_cjs/actions/schemas/trade/index.js.map +0 -1
  521. package/_cjs/actions/schemas/trade/mintNft.js +0 -34
  522. package/_cjs/actions/schemas/trade/mintNft.js.map +0 -1
  523. package/_cjs/actions/schemas/trade/sellCrypto.js +0 -26
  524. package/_cjs/actions/schemas/trade/sellCrypto.js.map +0 -1
  525. package/_cjs/actions/schemas/trade/sellNft.js +0 -34
  526. package/_cjs/actions/schemas/trade/sellNft.js.map +0 -1
  527. package/_cjs/actions/schemas/trade/trade.js +0 -26
  528. package/_cjs/actions/schemas/trade/trade.js.map +0 -1
  529. package/_cjs/actions/schemas/transfer/index.js +0 -9
  530. package/_cjs/actions/schemas/transfer/index.js.map +0 -1
  531. package/_cjs/actions/schemas/transfer/swapTransfer.js +0 -16
  532. package/_cjs/actions/schemas/transfer/swapTransfer.js.map +0 -1
  533. package/_cjs/actions/schemas/transfer/transfer.js +0 -25
  534. package/_cjs/actions/schemas/transfer/transfer.js.map +0 -1
  535. package/_cjs/actions/schemas/valuedown/index.js +0 -7
  536. package/_cjs/actions/schemas/valuedown/index.js.map +0 -1
  537. package/_cjs/actions/schemas/valuedown/valuedown.js +0 -29
  538. package/_cjs/actions/schemas/valuedown/valuedown.js.map +0 -1
  539. package/_cjs/actions/schemas/valueup/index.js +0 -7
  540. package/_cjs/actions/schemas/valueup/index.js.map +0 -1
  541. package/_cjs/actions/schemas/valueup/valueup.js +0 -29
  542. package/_cjs/actions/schemas/valueup/valueup.js.map +0 -1
  543. package/_cjs/actions/schemas/withdraw/index.js +0 -16
  544. package/_cjs/actions/schemas/withdraw/index.js.map +0 -1
  545. package/_cjs/actions/schemas/withdraw/removeLiquidity.js +0 -36
  546. package/_cjs/actions/schemas/withdraw/removeLiquidity.js.map +0 -1
  547. package/_cjs/actions/schemas/withdraw/unstake.js +0 -26
  548. package/_cjs/actions/schemas/withdraw/unstake.js.map +0 -1
  549. package/_cjs/actions/schemas/withdraw/withdraw.js +0 -26
  550. package/_cjs/actions/schemas/withdraw/withdraw.js.map +0 -1
  551. package/_cjs/actions/schemas/withdraw/withdrawWithBond.js +0 -36
  552. package/_cjs/actions/schemas/withdraw/withdrawWithBond.js.map +0 -1
  553. package/_cjs/actions/types/action.js +0 -3
  554. package/_cjs/actions/types/action.js.map +0 -1
  555. package/_cjs/actions/types/addLiquidity.js +0 -3
  556. package/_cjs/actions/types/addLiquidity.js.map +0 -1
  557. package/_cjs/actions/types/approve.js +0 -3
  558. package/_cjs/actions/types/approve.js.map +0 -1
  559. package/_cjs/actions/types/atomicArbitrage.js +0 -3
  560. package/_cjs/actions/types/atomicArbitrage.js.map +0 -1
  561. package/_cjs/actions/types/borrow.js +0 -3
  562. package/_cjs/actions/types/borrow.js.map +0 -1
  563. package/_cjs/actions/types/bridgeFrom.js +0 -3
  564. package/_cjs/actions/types/bridgeFrom.js.map +0 -1
  565. package/_cjs/actions/types/bridgeTo.js +0 -3
  566. package/_cjs/actions/types/bridgeTo.js.map +0 -1
  567. package/_cjs/actions/types/buyCrypto.js +0 -3
  568. package/_cjs/actions/types/buyCrypto.js.map +0 -1
  569. package/_cjs/actions/types/buyNft.js +0 -3
  570. package/_cjs/actions/types/buyNft.js.map +0 -1
  571. package/_cjs/actions/types/crossActionBundle.js +0 -3
  572. package/_cjs/actions/types/crossActionBundle.js.map +0 -1
  573. package/_cjs/actions/types/crossReplace.js +0 -3
  574. package/_cjs/actions/types/crossReplace.js.map +0 -1
  575. package/_cjs/actions/types/crossTrade.js +0 -3
  576. package/_cjs/actions/types/crossTrade.js.map +0 -1
  577. package/_cjs/actions/types/default.js +0 -3
  578. package/_cjs/actions/types/default.js.map +0 -1
  579. package/_cjs/actions/types/deposit.js +0 -3
  580. package/_cjs/actions/types/deposit.js.map +0 -1
  581. package/_cjs/actions/types/depositWithBond.js +0 -3
  582. package/_cjs/actions/types/depositWithBond.js.map +0 -1
  583. package/_cjs/actions/types/failTx.js +0 -3
  584. package/_cjs/actions/types/failTx.js.map +0 -1
  585. package/_cjs/actions/types/fee.js +0 -3
  586. package/_cjs/actions/types/fee.js.map +0 -1
  587. package/_cjs/actions/types/freeMintNft.js +0 -3
  588. package/_cjs/actions/types/freeMintNft.js.map +0 -1
  589. package/_cjs/actions/types/ignore.js +0 -3
  590. package/_cjs/actions/types/ignore.js.map +0 -1
  591. package/_cjs/actions/types/income.js +0 -3
  592. package/_cjs/actions/types/income.js.map +0 -1
  593. package/_cjs/actions/types/index.js +0 -3
  594. package/_cjs/actions/types/index.js.map +0 -1
  595. package/_cjs/actions/types/mintNft.js +0 -3
  596. package/_cjs/actions/types/mintNft.js.map +0 -1
  597. package/_cjs/actions/types/move.js +0 -3
  598. package/_cjs/actions/types/move.js.map +0 -1
  599. package/_cjs/actions/types/nftRoyalty.js +0 -3
  600. package/_cjs/actions/types/nftRoyalty.js.map +0 -1
  601. package/_cjs/actions/types/receiveFromCex.js +0 -3
  602. package/_cjs/actions/types/receiveFromCex.js.map +0 -1
  603. package/_cjs/actions/types/reduce.js +0 -3
  604. package/_cjs/actions/types/reduce.js.map +0 -1
  605. package/_cjs/actions/types/removeLiquidity.js +0 -3
  606. package/_cjs/actions/types/removeLiquidity.js.map +0 -1
  607. package/_cjs/actions/types/repayment.js +0 -3
  608. package/_cjs/actions/types/repayment.js.map +0 -1
  609. package/_cjs/actions/types/repaymentWithDebt.js +0 -3
  610. package/_cjs/actions/types/repaymentWithDebt.js.map +0 -1
  611. package/_cjs/actions/types/replace.js +0 -3
  612. package/_cjs/actions/types/replace.js.map +0 -1
  613. package/_cjs/actions/types/revoke.js +0 -3
  614. package/_cjs/actions/types/revoke.js.map +0 -1
  615. package/_cjs/actions/types/sellCrypto.js +0 -3
  616. package/_cjs/actions/types/sellCrypto.js.map +0 -1
  617. package/_cjs/actions/types/sellNft.js +0 -3
  618. package/_cjs/actions/types/sellNft.js.map +0 -1
  619. package/_cjs/actions/types/sendToCex.js +0 -3
  620. package/_cjs/actions/types/sendToCex.js.map +0 -1
  621. package/_cjs/actions/types/spam.js +0 -3
  622. package/_cjs/actions/types/spam.js.map +0 -1
  623. package/_cjs/actions/types/stake.js +0 -3
  624. package/_cjs/actions/types/stake.js.map +0 -1
  625. package/_cjs/actions/types/swapIncome.js +0 -3
  626. package/_cjs/actions/types/swapIncome.js.map +0 -1
  627. package/_cjs/actions/types/swapNft.js +0 -3
  628. package/_cjs/actions/types/swapNft.js.map +0 -1
  629. package/_cjs/actions/types/swapTransfer.js +0 -3
  630. package/_cjs/actions/types/swapTransfer.js.map +0 -1
  631. package/_cjs/actions/types/trade.js +0 -3
  632. package/_cjs/actions/types/trade.js.map +0 -1
  633. package/_cjs/actions/types/transactionFee.js +0 -3
  634. package/_cjs/actions/types/transactionFee.js.map +0 -1
  635. package/_cjs/actions/types/transfer.js +0 -3
  636. package/_cjs/actions/types/transfer.js.map +0 -1
  637. package/_cjs/actions/types/unstake.js +0 -3
  638. package/_cjs/actions/types/unstake.js.map +0 -1
  639. package/_cjs/actions/types/unwrap.js +0 -3
  640. package/_cjs/actions/types/unwrap.js.map +0 -1
  641. package/_cjs/actions/types/valuedown.js +0 -3
  642. package/_cjs/actions/types/valuedown.js.map +0 -1
  643. package/_cjs/actions/types/valueup.js +0 -3
  644. package/_cjs/actions/types/valueup.js.map +0 -1
  645. package/_cjs/actions/types/withdraw.js +0 -3
  646. package/_cjs/actions/types/withdraw.js.map +0 -1
  647. package/_cjs/actions/types/withdrawWithBond.js +0 -3
  648. package/_cjs/actions/types/withdrawWithBond.js.map +0 -1
  649. package/_cjs/actions/types/wrap.js +0 -3
  650. package/_cjs/actions/types/wrap.js.map +0 -1
  651. package/_cjs/actions/utils/checkIfAccountActionsIsValid.js +0 -60
  652. package/_cjs/actions/utils/checkIfAccountActionsIsValid.js.map +0 -1
  653. package/_cjs/actions/utils/createEvidenceNoneAccountActions.js +0 -210
  654. package/_cjs/actions/utils/createEvidenceNoneAccountActions.js.map +0 -1
  655. package/_cjs/actions/utils/parseBaseAccountActionToAccountAction.js +0 -680
  656. package/_cjs/actions/utils/parseBaseAccountActionToAccountAction.js.map +0 -1
  657. package/_cjs/actions/utils/parseBaseNormalActionToNormalAction.js +0 -609
  658. package/_cjs/actions/utils/parseBaseNormalActionToNormalAction.js.map +0 -1
  659. package/_cjs/actions/utils/transfer.js +0 -22
  660. package/_cjs/actions/utils/transfer.js.map +0 -1
  661. package/_cjs/assets/creates/index.js +0 -8
  662. package/_cjs/assets/creates/index.js.map +0 -1
  663. package/_cjs/assets/definitions/coingeckoCryptoCurrencyDataSource.js +0 -93
  664. package/_cjs/assets/definitions/coingeckoCryptoCurrencyDataSource.js.map +0 -1
  665. package/_cjs/assets/definitions/index.js +0 -40
  666. package/_cjs/assets/definitions/index.js.map +0 -1
  667. package/_cjs/assets/externals/coingecko/constants.js +0 -5
  668. package/_cjs/assets/externals/coingecko/constants.js.map +0 -1
  669. package/_cjs/assets/externals/coingecko/getAutoRetry.js +0 -31
  670. package/_cjs/assets/externals/coingecko/getAutoRetry.js.map +0 -1
  671. package/_cjs/assets/externals/coingecko/getCoinMarketChartRange.js +0 -22
  672. package/_cjs/assets/externals/coingecko/getCoinMarketChartRange.js.map +0 -1
  673. package/_cjs/assets/externals/coingecko/getCoinsMarkets.js +0 -36
  674. package/_cjs/assets/externals/coingecko/getCoinsMarkets.js.map +0 -1
  675. package/_cjs/assets/externals/coingecko/index.js +0 -8
  676. package/_cjs/assets/externals/coingecko/index.js.map +0 -1
  677. package/_cjs/assets/externals/index.js +0 -7
  678. package/_cjs/assets/externals/index.js.map +0 -1
  679. package/_cjs/portfolios/createPortfolio.js +0 -8
  680. package/_cjs/portfolios/createPortfolio.js.map +0 -1
  681. package/_cjs/portfolios/index.js +0 -6
  682. package/_cjs/portfolios/index.js.map +0 -1
  683. package/_cjs/portfolios/type.js +0 -3
  684. package/_cjs/portfolios/type.js.map +0 -1
  685. package/_cjs/setAccountActionPrices.js +0 -81
  686. package/_cjs/setAccountActionPrices.js.map +0 -1
  687. package/_cjs/tests/constants.js +0 -5
  688. package/_cjs/tests/constants.js.map +0 -1
  689. package/_cjs/tests/index.js +0 -8
  690. package/_cjs/tests/index.js.map +0 -1
  691. package/_cjs/tests/utils.js +0 -26
  692. package/_cjs/tests/utils.js.map +0 -1
  693. package/_esm/accounts/index.js +0 -2
  694. package/_esm/accounts/index.js.map +0 -1
  695. package/_esm/accounts/types/account.js +0 -2
  696. package/_esm/accounts/types/account.js.map +0 -1
  697. package/_esm/accounts/types/index.js +0 -2
  698. package/_esm/accounts/types/index.js.map +0 -1
  699. package/_esm/actions/parsers/action.js +0 -331
  700. package/_esm/actions/parsers/action.js.map +0 -1
  701. package/_esm/actions/parsers/borrow/borrow.js +0 -19
  702. package/_esm/actions/parsers/borrow/borrow.js.map +0 -1
  703. package/_esm/actions/parsers/borrow/index.js +0 -2
  704. package/_esm/actions/parsers/borrow/index.js.map +0 -1
  705. package/_esm/actions/parsers/crossReplace/bridgeFrom.js +0 -20
  706. package/_esm/actions/parsers/crossReplace/bridgeFrom.js.map +0 -1
  707. package/_esm/actions/parsers/crossReplace/bridgeTo.js +0 -20
  708. package/_esm/actions/parsers/crossReplace/bridgeTo.js.map +0 -1
  709. package/_esm/actions/parsers/crossReplace/crossReplace.js +0 -20
  710. package/_esm/actions/parsers/crossReplace/crossReplace.js.map +0 -1
  711. package/_esm/actions/parsers/crossReplace/index.js +0 -4
  712. package/_esm/actions/parsers/crossReplace/index.js.map +0 -1
  713. package/_esm/actions/parsers/crossTrade/crossTrade.js +0 -20
  714. package/_esm/actions/parsers/crossTrade/crossTrade.js.map +0 -1
  715. package/_esm/actions/parsers/crossTrade/index.js +0 -2
  716. package/_esm/actions/parsers/crossTrade/index.js.map +0 -1
  717. package/_esm/actions/parsers/default.js +0 -124
  718. package/_esm/actions/parsers/default.js.map +0 -1
  719. package/_esm/actions/parsers/deposit/addLiquidity.js +0 -19
  720. package/_esm/actions/parsers/deposit/addLiquidity.js.map +0 -1
  721. package/_esm/actions/parsers/deposit/deposit.js +0 -19
  722. package/_esm/actions/parsers/deposit/deposit.js.map +0 -1
  723. package/_esm/actions/parsers/deposit/depositWithBond.js +0 -19
  724. package/_esm/actions/parsers/deposit/depositWithBond.js.map +0 -1
  725. package/_esm/actions/parsers/deposit/index.js +0 -5
  726. package/_esm/actions/parsers/deposit/index.js.map +0 -1
  727. package/_esm/actions/parsers/deposit/stake.js +0 -19
  728. package/_esm/actions/parsers/deposit/stake.js.map +0 -1
  729. package/_esm/actions/parsers/fee/fee.js +0 -37
  730. package/_esm/actions/parsers/fee/fee.js.map +0 -1
  731. package/_esm/actions/parsers/fee/index.js +0 -3
  732. package/_esm/actions/parsers/fee/index.js.map +0 -1
  733. package/_esm/actions/parsers/fee/transactionFee.js +0 -18
  734. package/_esm/actions/parsers/fee/transactionFee.js.map +0 -1
  735. package/_esm/actions/parsers/ignore/approve.js +0 -11
  736. package/_esm/actions/parsers/ignore/approve.js.map +0 -1
  737. package/_esm/actions/parsers/ignore/failTx.js +0 -11
  738. package/_esm/actions/parsers/ignore/failTx.js.map +0 -1
  739. package/_esm/actions/parsers/ignore/index.js +0 -7
  740. package/_esm/actions/parsers/ignore/index.js.map +0 -1
  741. package/_esm/actions/parsers/ignore/receiveFromCex.js +0 -8
  742. package/_esm/actions/parsers/ignore/receiveFromCex.js.map +0 -1
  743. package/_esm/actions/parsers/ignore/revoke.js +0 -11
  744. package/_esm/actions/parsers/ignore/revoke.js.map +0 -1
  745. package/_esm/actions/parsers/ignore/sendToCex.js +0 -8
  746. package/_esm/actions/parsers/ignore/sendToCex.js.map +0 -1
  747. package/_esm/actions/parsers/ignore/spam.js +0 -19
  748. package/_esm/actions/parsers/ignore/spam.js.map +0 -1
  749. package/_esm/actions/parsers/income/atomicArbitrage.js +0 -83
  750. package/_esm/actions/parsers/income/atomicArbitrage.js.map +0 -1
  751. package/_esm/actions/parsers/income/freeMintNft.js +0 -18
  752. package/_esm/actions/parsers/income/freeMintNft.js.map +0 -1
  753. package/_esm/actions/parsers/income/income.js +0 -25
  754. package/_esm/actions/parsers/income/income.js.map +0 -1
  755. package/_esm/actions/parsers/income/index.js +0 -4
  756. package/_esm/actions/parsers/income/index.js.map +0 -1
  757. package/_esm/actions/parsers/index.js +0 -16
  758. package/_esm/actions/parsers/index.js.map +0 -1
  759. package/_esm/actions/parsers/repayment/index.js +0 -3
  760. package/_esm/actions/parsers/repayment/index.js.map +0 -1
  761. package/_esm/actions/parsers/repayment/repayment.js +0 -19
  762. package/_esm/actions/parsers/repayment/repayment.js.map +0 -1
  763. package/_esm/actions/parsers/repayment/repaymentWithDebt.js +0 -19
  764. package/_esm/actions/parsers/repayment/repaymentWithDebt.js.map +0 -1
  765. package/_esm/actions/parsers/replace/index.js +0 -5
  766. package/_esm/actions/parsers/replace/index.js.map +0 -1
  767. package/_esm/actions/parsers/replace/replace.js +0 -18
  768. package/_esm/actions/parsers/replace/replace.js.map +0 -1
  769. package/_esm/actions/parsers/replace/swapNft.js +0 -18
  770. package/_esm/actions/parsers/replace/swapNft.js.map +0 -1
  771. package/_esm/actions/parsers/replace/unwrap.js +0 -18
  772. package/_esm/actions/parsers/replace/unwrap.js.map +0 -1
  773. package/_esm/actions/parsers/replace/wrap.js +0 -18
  774. package/_esm/actions/parsers/replace/wrap.js.map +0 -1
  775. package/_esm/actions/parsers/trade/buyCrypto.js +0 -49
  776. package/_esm/actions/parsers/trade/buyCrypto.js.map +0 -1
  777. package/_esm/actions/parsers/trade/buyNft.js +0 -124
  778. package/_esm/actions/parsers/trade/buyNft.js.map +0 -1
  779. package/_esm/actions/parsers/trade/index.js +0 -7
  780. package/_esm/actions/parsers/trade/index.js.map +0 -1
  781. package/_esm/actions/parsers/trade/mintNft.js +0 -91
  782. package/_esm/actions/parsers/trade/mintNft.js.map +0 -1
  783. package/_esm/actions/parsers/trade/sellCrypto.js +0 -49
  784. package/_esm/actions/parsers/trade/sellCrypto.js.map +0 -1
  785. package/_esm/actions/parsers/trade/sellNft.js +0 -125
  786. package/_esm/actions/parsers/trade/sellNft.js.map +0 -1
  787. package/_esm/actions/parsers/trade/trade.js +0 -176
  788. package/_esm/actions/parsers/trade/trade.js.map +0 -1
  789. package/_esm/actions/parsers/transfer/index.js +0 -2
  790. package/_esm/actions/parsers/transfer/index.js.map +0 -1
  791. package/_esm/actions/parsers/transfer/transfer.js +0 -11
  792. package/_esm/actions/parsers/transfer/transfer.js.map +0 -1
  793. package/_esm/actions/parsers/types.js +0 -2
  794. package/_esm/actions/parsers/types.js.map +0 -1
  795. package/_esm/actions/parsers/valuedown/index.js +0 -2
  796. package/_esm/actions/parsers/valuedown/index.js.map +0 -1
  797. package/_esm/actions/parsers/valuedown/valuedown.js +0 -19
  798. package/_esm/actions/parsers/valuedown/valuedown.js.map +0 -1
  799. package/_esm/actions/parsers/valueup/index.js +0 -2
  800. package/_esm/actions/parsers/valueup/index.js.map +0 -1
  801. package/_esm/actions/parsers/valueup/valueup.js +0 -19
  802. package/_esm/actions/parsers/valueup/valueup.js.map +0 -1
  803. package/_esm/actions/parsers/withdraw/index.js +0 -5
  804. package/_esm/actions/parsers/withdraw/index.js.map +0 -1
  805. package/_esm/actions/parsers/withdraw/removeLiquidity.js +0 -19
  806. package/_esm/actions/parsers/withdraw/removeLiquidity.js.map +0 -1
  807. package/_esm/actions/parsers/withdraw/unstake.js +0 -19
  808. package/_esm/actions/parsers/withdraw/unstake.js.map +0 -1
  809. package/_esm/actions/parsers/withdraw/withdraw.js +0 -19
  810. package/_esm/actions/parsers/withdraw/withdraw.js.map +0 -1
  811. package/_esm/actions/parsers/withdraw/withdrawWithBond.js +0 -19
  812. package/_esm/actions/parsers/withdraw/withdrawWithBond.js.map +0 -1
  813. package/_esm/actions/schemas/action.js +0 -175
  814. package/_esm/actions/schemas/action.js.map +0 -1
  815. package/_esm/actions/schemas/borrow/borrow.js +0 -23
  816. package/_esm/actions/schemas/borrow/borrow.js.map +0 -1
  817. package/_esm/actions/schemas/borrow/index.js +0 -2
  818. package/_esm/actions/schemas/borrow/index.js.map +0 -1
  819. package/_esm/actions/schemas/crossActionBundle.js +0 -13
  820. package/_esm/actions/schemas/crossActionBundle.js.map +0 -1
  821. package/_esm/actions/schemas/crossReplace/bridgeFrom.js +0 -23
  822. package/_esm/actions/schemas/crossReplace/bridgeFrom.js.map +0 -1
  823. package/_esm/actions/schemas/crossReplace/bridgeTo.js +0 -23
  824. package/_esm/actions/schemas/crossReplace/bridgeTo.js.map +0 -1
  825. package/_esm/actions/schemas/crossReplace/crossReplace.js +0 -23
  826. package/_esm/actions/schemas/crossReplace/crossReplace.js.map +0 -1
  827. package/_esm/actions/schemas/crossReplace/index.js +0 -4
  828. package/_esm/actions/schemas/crossReplace/index.js.map +0 -1
  829. package/_esm/actions/schemas/crossTrade/crossTrade.js +0 -23
  830. package/_esm/actions/schemas/crossTrade/crossTrade.js.map +0 -1
  831. package/_esm/actions/schemas/crossTrade/index.js +0 -2
  832. package/_esm/actions/schemas/crossTrade/index.js.map +0 -1
  833. package/_esm/actions/schemas/default/accountAction.js +0 -27
  834. package/_esm/actions/schemas/default/accountAction.js.map +0 -1
  835. package/_esm/actions/schemas/default/index.js +0 -5
  836. package/_esm/actions/schemas/default/index.js.map +0 -1
  837. package/_esm/actions/schemas/default/normalAction.js +0 -23
  838. package/_esm/actions/schemas/default/normalAction.js.map +0 -1
  839. package/_esm/actions/schemas/default/transfer.js +0 -134
  840. package/_esm/actions/schemas/default/transfer.js.map +0 -1
  841. package/_esm/actions/schemas/default/unions.js +0 -96
  842. package/_esm/actions/schemas/default/unions.js.map +0 -1
  843. package/_esm/actions/schemas/deposit/addLiquidity.js +0 -33
  844. package/_esm/actions/schemas/deposit/addLiquidity.js.map +0 -1
  845. package/_esm/actions/schemas/deposit/deposit.js +0 -23
  846. package/_esm/actions/schemas/deposit/deposit.js.map +0 -1
  847. package/_esm/actions/schemas/deposit/depositWithBond.js +0 -33
  848. package/_esm/actions/schemas/deposit/depositWithBond.js.map +0 -1
  849. package/_esm/actions/schemas/deposit/index.js +0 -5
  850. package/_esm/actions/schemas/deposit/index.js.map +0 -1
  851. package/_esm/actions/schemas/deposit/stake.js +0 -23
  852. package/_esm/actions/schemas/deposit/stake.js.map +0 -1
  853. package/_esm/actions/schemas/fee/fee.js +0 -23
  854. package/_esm/actions/schemas/fee/fee.js.map +0 -1
  855. package/_esm/actions/schemas/fee/index.js +0 -3
  856. package/_esm/actions/schemas/fee/index.js.map +0 -1
  857. package/_esm/actions/schemas/fee/transactionFee.js +0 -23
  858. package/_esm/actions/schemas/fee/transactionFee.js.map +0 -1
  859. package/_esm/actions/schemas/ignore/approve.js +0 -23
  860. package/_esm/actions/schemas/ignore/approve.js.map +0 -1
  861. package/_esm/actions/schemas/ignore/failTx.js +0 -23
  862. package/_esm/actions/schemas/ignore/failTx.js.map +0 -1
  863. package/_esm/actions/schemas/ignore/ignore.js +0 -12
  864. package/_esm/actions/schemas/ignore/ignore.js.map +0 -1
  865. package/_esm/actions/schemas/ignore/index.js +0 -9
  866. package/_esm/actions/schemas/ignore/index.js.map +0 -1
  867. package/_esm/actions/schemas/ignore/move.js +0 -12
  868. package/_esm/actions/schemas/ignore/move.js.map +0 -1
  869. package/_esm/actions/schemas/ignore/receiveFromCex.js +0 -23
  870. package/_esm/actions/schemas/ignore/receiveFromCex.js.map +0 -1
  871. package/_esm/actions/schemas/ignore/revoke.js +0 -23
  872. package/_esm/actions/schemas/ignore/revoke.js.map +0 -1
  873. package/_esm/actions/schemas/ignore/sendToCex.js +0 -23
  874. package/_esm/actions/schemas/ignore/sendToCex.js.map +0 -1
  875. package/_esm/actions/schemas/ignore/spam.js +0 -33
  876. package/_esm/actions/schemas/ignore/spam.js.map +0 -1
  877. package/_esm/actions/schemas/income/atomicArbitrage.js +0 -29
  878. package/_esm/actions/schemas/income/atomicArbitrage.js.map +0 -1
  879. package/_esm/actions/schemas/income/freeMintNft.js +0 -23
  880. package/_esm/actions/schemas/income/freeMintNft.js.map +0 -1
  881. package/_esm/actions/schemas/income/income.js +0 -23
  882. package/_esm/actions/schemas/income/income.js.map +0 -1
  883. package/_esm/actions/schemas/income/index.js +0 -6
  884. package/_esm/actions/schemas/income/index.js.map +0 -1
  885. package/_esm/actions/schemas/income/nftRoyalty.js +0 -13
  886. package/_esm/actions/schemas/income/nftRoyalty.js.map +0 -1
  887. package/_esm/actions/schemas/income/swapIncome.js +0 -13
  888. package/_esm/actions/schemas/income/swapIncome.js.map +0 -1
  889. package/_esm/actions/schemas/index.js +0 -19
  890. package/_esm/actions/schemas/index.js.map +0 -1
  891. package/_esm/actions/schemas/reduce/index.js +0 -2
  892. package/_esm/actions/schemas/reduce/index.js.map +0 -1
  893. package/_esm/actions/schemas/reduce/reduce.js +0 -13
  894. package/_esm/actions/schemas/reduce/reduce.js.map +0 -1
  895. package/_esm/actions/schemas/repayment/index.js +0 -3
  896. package/_esm/actions/schemas/repayment/index.js.map +0 -1
  897. package/_esm/actions/schemas/repayment/repayment.js +0 -23
  898. package/_esm/actions/schemas/repayment/repayment.js.map +0 -1
  899. package/_esm/actions/schemas/repayment/repaymentWithDebt.js +0 -33
  900. package/_esm/actions/schemas/repayment/repaymentWithDebt.js.map +0 -1
  901. package/_esm/actions/schemas/replace/index.js +0 -5
  902. package/_esm/actions/schemas/replace/index.js.map +0 -1
  903. package/_esm/actions/schemas/replace/replace.js +0 -33
  904. package/_esm/actions/schemas/replace/replace.js.map +0 -1
  905. package/_esm/actions/schemas/replace/swapNft.js +0 -23
  906. package/_esm/actions/schemas/replace/swapNft.js.map +0 -1
  907. package/_esm/actions/schemas/replace/unwrap.js +0 -29
  908. package/_esm/actions/schemas/replace/unwrap.js.map +0 -1
  909. package/_esm/actions/schemas/replace/wrap.js +0 -29
  910. package/_esm/actions/schemas/replace/wrap.js.map +0 -1
  911. package/_esm/actions/schemas/trade/buyCrypto.js +0 -23
  912. package/_esm/actions/schemas/trade/buyCrypto.js.map +0 -1
  913. package/_esm/actions/schemas/trade/buyNft.js +0 -31
  914. package/_esm/actions/schemas/trade/buyNft.js.map +0 -1
  915. package/_esm/actions/schemas/trade/index.js +0 -7
  916. package/_esm/actions/schemas/trade/index.js.map +0 -1
  917. package/_esm/actions/schemas/trade/mintNft.js +0 -31
  918. package/_esm/actions/schemas/trade/mintNft.js.map +0 -1
  919. package/_esm/actions/schemas/trade/sellCrypto.js +0 -23
  920. package/_esm/actions/schemas/trade/sellCrypto.js.map +0 -1
  921. package/_esm/actions/schemas/trade/sellNft.js +0 -31
  922. package/_esm/actions/schemas/trade/sellNft.js.map +0 -1
  923. package/_esm/actions/schemas/trade/trade.js +0 -23
  924. package/_esm/actions/schemas/trade/trade.js.map +0 -1
  925. package/_esm/actions/schemas/transfer/index.js +0 -3
  926. package/_esm/actions/schemas/transfer/index.js.map +0 -1
  927. package/_esm/actions/schemas/transfer/swapTransfer.js +0 -13
  928. package/_esm/actions/schemas/transfer/swapTransfer.js.map +0 -1
  929. package/_esm/actions/schemas/transfer/transfer.js +0 -22
  930. package/_esm/actions/schemas/transfer/transfer.js.map +0 -1
  931. package/_esm/actions/schemas/valuedown/index.js +0 -2
  932. package/_esm/actions/schemas/valuedown/index.js.map +0 -1
  933. package/_esm/actions/schemas/valuedown/valuedown.js +0 -26
  934. package/_esm/actions/schemas/valuedown/valuedown.js.map +0 -1
  935. package/_esm/actions/schemas/valueup/index.js +0 -2
  936. package/_esm/actions/schemas/valueup/index.js.map +0 -1
  937. package/_esm/actions/schemas/valueup/valueup.js +0 -26
  938. package/_esm/actions/schemas/valueup/valueup.js.map +0 -1
  939. package/_esm/actions/schemas/withdraw/index.js +0 -5
  940. package/_esm/actions/schemas/withdraw/index.js.map +0 -1
  941. package/_esm/actions/schemas/withdraw/removeLiquidity.js +0 -33
  942. package/_esm/actions/schemas/withdraw/removeLiquidity.js.map +0 -1
  943. package/_esm/actions/schemas/withdraw/unstake.js +0 -23
  944. package/_esm/actions/schemas/withdraw/unstake.js.map +0 -1
  945. package/_esm/actions/schemas/withdraw/withdraw.js +0 -23
  946. package/_esm/actions/schemas/withdraw/withdraw.js.map +0 -1
  947. package/_esm/actions/schemas/withdraw/withdrawWithBond.js +0 -33
  948. package/_esm/actions/schemas/withdraw/withdrawWithBond.js.map +0 -1
  949. package/_esm/actions/types/action.js +0 -2
  950. package/_esm/actions/types/action.js.map +0 -1
  951. package/_esm/actions/types/addLiquidity.js +0 -2
  952. package/_esm/actions/types/addLiquidity.js.map +0 -1
  953. package/_esm/actions/types/approve.js +0 -2
  954. package/_esm/actions/types/approve.js.map +0 -1
  955. package/_esm/actions/types/atomicArbitrage.js +0 -2
  956. package/_esm/actions/types/atomicArbitrage.js.map +0 -1
  957. package/_esm/actions/types/borrow.js +0 -2
  958. package/_esm/actions/types/borrow.js.map +0 -1
  959. package/_esm/actions/types/bridgeFrom.js +0 -2
  960. package/_esm/actions/types/bridgeFrom.js.map +0 -1
  961. package/_esm/actions/types/bridgeTo.js +0 -2
  962. package/_esm/actions/types/bridgeTo.js.map +0 -1
  963. package/_esm/actions/types/buyCrypto.js +0 -2
  964. package/_esm/actions/types/buyCrypto.js.map +0 -1
  965. package/_esm/actions/types/buyNft.js +0 -2
  966. package/_esm/actions/types/buyNft.js.map +0 -1
  967. package/_esm/actions/types/crossActionBundle.js +0 -2
  968. package/_esm/actions/types/crossActionBundle.js.map +0 -1
  969. package/_esm/actions/types/crossReplace.js +0 -2
  970. package/_esm/actions/types/crossReplace.js.map +0 -1
  971. package/_esm/actions/types/crossTrade.js +0 -2
  972. package/_esm/actions/types/crossTrade.js.map +0 -1
  973. package/_esm/actions/types/default.js +0 -2
  974. package/_esm/actions/types/default.js.map +0 -1
  975. package/_esm/actions/types/deposit.js +0 -2
  976. package/_esm/actions/types/deposit.js.map +0 -1
  977. package/_esm/actions/types/depositWithBond.js +0 -2
  978. package/_esm/actions/types/depositWithBond.js.map +0 -1
  979. package/_esm/actions/types/failTx.js +0 -2
  980. package/_esm/actions/types/failTx.js.map +0 -1
  981. package/_esm/actions/types/fee.js +0 -2
  982. package/_esm/actions/types/fee.js.map +0 -1
  983. package/_esm/actions/types/freeMintNft.js +0 -2
  984. package/_esm/actions/types/freeMintNft.js.map +0 -1
  985. package/_esm/actions/types/ignore.js +0 -2
  986. package/_esm/actions/types/ignore.js.map +0 -1
  987. package/_esm/actions/types/income.js +0 -2
  988. package/_esm/actions/types/income.js.map +0 -1
  989. package/_esm/actions/types/index.js +0 -2
  990. package/_esm/actions/types/index.js.map +0 -1
  991. package/_esm/actions/types/mintNft.js +0 -2
  992. package/_esm/actions/types/mintNft.js.map +0 -1
  993. package/_esm/actions/types/move.js +0 -2
  994. package/_esm/actions/types/move.js.map +0 -1
  995. package/_esm/actions/types/nftRoyalty.js +0 -2
  996. package/_esm/actions/types/nftRoyalty.js.map +0 -1
  997. package/_esm/actions/types/receiveFromCex.js +0 -2
  998. package/_esm/actions/types/receiveFromCex.js.map +0 -1
  999. package/_esm/actions/types/reduce.js +0 -2
  1000. package/_esm/actions/types/reduce.js.map +0 -1
  1001. package/_esm/actions/types/removeLiquidity.js +0 -2
  1002. package/_esm/actions/types/removeLiquidity.js.map +0 -1
  1003. package/_esm/actions/types/repayment.js +0 -2
  1004. package/_esm/actions/types/repayment.js.map +0 -1
  1005. package/_esm/actions/types/repaymentWithDebt.js +0 -2
  1006. package/_esm/actions/types/repaymentWithDebt.js.map +0 -1
  1007. package/_esm/actions/types/replace.js +0 -2
  1008. package/_esm/actions/types/replace.js.map +0 -1
  1009. package/_esm/actions/types/revoke.js +0 -2
  1010. package/_esm/actions/types/revoke.js.map +0 -1
  1011. package/_esm/actions/types/sellCrypto.js +0 -2
  1012. package/_esm/actions/types/sellCrypto.js.map +0 -1
  1013. package/_esm/actions/types/sellNft.js +0 -2
  1014. package/_esm/actions/types/sellNft.js.map +0 -1
  1015. package/_esm/actions/types/sendToCex.js +0 -2
  1016. package/_esm/actions/types/sendToCex.js.map +0 -1
  1017. package/_esm/actions/types/spam.js +0 -2
  1018. package/_esm/actions/types/spam.js.map +0 -1
  1019. package/_esm/actions/types/stake.js +0 -2
  1020. package/_esm/actions/types/stake.js.map +0 -1
  1021. package/_esm/actions/types/swapIncome.js +0 -2
  1022. package/_esm/actions/types/swapIncome.js.map +0 -1
  1023. package/_esm/actions/types/swapNft.js +0 -2
  1024. package/_esm/actions/types/swapNft.js.map +0 -1
  1025. package/_esm/actions/types/swapTransfer.js +0 -2
  1026. package/_esm/actions/types/swapTransfer.js.map +0 -1
  1027. package/_esm/actions/types/trade.js +0 -2
  1028. package/_esm/actions/types/trade.js.map +0 -1
  1029. package/_esm/actions/types/transactionFee.js +0 -2
  1030. package/_esm/actions/types/transactionFee.js.map +0 -1
  1031. package/_esm/actions/types/transfer.js +0 -2
  1032. package/_esm/actions/types/transfer.js.map +0 -1
  1033. package/_esm/actions/types/unstake.js +0 -2
  1034. package/_esm/actions/types/unstake.js.map +0 -1
  1035. package/_esm/actions/types/unwrap.js +0 -2
  1036. package/_esm/actions/types/unwrap.js.map +0 -1
  1037. package/_esm/actions/types/valuedown.js +0 -2
  1038. package/_esm/actions/types/valuedown.js.map +0 -1
  1039. package/_esm/actions/types/valueup.js +0 -2
  1040. package/_esm/actions/types/valueup.js.map +0 -1
  1041. package/_esm/actions/types/withdraw.js +0 -2
  1042. package/_esm/actions/types/withdraw.js.map +0 -1
  1043. package/_esm/actions/types/withdrawWithBond.js +0 -2
  1044. package/_esm/actions/types/withdrawWithBond.js.map +0 -1
  1045. package/_esm/actions/types/wrap.js +0 -2
  1046. package/_esm/actions/types/wrap.js.map +0 -1
  1047. package/_esm/actions/utils/checkIfAccountActionsIsValid.js +0 -66
  1048. package/_esm/actions/utils/checkIfAccountActionsIsValid.js.map +0 -1
  1049. package/_esm/actions/utils/createEvidenceNoneAccountActions.js +0 -216
  1050. package/_esm/actions/utils/createEvidenceNoneAccountActions.js.map +0 -1
  1051. package/_esm/actions/utils/parseBaseAccountActionToAccountAction.js +0 -746
  1052. package/_esm/actions/utils/parseBaseAccountActionToAccountAction.js.map +0 -1
  1053. package/_esm/actions/utils/parseBaseNormalActionToNormalAction.js +0 -605
  1054. package/_esm/actions/utils/parseBaseNormalActionToNormalAction.js.map +0 -1
  1055. package/_esm/actions/utils/transfer.js +0 -10
  1056. package/_esm/actions/utils/transfer.js.map +0 -1
  1057. package/_esm/assets/creates/index.js +0 -3
  1058. package/_esm/assets/creates/index.js.map +0 -1
  1059. package/_esm/assets/definitions/coingeckoCryptoCurrencyDataSource.js +0 -97
  1060. package/_esm/assets/definitions/coingeckoCryptoCurrencyDataSource.js.map +0 -1
  1061. package/_esm/assets/definitions/index.js +0 -19
  1062. package/_esm/assets/definitions/index.js.map +0 -1
  1063. package/_esm/assets/externals/coingecko/constants.js +0 -2
  1064. package/_esm/assets/externals/coingecko/constants.js.map +0 -1
  1065. package/_esm/assets/externals/coingecko/getAutoRetry.js +0 -27
  1066. package/_esm/assets/externals/coingecko/getAutoRetry.js.map +0 -1
  1067. package/_esm/assets/externals/coingecko/getCoinMarketChartRange.js +0 -21
  1068. package/_esm/assets/externals/coingecko/getCoinMarketChartRange.js.map +0 -1
  1069. package/_esm/assets/externals/coingecko/getCoinsMarkets.js +0 -44
  1070. package/_esm/assets/externals/coingecko/getCoinsMarkets.js.map +0 -1
  1071. package/_esm/assets/externals/coingecko/index.js +0 -3
  1072. package/_esm/assets/externals/coingecko/index.js.map +0 -1
  1073. package/_esm/assets/externals/index.js +0 -2
  1074. package/_esm/assets/externals/index.js.map +0 -1
  1075. package/_esm/portfolios/createPortfolio.js +0 -4
  1076. package/_esm/portfolios/createPortfolio.js.map +0 -1
  1077. package/_esm/portfolios/index.js +0 -2
  1078. package/_esm/portfolios/index.js.map +0 -1
  1079. package/_esm/portfolios/type.js +0 -2
  1080. package/_esm/portfolios/type.js.map +0 -1
  1081. package/_esm/setAccountActionPrices.js +0 -80
  1082. package/_esm/setAccountActionPrices.js.map +0 -1
  1083. package/_esm/tests/constants.js +0 -2
  1084. package/_esm/tests/constants.js.map +0 -1
  1085. package/_esm/tests/index.js +0 -3
  1086. package/_esm/tests/index.js.map +0 -1
  1087. package/_esm/tests/utils.js +0 -24
  1088. package/_esm/tests/utils.js.map +0 -1
  1089. package/_types/accounts/index.d.ts +0 -2
  1090. package/_types/accounts/index.d.ts.map +0 -1
  1091. package/_types/accounts/types/account.d.ts +0 -6
  1092. package/_types/accounts/types/account.d.ts.map +0 -1
  1093. package/_types/accounts/types/index.d.ts +0 -2
  1094. package/_types/accounts/types/index.d.ts.map +0 -1
  1095. package/_types/actions/parsers/action.d.ts +0 -4
  1096. package/_types/actions/parsers/action.d.ts.map +0 -1
  1097. package/_types/actions/parsers/borrow/borrow.d.ts +0 -4
  1098. package/_types/actions/parsers/borrow/borrow.d.ts.map +0 -1
  1099. package/_types/actions/parsers/borrow/index.d.ts +0 -2
  1100. package/_types/actions/parsers/borrow/index.d.ts.map +0 -1
  1101. package/_types/actions/parsers/crossReplace/bridgeFrom.d.ts +0 -4
  1102. package/_types/actions/parsers/crossReplace/bridgeFrom.d.ts.map +0 -1
  1103. package/_types/actions/parsers/crossReplace/bridgeTo.d.ts +0 -4
  1104. package/_types/actions/parsers/crossReplace/bridgeTo.d.ts.map +0 -1
  1105. package/_types/actions/parsers/crossReplace/crossReplace.d.ts +0 -4
  1106. package/_types/actions/parsers/crossReplace/crossReplace.d.ts.map +0 -1
  1107. package/_types/actions/parsers/crossReplace/index.d.ts +0 -4
  1108. package/_types/actions/parsers/crossReplace/index.d.ts.map +0 -1
  1109. package/_types/actions/parsers/crossTrade/crossTrade.d.ts +0 -4
  1110. package/_types/actions/parsers/crossTrade/crossTrade.d.ts.map +0 -1
  1111. package/_types/actions/parsers/crossTrade/index.d.ts +0 -2
  1112. package/_types/actions/parsers/crossTrade/index.d.ts.map +0 -1
  1113. package/_types/actions/parsers/default.d.ts +0 -24
  1114. package/_types/actions/parsers/default.d.ts.map +0 -1
  1115. package/_types/actions/parsers/deposit/addLiquidity.d.ts +0 -4
  1116. package/_types/actions/parsers/deposit/addLiquidity.d.ts.map +0 -1
  1117. package/_types/actions/parsers/deposit/deposit.d.ts +0 -4
  1118. package/_types/actions/parsers/deposit/deposit.d.ts.map +0 -1
  1119. package/_types/actions/parsers/deposit/depositWithBond.d.ts +0 -4
  1120. package/_types/actions/parsers/deposit/depositWithBond.d.ts.map +0 -1
  1121. package/_types/actions/parsers/deposit/index.d.ts +0 -5
  1122. package/_types/actions/parsers/deposit/index.d.ts.map +0 -1
  1123. package/_types/actions/parsers/deposit/stake.d.ts +0 -4
  1124. package/_types/actions/parsers/deposit/stake.d.ts.map +0 -1
  1125. package/_types/actions/parsers/fee/fee.d.ts +0 -4
  1126. package/_types/actions/parsers/fee/fee.d.ts.map +0 -1
  1127. package/_types/actions/parsers/fee/index.d.ts +0 -3
  1128. package/_types/actions/parsers/fee/index.d.ts.map +0 -1
  1129. package/_types/actions/parsers/fee/transactionFee.d.ts +0 -4
  1130. package/_types/actions/parsers/fee/transactionFee.d.ts.map +0 -1
  1131. package/_types/actions/parsers/ignore/approve.d.ts +0 -4
  1132. package/_types/actions/parsers/ignore/approve.d.ts.map +0 -1
  1133. package/_types/actions/parsers/ignore/failTx.d.ts +0 -4
  1134. package/_types/actions/parsers/ignore/failTx.d.ts.map +0 -1
  1135. package/_types/actions/parsers/ignore/index.d.ts +0 -7
  1136. package/_types/actions/parsers/ignore/index.d.ts.map +0 -1
  1137. package/_types/actions/parsers/ignore/receiveFromCex.d.ts +0 -4
  1138. package/_types/actions/parsers/ignore/receiveFromCex.d.ts.map +0 -1
  1139. package/_types/actions/parsers/ignore/revoke.d.ts +0 -4
  1140. package/_types/actions/parsers/ignore/revoke.d.ts.map +0 -1
  1141. package/_types/actions/parsers/ignore/sendToCex.d.ts +0 -4
  1142. package/_types/actions/parsers/ignore/sendToCex.d.ts.map +0 -1
  1143. package/_types/actions/parsers/ignore/spam.d.ts +0 -4
  1144. package/_types/actions/parsers/ignore/spam.d.ts.map +0 -1
  1145. package/_types/actions/parsers/income/atomicArbitrage.d.ts +0 -4
  1146. package/_types/actions/parsers/income/atomicArbitrage.d.ts.map +0 -1
  1147. package/_types/actions/parsers/income/freeMintNft.d.ts +0 -4
  1148. package/_types/actions/parsers/income/freeMintNft.d.ts.map +0 -1
  1149. package/_types/actions/parsers/income/income.d.ts +0 -4
  1150. package/_types/actions/parsers/income/income.d.ts.map +0 -1
  1151. package/_types/actions/parsers/income/index.d.ts +0 -4
  1152. package/_types/actions/parsers/income/index.d.ts.map +0 -1
  1153. package/_types/actions/parsers/index.d.ts +0 -16
  1154. package/_types/actions/parsers/index.d.ts.map +0 -1
  1155. package/_types/actions/parsers/repayment/index.d.ts +0 -3
  1156. package/_types/actions/parsers/repayment/index.d.ts.map +0 -1
  1157. package/_types/actions/parsers/repayment/repayment.d.ts +0 -4
  1158. package/_types/actions/parsers/repayment/repayment.d.ts.map +0 -1
  1159. package/_types/actions/parsers/repayment/repaymentWithDebt.d.ts +0 -4
  1160. package/_types/actions/parsers/repayment/repaymentWithDebt.d.ts.map +0 -1
  1161. package/_types/actions/parsers/replace/index.d.ts +0 -5
  1162. package/_types/actions/parsers/replace/index.d.ts.map +0 -1
  1163. package/_types/actions/parsers/replace/replace.d.ts +0 -4
  1164. package/_types/actions/parsers/replace/replace.d.ts.map +0 -1
  1165. package/_types/actions/parsers/replace/swapNft.d.ts +0 -4
  1166. package/_types/actions/parsers/replace/swapNft.d.ts.map +0 -1
  1167. package/_types/actions/parsers/replace/unwrap.d.ts +0 -4
  1168. package/_types/actions/parsers/replace/unwrap.d.ts.map +0 -1
  1169. package/_types/actions/parsers/replace/wrap.d.ts +0 -4
  1170. package/_types/actions/parsers/replace/wrap.d.ts.map +0 -1
  1171. package/_types/actions/parsers/trade/buyCrypto.d.ts +0 -4
  1172. package/_types/actions/parsers/trade/buyCrypto.d.ts.map +0 -1
  1173. package/_types/actions/parsers/trade/buyNft.d.ts +0 -4
  1174. package/_types/actions/parsers/trade/buyNft.d.ts.map +0 -1
  1175. package/_types/actions/parsers/trade/index.d.ts +0 -7
  1176. package/_types/actions/parsers/trade/index.d.ts.map +0 -1
  1177. package/_types/actions/parsers/trade/mintNft.d.ts +0 -4
  1178. package/_types/actions/parsers/trade/mintNft.d.ts.map +0 -1
  1179. package/_types/actions/parsers/trade/sellCrypto.d.ts +0 -4
  1180. package/_types/actions/parsers/trade/sellCrypto.d.ts.map +0 -1
  1181. package/_types/actions/parsers/trade/sellNft.d.ts +0 -4
  1182. package/_types/actions/parsers/trade/sellNft.d.ts.map +0 -1
  1183. package/_types/actions/parsers/trade/trade.d.ts +0 -4
  1184. package/_types/actions/parsers/trade/trade.d.ts.map +0 -1
  1185. package/_types/actions/parsers/transfer/index.d.ts +0 -2
  1186. package/_types/actions/parsers/transfer/index.d.ts.map +0 -1
  1187. package/_types/actions/parsers/transfer/transfer.d.ts +0 -4
  1188. package/_types/actions/parsers/transfer/transfer.d.ts.map +0 -1
  1189. package/_types/actions/parsers/types.d.ts +0 -8
  1190. package/_types/actions/parsers/types.d.ts.map +0 -1
  1191. package/_types/actions/parsers/valuedown/index.d.ts +0 -2
  1192. package/_types/actions/parsers/valuedown/index.d.ts.map +0 -1
  1193. package/_types/actions/parsers/valuedown/valuedown.d.ts +0 -4
  1194. package/_types/actions/parsers/valuedown/valuedown.d.ts.map +0 -1
  1195. package/_types/actions/parsers/valueup/index.d.ts +0 -2
  1196. package/_types/actions/parsers/valueup/index.d.ts.map +0 -1
  1197. package/_types/actions/parsers/valueup/valueup.d.ts +0 -4
  1198. package/_types/actions/parsers/valueup/valueup.d.ts.map +0 -1
  1199. package/_types/actions/parsers/withdraw/index.d.ts +0 -5
  1200. package/_types/actions/parsers/withdraw/index.d.ts.map +0 -1
  1201. package/_types/actions/parsers/withdraw/removeLiquidity.d.ts +0 -4
  1202. package/_types/actions/parsers/withdraw/removeLiquidity.d.ts.map +0 -1
  1203. package/_types/actions/parsers/withdraw/unstake.d.ts +0 -4
  1204. package/_types/actions/parsers/withdraw/unstake.d.ts.map +0 -1
  1205. package/_types/actions/parsers/withdraw/withdraw.d.ts +0 -4
  1206. package/_types/actions/parsers/withdraw/withdraw.d.ts.map +0 -1
  1207. package/_types/actions/parsers/withdraw/withdrawWithBond.d.ts +0 -4
  1208. package/_types/actions/parsers/withdraw/withdrawWithBond.d.ts.map +0 -1
  1209. package/_types/actions/schemas/action.d.ts +0 -106
  1210. package/_types/actions/schemas/action.d.ts.map +0 -1
  1211. package/_types/actions/schemas/borrow/borrow.d.ts +0 -4829
  1212. package/_types/actions/schemas/borrow/borrow.d.ts.map +0 -1
  1213. package/_types/actions/schemas/borrow/index.d.ts +0 -2
  1214. package/_types/actions/schemas/borrow/index.d.ts.map +0 -1
  1215. package/_types/actions/schemas/crossActionBundle.d.ts +0 -10726
  1216. package/_types/actions/schemas/crossActionBundle.d.ts.map +0 -1
  1217. package/_types/actions/schemas/crossReplace/bridgeFrom.d.ts +0 -4839
  1218. package/_types/actions/schemas/crossReplace/bridgeFrom.d.ts.map +0 -1
  1219. package/_types/actions/schemas/crossReplace/bridgeTo.d.ts +0 -4839
  1220. package/_types/actions/schemas/crossReplace/bridgeTo.d.ts.map +0 -1
  1221. package/_types/actions/schemas/crossReplace/crossReplace.d.ts +0 -5101
  1222. package/_types/actions/schemas/crossReplace/crossReplace.d.ts.map +0 -1
  1223. package/_types/actions/schemas/crossReplace/index.d.ts +0 -4
  1224. package/_types/actions/schemas/crossReplace/index.d.ts.map +0 -1
  1225. package/_types/actions/schemas/crossTrade/crossTrade.d.ts +0 -5101
  1226. package/_types/actions/schemas/crossTrade/crossTrade.d.ts.map +0 -1
  1227. package/_types/actions/schemas/crossTrade/index.d.ts +0 -2
  1228. package/_types/actions/schemas/crossTrade/index.d.ts.map +0 -1
  1229. package/_types/actions/schemas/default/accountAction.d.ts +0 -4790
  1230. package/_types/actions/schemas/default/accountAction.d.ts.map +0 -1
  1231. package/_types/actions/schemas/default/index.d.ts +0 -5
  1232. package/_types/actions/schemas/default/index.d.ts.map +0 -1
  1233. package/_types/actions/schemas/default/normalAction.d.ts +0 -4773
  1234. package/_types/actions/schemas/default/normalAction.d.ts.map +0 -1
  1235. package/_types/actions/schemas/default/transfer.d.ts +0 -6329
  1236. package/_types/actions/schemas/default/transfer.d.ts.map +0 -1
  1237. package/_types/actions/schemas/default/unions.d.ts +0 -5
  1238. package/_types/actions/schemas/default/unions.d.ts.map +0 -1
  1239. package/_types/actions/schemas/deposit/addLiquidity.d.ts +0 -6959
  1240. package/_types/actions/schemas/deposit/addLiquidity.d.ts.map +0 -1
  1241. package/_types/actions/schemas/deposit/deposit.d.ts +0 -4829
  1242. package/_types/actions/schemas/deposit/deposit.d.ts.map +0 -1
  1243. package/_types/actions/schemas/deposit/depositWithBond.d.ts +0 -6959
  1244. package/_types/actions/schemas/deposit/depositWithBond.d.ts.map +0 -1
  1245. package/_types/actions/schemas/deposit/index.d.ts +0 -5
  1246. package/_types/actions/schemas/deposit/index.d.ts.map +0 -1
  1247. package/_types/actions/schemas/deposit/stake.d.ts +0 -4829
  1248. package/_types/actions/schemas/deposit/stake.d.ts.map +0 -1
  1249. package/_types/actions/schemas/fee/fee.d.ts +0 -4765
  1250. package/_types/actions/schemas/fee/fee.d.ts.map +0 -1
  1251. package/_types/actions/schemas/fee/index.d.ts +0 -3
  1252. package/_types/actions/schemas/fee/index.d.ts.map +0 -1
  1253. package/_types/actions/schemas/fee/transactionFee.d.ts +0 -3873
  1254. package/_types/actions/schemas/fee/transactionFee.d.ts.map +0 -1
  1255. package/_types/actions/schemas/ignore/approve.d.ts +0 -2687
  1256. package/_types/actions/schemas/ignore/approve.d.ts.map +0 -1
  1257. package/_types/actions/schemas/ignore/failTx.d.ts +0 -2687
  1258. package/_types/actions/schemas/ignore/failTx.d.ts.map +0 -1
  1259. package/_types/actions/schemas/ignore/ignore.d.ts +0 -1913
  1260. package/_types/actions/schemas/ignore/ignore.d.ts.map +0 -1
  1261. package/_types/actions/schemas/ignore/index.d.ts +0 -9
  1262. package/_types/actions/schemas/ignore/index.d.ts.map +0 -1
  1263. package/_types/actions/schemas/ignore/move.d.ts +0 -1913
  1264. package/_types/actions/schemas/ignore/move.d.ts.map +0 -1
  1265. package/_types/actions/schemas/ignore/receiveFromCex.d.ts +0 -4817
  1266. package/_types/actions/schemas/ignore/receiveFromCex.d.ts.map +0 -1
  1267. package/_types/actions/schemas/ignore/revoke.d.ts +0 -2687
  1268. package/_types/actions/schemas/ignore/revoke.d.ts.map +0 -1
  1269. package/_types/actions/schemas/ignore/sendToCex.d.ts +0 -4817
  1270. package/_types/actions/schemas/ignore/sendToCex.d.ts.map +0 -1
  1271. package/_types/actions/schemas/ignore/spam.d.ts +0 -6947
  1272. package/_types/actions/schemas/ignore/spam.d.ts.map +0 -1
  1273. package/_types/actions/schemas/income/atomicArbitrage.d.ts +0 -5059
  1274. package/_types/actions/schemas/income/atomicArbitrage.d.ts.map +0 -1
  1275. package/_types/actions/schemas/income/freeMintNft.d.ts +0 -3631
  1276. package/_types/actions/schemas/income/freeMintNft.d.ts.map +0 -1
  1277. package/_types/actions/schemas/income/income.d.ts +0 -3883
  1278. package/_types/actions/schemas/income/income.d.ts.map +0 -1
  1279. package/_types/actions/schemas/income/index.d.ts +0 -6
  1280. package/_types/actions/schemas/income/index.d.ts.map +0 -1
  1281. package/_types/actions/schemas/income/nftRoyalty.d.ts +0 -2389
  1282. package/_types/actions/schemas/income/nftRoyalty.d.ts.map +0 -1
  1283. package/_types/actions/schemas/income/swapIncome.d.ts +0 -2415
  1284. package/_types/actions/schemas/income/swapIncome.d.ts.map +0 -1
  1285. package/_types/actions/schemas/index.d.ts +0 -19
  1286. package/_types/actions/schemas/index.d.ts.map +0 -1
  1287. package/_types/actions/schemas/reduce/index.d.ts +0 -2
  1288. package/_types/actions/schemas/reduce/index.d.ts.map +0 -1
  1289. package/_types/actions/schemas/reduce/reduce.d.ts +0 -2415
  1290. package/_types/actions/schemas/reduce/reduce.d.ts.map +0 -1
  1291. package/_types/actions/schemas/repayment/index.d.ts +0 -3
  1292. package/_types/actions/schemas/repayment/index.d.ts.map +0 -1
  1293. package/_types/actions/schemas/repayment/repayment.d.ts +0 -4829
  1294. package/_types/actions/schemas/repayment/repayment.d.ts.map +0 -1
  1295. package/_types/actions/schemas/repayment/repaymentWithDebt.d.ts +0 -6959
  1296. package/_types/actions/schemas/repayment/repaymentWithDebt.d.ts.map +0 -1
  1297. package/_types/actions/schemas/replace/index.d.ts +0 -5
  1298. package/_types/actions/schemas/replace/index.d.ts.map +0 -1
  1299. package/_types/actions/schemas/replace/replace.d.ts +0 -6947
  1300. package/_types/actions/schemas/replace/replace.d.ts.map +0 -1
  1301. package/_types/actions/schemas/replace/swapNft.d.ts +0 -4575
  1302. package/_types/actions/schemas/replace/swapNft.d.ts.map +0 -1
  1303. package/_types/actions/schemas/replace/unwrap.d.ts +0 -5059
  1304. package/_types/actions/schemas/replace/unwrap.d.ts.map +0 -1
  1305. package/_types/actions/schemas/replace/wrap.d.ts +0 -5059
  1306. package/_types/actions/schemas/replace/wrap.d.ts.map +0 -1
  1307. package/_types/actions/schemas/trade/buyCrypto.d.ts +0 -4765
  1308. package/_types/actions/schemas/trade/buyCrypto.d.ts.map +0 -1
  1309. package/_types/actions/schemas/trade/buyNft.d.ts +0 -5709
  1310. package/_types/actions/schemas/trade/buyNft.d.ts.map +0 -1
  1311. package/_types/actions/schemas/trade/index.d.ts +0 -7
  1312. package/_types/actions/schemas/trade/index.d.ts.map +0 -1
  1313. package/_types/actions/schemas/trade/mintNft.d.ts +0 -5709
  1314. package/_types/actions/schemas/trade/mintNft.d.ts.map +0 -1
  1315. package/_types/actions/schemas/trade/sellCrypto.d.ts +0 -4765
  1316. package/_types/actions/schemas/trade/sellCrypto.d.ts.map +0 -1
  1317. package/_types/actions/schemas/trade/sellNft.d.ts +0 -5709
  1318. package/_types/actions/schemas/trade/sellNft.d.ts.map +0 -1
  1319. package/_types/actions/schemas/trade/trade.d.ts +0 -5079
  1320. package/_types/actions/schemas/trade/trade.d.ts.map +0 -1
  1321. package/_types/actions/schemas/transfer/index.d.ts +0 -3
  1322. package/_types/actions/schemas/transfer/index.d.ts.map +0 -1
  1323. package/_types/actions/schemas/transfer/swapTransfer.d.ts +0 -2415
  1324. package/_types/actions/schemas/transfer/swapTransfer.d.ts.map +0 -1
  1325. package/_types/actions/schemas/transfer/transfer.d.ts +0 -3848
  1326. package/_types/actions/schemas/transfer/transfer.d.ts.map +0 -1
  1327. package/_types/actions/schemas/valuedown/index.d.ts +0 -2
  1328. package/_types/actions/schemas/valuedown/index.d.ts.map +0 -1
  1329. package/_types/actions/schemas/valuedown/valuedown.d.ts +0 -4037
  1330. package/_types/actions/schemas/valuedown/valuedown.d.ts.map +0 -1
  1331. package/_types/actions/schemas/valueup/index.d.ts +0 -2
  1332. package/_types/actions/schemas/valueup/index.d.ts.map +0 -1
  1333. package/_types/actions/schemas/valueup/valueup.d.ts +0 -4037
  1334. package/_types/actions/schemas/valueup/valueup.d.ts.map +0 -1
  1335. package/_types/actions/schemas/withdraw/index.d.ts +0 -5
  1336. package/_types/actions/schemas/withdraw/index.d.ts.map +0 -1
  1337. package/_types/actions/schemas/withdraw/removeLiquidity.d.ts +0 -6959
  1338. package/_types/actions/schemas/withdraw/removeLiquidity.d.ts.map +0 -1
  1339. package/_types/actions/schemas/withdraw/unstake.d.ts +0 -4829
  1340. package/_types/actions/schemas/withdraw/unstake.d.ts.map +0 -1
  1341. package/_types/actions/schemas/withdraw/withdraw.d.ts +0 -4829
  1342. package/_types/actions/schemas/withdraw/withdraw.d.ts.map +0 -1
  1343. package/_types/actions/schemas/withdraw/withdrawWithBond.d.ts +0 -6959
  1344. package/_types/actions/schemas/withdraw/withdrawWithBond.d.ts.map +0 -1
  1345. package/_types/actions/types/action.d.ts +0 -24
  1346. package/_types/actions/types/action.d.ts.map +0 -1
  1347. package/_types/actions/types/addLiquidity.d.ts +0 -5
  1348. package/_types/actions/types/addLiquidity.d.ts.map +0 -1
  1349. package/_types/actions/types/approve.d.ts +0 -5
  1350. package/_types/actions/types/approve.d.ts.map +0 -1
  1351. package/_types/actions/types/atomicArbitrage.d.ts +0 -5
  1352. package/_types/actions/types/atomicArbitrage.d.ts.map +0 -1
  1353. package/_types/actions/types/borrow.d.ts +0 -5
  1354. package/_types/actions/types/borrow.d.ts.map +0 -1
  1355. package/_types/actions/types/bridgeFrom.d.ts +0 -5
  1356. package/_types/actions/types/bridgeFrom.d.ts.map +0 -1
  1357. package/_types/actions/types/bridgeTo.d.ts +0 -5
  1358. package/_types/actions/types/bridgeTo.d.ts.map +0 -1
  1359. package/_types/actions/types/buyCrypto.d.ts +0 -5
  1360. package/_types/actions/types/buyCrypto.d.ts.map +0 -1
  1361. package/_types/actions/types/buyNft.d.ts +0 -5
  1362. package/_types/actions/types/buyNft.d.ts.map +0 -1
  1363. package/_types/actions/types/crossActionBundle.d.ts +0 -4
  1364. package/_types/actions/types/crossActionBundle.d.ts.map +0 -1
  1365. package/_types/actions/types/crossReplace.d.ts +0 -5
  1366. package/_types/actions/types/crossReplace.d.ts.map +0 -1
  1367. package/_types/actions/types/crossTrade.d.ts +0 -5
  1368. package/_types/actions/types/crossTrade.d.ts.map +0 -1
  1369. package/_types/actions/types/default.d.ts +0 -16
  1370. package/_types/actions/types/default.d.ts.map +0 -1
  1371. package/_types/actions/types/deposit.d.ts +0 -5
  1372. package/_types/actions/types/deposit.d.ts.map +0 -1
  1373. package/_types/actions/types/depositWithBond.d.ts +0 -5
  1374. package/_types/actions/types/depositWithBond.d.ts.map +0 -1
  1375. package/_types/actions/types/failTx.d.ts +0 -5
  1376. package/_types/actions/types/failTx.d.ts.map +0 -1
  1377. package/_types/actions/types/fee.d.ts +0 -5
  1378. package/_types/actions/types/fee.d.ts.map +0 -1
  1379. package/_types/actions/types/freeMintNft.d.ts +0 -6
  1380. package/_types/actions/types/freeMintNft.d.ts.map +0 -1
  1381. package/_types/actions/types/ignore.d.ts +0 -4
  1382. package/_types/actions/types/ignore.d.ts.map +0 -1
  1383. package/_types/actions/types/income.d.ts +0 -5
  1384. package/_types/actions/types/income.d.ts.map +0 -1
  1385. package/_types/actions/types/index.d.ts +0 -49
  1386. package/_types/actions/types/index.d.ts.map +0 -1
  1387. package/_types/actions/types/mintNft.d.ts +0 -5
  1388. package/_types/actions/types/mintNft.d.ts.map +0 -1
  1389. package/_types/actions/types/move.d.ts +0 -4
  1390. package/_types/actions/types/move.d.ts.map +0 -1
  1391. package/_types/actions/types/nftRoyalty.d.ts +0 -4
  1392. package/_types/actions/types/nftRoyalty.d.ts.map +0 -1
  1393. package/_types/actions/types/receiveFromCex.d.ts +0 -5
  1394. package/_types/actions/types/receiveFromCex.d.ts.map +0 -1
  1395. package/_types/actions/types/reduce.d.ts +0 -4
  1396. package/_types/actions/types/reduce.d.ts.map +0 -1
  1397. package/_types/actions/types/removeLiquidity.d.ts +0 -5
  1398. package/_types/actions/types/removeLiquidity.d.ts.map +0 -1
  1399. package/_types/actions/types/repayment.d.ts +0 -5
  1400. package/_types/actions/types/repayment.d.ts.map +0 -1
  1401. package/_types/actions/types/repaymentWithDebt.d.ts +0 -5
  1402. package/_types/actions/types/repaymentWithDebt.d.ts.map +0 -1
  1403. package/_types/actions/types/replace.d.ts +0 -5
  1404. package/_types/actions/types/replace.d.ts.map +0 -1
  1405. package/_types/actions/types/revoke.d.ts +0 -5
  1406. package/_types/actions/types/revoke.d.ts.map +0 -1
  1407. package/_types/actions/types/sellCrypto.d.ts +0 -5
  1408. package/_types/actions/types/sellCrypto.d.ts.map +0 -1
  1409. package/_types/actions/types/sellNft.d.ts +0 -5
  1410. package/_types/actions/types/sellNft.d.ts.map +0 -1
  1411. package/_types/actions/types/sendToCex.d.ts +0 -5
  1412. package/_types/actions/types/sendToCex.d.ts.map +0 -1
  1413. package/_types/actions/types/spam.d.ts +0 -5
  1414. package/_types/actions/types/spam.d.ts.map +0 -1
  1415. package/_types/actions/types/stake.d.ts +0 -5
  1416. package/_types/actions/types/stake.d.ts.map +0 -1
  1417. package/_types/actions/types/swapIncome.d.ts +0 -4
  1418. package/_types/actions/types/swapIncome.d.ts.map +0 -1
  1419. package/_types/actions/types/swapNft.d.ts +0 -5
  1420. package/_types/actions/types/swapNft.d.ts.map +0 -1
  1421. package/_types/actions/types/swapTransfer.d.ts +0 -4
  1422. package/_types/actions/types/swapTransfer.d.ts.map +0 -1
  1423. package/_types/actions/types/trade.d.ts +0 -5
  1424. package/_types/actions/types/trade.d.ts.map +0 -1
  1425. package/_types/actions/types/transactionFee.d.ts +0 -5
  1426. package/_types/actions/types/transactionFee.d.ts.map +0 -1
  1427. package/_types/actions/types/transfer.d.ts +0 -5
  1428. package/_types/actions/types/transfer.d.ts.map +0 -1
  1429. package/_types/actions/types/unstake.d.ts +0 -5
  1430. package/_types/actions/types/unstake.d.ts.map +0 -1
  1431. package/_types/actions/types/unwrap.d.ts +0 -5
  1432. package/_types/actions/types/unwrap.d.ts.map +0 -1
  1433. package/_types/actions/types/valuedown.d.ts +0 -5
  1434. package/_types/actions/types/valuedown.d.ts.map +0 -1
  1435. package/_types/actions/types/valueup.d.ts +0 -5
  1436. package/_types/actions/types/valueup.d.ts.map +0 -1
  1437. package/_types/actions/types/withdraw.d.ts +0 -5
  1438. package/_types/actions/types/withdraw.d.ts.map +0 -1
  1439. package/_types/actions/types/withdrawWithBond.d.ts +0 -5
  1440. package/_types/actions/types/withdrawWithBond.d.ts.map +0 -1
  1441. package/_types/actions/types/wrap.d.ts +0 -5
  1442. package/_types/actions/types/wrap.d.ts.map +0 -1
  1443. package/_types/actions/utils/checkIfAccountActionsIsValid.d.ts +0 -9
  1444. package/_types/actions/utils/checkIfAccountActionsIsValid.d.ts.map +0 -1
  1445. package/_types/actions/utils/createEvidenceNoneAccountActions.d.ts +0 -10
  1446. package/_types/actions/utils/createEvidenceNoneAccountActions.d.ts.map +0 -1
  1447. package/_types/actions/utils/parseBaseAccountActionToAccountAction.d.ts +0 -3
  1448. package/_types/actions/utils/parseBaseAccountActionToAccountAction.d.ts.map +0 -1
  1449. package/_types/actions/utils/parseBaseNormalActionToNormalAction.d.ts +0 -3
  1450. package/_types/actions/utils/parseBaseNormalActionToNormalAction.d.ts.map +0 -1
  1451. package/_types/actions/utils/transfer.d.ts +0 -11
  1452. package/_types/actions/utils/transfer.d.ts.map +0 -1
  1453. package/_types/assets/creates/index.d.ts +0 -3
  1454. package/_types/assets/creates/index.d.ts.map +0 -1
  1455. package/_types/assets/definitions/coingeckoCryptoCurrencyDataSource.d.ts +0 -40
  1456. package/_types/assets/definitions/coingeckoCryptoCurrencyDataSource.d.ts.map +0 -1
  1457. package/_types/assets/definitions/index.d.ts +0 -19
  1458. package/_types/assets/definitions/index.d.ts.map +0 -1
  1459. package/_types/assets/externals/coingecko/constants.d.ts +0 -2
  1460. package/_types/assets/externals/coingecko/constants.d.ts.map +0 -1
  1461. package/_types/assets/externals/coingecko/getAutoRetry.d.ts +0 -4
  1462. package/_types/assets/externals/coingecko/getAutoRetry.d.ts.map +0 -1
  1463. package/_types/assets/externals/coingecko/getCoinMarketChartRange.d.ts +0 -49
  1464. package/_types/assets/externals/coingecko/getCoinMarketChartRange.d.ts.map +0 -1
  1465. package/_types/assets/externals/coingecko/getCoinsMarkets.d.ts +0 -58
  1466. package/_types/assets/externals/coingecko/getCoinsMarkets.d.ts.map +0 -1
  1467. package/_types/assets/externals/coingecko/index.d.ts +0 -3
  1468. package/_types/assets/externals/coingecko/index.d.ts.map +0 -1
  1469. package/_types/assets/externals/index.d.ts +0 -2
  1470. package/_types/assets/externals/index.d.ts.map +0 -1
  1471. package/_types/portfolios/createPortfolio.d.ts +0 -2
  1472. package/_types/portfolios/createPortfolio.d.ts.map +0 -1
  1473. package/_types/portfolios/index.d.ts +0 -3
  1474. package/_types/portfolios/index.d.ts.map +0 -1
  1475. package/_types/portfolios/type.d.ts +0 -4
  1476. package/_types/portfolios/type.d.ts.map +0 -1
  1477. package/_types/setAccountActionPrices.d.ts +0 -3943
  1478. package/_types/setAccountActionPrices.d.ts.map +0 -1
  1479. package/_types/tests/constants.d.ts +0 -2
  1480. package/_types/tests/constants.d.ts.map +0 -1
  1481. package/_types/tests/index.d.ts +0 -3
  1482. package/_types/tests/index.d.ts.map +0 -1
  1483. package/_types/tests/utils.d.ts +0 -3
  1484. package/_types/tests/utils.d.ts.map +0 -1
  1485. package/accounts/index.ts +0 -1
  1486. package/accounts/types/account.ts +0 -5
  1487. package/accounts/types/index.ts +0 -1
  1488. package/actions/parsers/action.ts +0 -381
  1489. package/actions/parsers/borrow/borrow.ts +0 -47
  1490. package/actions/parsers/borrow/index.ts +0 -1
  1491. package/actions/parsers/crossReplace/bridgeFrom.ts +0 -48
  1492. package/actions/parsers/crossReplace/bridgeTo.ts +0 -48
  1493. package/actions/parsers/crossReplace/crossReplace.ts +0 -48
  1494. package/actions/parsers/crossReplace/index.ts +0 -3
  1495. package/actions/parsers/crossTrade/crossTrade.ts +0 -48
  1496. package/actions/parsers/crossTrade/index.ts +0 -1
  1497. package/actions/parsers/default.ts +0 -210
  1498. package/actions/parsers/deposit/addLiquidity.ts +0 -47
  1499. package/actions/parsers/deposit/deposit.ts +0 -47
  1500. package/actions/parsers/deposit/depositWithBond.ts +0 -47
  1501. package/actions/parsers/deposit/index.ts +0 -4
  1502. package/actions/parsers/deposit/stake.ts +0 -47
  1503. package/actions/parsers/fee/fee.ts +0 -70
  1504. package/actions/parsers/fee/index.ts +0 -2
  1505. package/actions/parsers/fee/transactionFee.ts +0 -46
  1506. package/actions/parsers/ignore/approve.ts +0 -18
  1507. package/actions/parsers/ignore/failTx.ts +0 -18
  1508. package/actions/parsers/ignore/index.ts +0 -6
  1509. package/actions/parsers/ignore/receiveFromCex.ts +0 -29
  1510. package/actions/parsers/ignore/revoke.ts +0 -18
  1511. package/actions/parsers/ignore/sendToCex.ts +0 -29
  1512. package/actions/parsers/ignore/spam.ts +0 -47
  1513. package/actions/parsers/income/atomicArbitrage.ts +0 -162
  1514. package/actions/parsers/income/freeMintNft.ts +0 -46
  1515. package/actions/parsers/income/income.ts +0 -57
  1516. package/actions/parsers/income/index.ts +0 -3
  1517. package/actions/parsers/index.ts +0 -58
  1518. package/actions/parsers/repayment/index.ts +0 -2
  1519. package/actions/parsers/repayment/repayment.ts +0 -47
  1520. package/actions/parsers/repayment/repaymentWithDebt.ts +0 -47
  1521. package/actions/parsers/replace/index.ts +0 -4
  1522. package/actions/parsers/replace/replace.ts +0 -46
  1523. package/actions/parsers/replace/swapNft.ts +0 -46
  1524. package/actions/parsers/replace/unwrap.ts +0 -46
  1525. package/actions/parsers/replace/wrap.ts +0 -46
  1526. package/actions/parsers/trade/buyCrypto.ts +0 -81
  1527. package/actions/parsers/trade/buyNft.ts +0 -208
  1528. package/actions/parsers/trade/index.ts +0 -6
  1529. package/actions/parsers/trade/mintNft.ts +0 -167
  1530. package/actions/parsers/trade/sellCrypto.ts +0 -81
  1531. package/actions/parsers/trade/sellNft.ts +0 -209
  1532. package/actions/parsers/trade/trade.ts +0 -279
  1533. package/actions/parsers/transfer/index.ts +0 -1
  1534. package/actions/parsers/transfer/transfer.ts +0 -32
  1535. package/actions/parsers/types.ts +0 -10
  1536. package/actions/parsers/valuedown/index.ts +0 -1
  1537. package/actions/parsers/valuedown/valuedown.ts +0 -47
  1538. package/actions/parsers/valueup/index.ts +0 -1
  1539. package/actions/parsers/valueup/valueup.ts +0 -47
  1540. package/actions/parsers/withdraw/index.ts +0 -4
  1541. package/actions/parsers/withdraw/removeLiquidity.ts +0 -47
  1542. package/actions/parsers/withdraw/unstake.ts +0 -47
  1543. package/actions/parsers/withdraw/withdraw.ts +0 -47
  1544. package/actions/parsers/withdraw/withdrawWithBond.ts +0 -47
  1545. package/actions/schemas/action.ts +0 -361
  1546. package/actions/schemas/borrow/borrow.ts +0 -33
  1547. package/actions/schemas/borrow/index.ts +0 -1
  1548. package/actions/schemas/crossActionBundle.ts +0 -19
  1549. package/actions/schemas/crossReplace/bridgeFrom.ts +0 -33
  1550. package/actions/schemas/crossReplace/bridgeTo.ts +0 -33
  1551. package/actions/schemas/crossReplace/crossReplace.ts +0 -29
  1552. package/actions/schemas/crossReplace/index.ts +0 -12
  1553. package/actions/schemas/crossTrade/crossTrade.ts +0 -29
  1554. package/actions/schemas/crossTrade/index.ts +0 -4
  1555. package/actions/schemas/default/accountAction.ts +0 -38
  1556. package/actions/schemas/default/index.ts +0 -27
  1557. package/actions/schemas/default/normalAction.ts +0 -29
  1558. package/actions/schemas/default/transfer.ts +0 -154
  1559. package/actions/schemas/default/unions.ts +0 -99
  1560. package/actions/schemas/deposit/addLiquidity.ts +0 -45
  1561. package/actions/schemas/deposit/deposit.ts +0 -33
  1562. package/actions/schemas/deposit/depositWithBond.ts +0 -45
  1563. package/actions/schemas/deposit/index.ts +0 -13
  1564. package/actions/schemas/deposit/stake.ts +0 -33
  1565. package/actions/schemas/fee/fee.ts +0 -33
  1566. package/actions/schemas/fee/index.ts +0 -5
  1567. package/actions/schemas/fee/transactionFee.ts +0 -29
  1568. package/actions/schemas/ignore/approve.ts +0 -27
  1569. package/actions/schemas/ignore/failTx.ts +0 -27
  1570. package/actions/schemas/ignore/ignore.ts +0 -12
  1571. package/actions/schemas/ignore/index.ts +0 -17
  1572. package/actions/schemas/ignore/move.ts +0 -12
  1573. package/actions/schemas/ignore/receiveFromCex.ts +0 -34
  1574. package/actions/schemas/ignore/revoke.ts +0 -27
  1575. package/actions/schemas/ignore/sendToCex.ts +0 -33
  1576. package/actions/schemas/ignore/spam.ts +0 -45
  1577. package/actions/schemas/income/atomicArbitrage.ts +0 -40
  1578. package/actions/schemas/income/freeMintNft.ts +0 -28
  1579. package/actions/schemas/income/income.ts +0 -28
  1580. package/actions/schemas/income/index.ts +0 -11
  1581. package/actions/schemas/income/nftRoyalty.ts +0 -19
  1582. package/actions/schemas/income/swapIncome.ts +0 -19
  1583. package/actions/schemas/index.ts +0 -131
  1584. package/actions/schemas/reduce/index.ts +0 -1
  1585. package/actions/schemas/reduce/reduce.ts +0 -19
  1586. package/actions/schemas/repayment/index.ts +0 -8
  1587. package/actions/schemas/repayment/repayment.ts +0 -33
  1588. package/actions/schemas/repayment/repaymentWithDebt.ts +0 -46
  1589. package/actions/schemas/replace/index.ts +0 -10
  1590. package/actions/schemas/replace/replace.ts +0 -45
  1591. package/actions/schemas/replace/swapNft.ts +0 -29
  1592. package/actions/schemas/replace/unwrap.ts +0 -39
  1593. package/actions/schemas/replace/wrap.ts +0 -39
  1594. package/actions/schemas/trade/buyCrypto.ts +0 -33
  1595. package/actions/schemas/trade/buyNft.ts +0 -42
  1596. package/actions/schemas/trade/index.ts +0 -18
  1597. package/actions/schemas/trade/mintNft.ts +0 -42
  1598. package/actions/schemas/trade/sellCrypto.ts +0 -33
  1599. package/actions/schemas/trade/sellNft.ts +0 -42
  1600. package/actions/schemas/trade/trade.ts +0 -29
  1601. package/actions/schemas/transfer/index.ts +0 -5
  1602. package/actions/schemas/transfer/swapTransfer.ts +0 -19
  1603. package/actions/schemas/transfer/transfer.ts +0 -27
  1604. package/actions/schemas/valuedown/index.ts +0 -4
  1605. package/actions/schemas/valuedown/valuedown.ts +0 -31
  1606. package/actions/schemas/valueup/index.ts +0 -4
  1607. package/actions/schemas/valueup/valueup.ts +0 -31
  1608. package/actions/schemas/withdraw/index.ts +0 -16
  1609. package/actions/schemas/withdraw/removeLiquidity.ts +0 -45
  1610. package/actions/schemas/withdraw/unstake.ts +0 -33
  1611. package/actions/schemas/withdraw/withdraw.ts +0 -33
  1612. package/actions/schemas/withdraw/withdrawWithBond.ts +0 -46
  1613. package/actions/types/action.ts +0 -37
  1614. package/actions/types/addLiquidity.ts +0 -13
  1615. package/actions/types/approve.ts +0 -9
  1616. package/actions/types/atomicArbitrage.ts +0 -13
  1617. package/actions/types/borrow.ts +0 -9
  1618. package/actions/types/bridgeFrom.ts +0 -13
  1619. package/actions/types/bridgeTo.ts +0 -9
  1620. package/actions/types/buyCrypto.ts +0 -11
  1621. package/actions/types/buyNft.ts +0 -9
  1622. package/actions/types/crossActionBundle.ts +0 -4
  1623. package/actions/types/crossReplace.ts +0 -13
  1624. package/actions/types/crossTrade.ts +0 -13
  1625. package/actions/types/default.ts +0 -54
  1626. package/actions/types/deposit.ts +0 -9
  1627. package/actions/types/depositWithBond.ts +0 -13
  1628. package/actions/types/failTx.ts +0 -9
  1629. package/actions/types/fee.ts +0 -6
  1630. package/actions/types/freeMintNft.ts +0 -15
  1631. package/actions/types/ignore.ts +0 -4
  1632. package/actions/types/income.ts +0 -9
  1633. package/actions/types/index.ts +0 -109
  1634. package/actions/types/mintNft.ts +0 -9
  1635. package/actions/types/move.ts +0 -4
  1636. package/actions/types/nftRoyalty.ts +0 -6
  1637. package/actions/types/receiveFromCex.ts +0 -13
  1638. package/actions/types/reduce.ts +0 -4
  1639. package/actions/types/removeLiquidity.ts +0 -13
  1640. package/actions/types/repayment.ts +0 -11
  1641. package/actions/types/repaymentWithDebt.ts +0 -13
  1642. package/actions/types/replace.ts +0 -9
  1643. package/actions/types/revoke.ts +0 -9
  1644. package/actions/types/sellCrypto.ts +0 -13
  1645. package/actions/types/sellNft.ts +0 -9
  1646. package/actions/types/sendToCex.ts +0 -11
  1647. package/actions/types/spam.ts +0 -9
  1648. package/actions/types/stake.ts +0 -9
  1649. package/actions/types/swapIncome.ts +0 -6
  1650. package/actions/types/swapNft.ts +0 -9
  1651. package/actions/types/swapTransfer.ts +0 -6
  1652. package/actions/types/trade.ts +0 -9
  1653. package/actions/types/transactionFee.ts +0 -13
  1654. package/actions/types/transfer.ts +0 -9
  1655. package/actions/types/unstake.ts +0 -9
  1656. package/actions/types/unwrap.ts +0 -9
  1657. package/actions/types/valuedown.ts +0 -11
  1658. package/actions/types/valueup.ts +0 -9
  1659. package/actions/types/withdraw.ts +0 -9
  1660. package/actions/types/withdrawWithBond.ts +0 -13
  1661. package/actions/types/wrap.ts +0 -9
  1662. package/actions/utils/checkIfAccountActionsIsValid.ts +0 -129
  1663. package/actions/utils/createEvidenceNoneAccountActions.ts +0 -309
  1664. package/actions/utils/parseBaseAccountActionToAccountAction.ts +0 -1043
  1665. package/actions/utils/parseBaseNormalActionToNormalAction.ts +0 -874
  1666. package/actions/utils/transfer.ts +0 -57
  1667. package/assets/creates/index.ts +0 -2
  1668. package/assets/definitions/coingeckoCryptoCurrencyDataSource.ts +0 -167
  1669. package/assets/definitions/index.ts +0 -18
  1670. package/assets/externals/coingecko/constants.ts +0 -1
  1671. package/assets/externals/coingecko/getAutoRetry.ts +0 -35
  1672. package/assets/externals/coingecko/getCoinMarketChartRange.ts +0 -88
  1673. package/assets/externals/coingecko/getCoinsMarkets.ts +0 -106
  1674. package/assets/externals/coingecko/index.ts +0 -2
  1675. package/assets/externals/index.ts +0 -1
  1676. package/portfolios/createPortfolio.ts +0 -3
  1677. package/portfolios/index.ts +0 -2
  1678. package/portfolios/type.ts +0 -3
  1679. package/setAccountActionPrices.ts +0 -131
  1680. package/tests/constants.ts +0 -1
  1681. package/tests/index.ts +0 -2
  1682. package/tests/utils.ts +0 -25
@@ -1,3848 +0,0 @@
1
- import { z } from 'zod';
2
- export declare const normalActionTransferSchema: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<{
3
- type: z.ZodLiteral<"NormalAction">;
4
- action: z.ZodUnion<[z.ZodLiteral<"add-liquidity">, z.ZodLiteral<"approve">, z.ZodLiteral<"atomic-arbitrage">, z.ZodLiteral<"borrow">, z.ZodLiteral<"bridge-from">, z.ZodLiteral<"bridge-to">, z.ZodLiteral<"buy-nft">, z.ZodLiteral<"buy-crypto">, z.ZodLiteral<"cross-replace">, z.ZodLiteral<"cross-trade">, z.ZodLiteral<"deposit">, z.ZodLiteral<"deposit-with-bond">, z.ZodLiteral<"fail-tx">, z.ZodLiteral<"fee">, z.ZodLiteral<"free-mint-nft">, z.ZodLiteral<"mint-nft">, z.ZodLiteral<"remove-liquidity">, z.ZodLiteral<"repayment">, z.ZodLiteral<"repayment-with-debt">, z.ZodLiteral<"revoke">, z.ZodLiteral<"sell-crypto">, z.ZodLiteral<"spam">, z.ZodLiteral<"stake">, z.ZodLiteral<"swap-nft">, z.ZodLiteral<"trade">, z.ZodLiteral<"transaction-fee">, z.ZodLiteral<"transfer">, z.ZodLiteral<"unstake">, z.ZodLiteral<"unwrap">, z.ZodLiteral<"valuedown">, z.ZodLiteral<"valueup">, z.ZodLiteral<"withdraw">, z.ZodLiteral<"withdraw-with-bond">, z.ZodLiteral<"wrap">]>;
5
- evidence: z.ZodUnion<[z.ZodLiteral<"contract">, z.ZodLiteral<"system-rule">, z.ZodLiteral<"user-rule">, z.ZodLiteral<"manual-check">, z.ZodLiteral<"none">]>;
6
- timestamp: z.ZodNumber;
7
- comment: z.ZodOptional<z.ZodString>;
8
- app: z.ZodOptional<z.ZodEffects<z.ZodObject<{
9
- id: z.ZodString;
10
- categories: z.ZodArray<z.ZodUnion<[z.ZodLiteral<"bridge">, z.ZodLiteral<"cex">, z.ZodLiteral<"cross-chain">, z.ZodLiteral<"dex">, z.ZodLiteral<"gaming">, z.ZodLiteral<"lending">, z.ZodLiteral<"nft-marketplace">, z.ZodLiteral<"other">]>, "many">;
11
- name: z.ZodString;
12
- description: z.ZodOptional<z.ZodString>;
13
- website: z.ZodOptional<z.ZodString>;
14
- icon: z.ZodOptional<z.ZodString>;
15
- }, "strip", z.ZodTypeAny, {
16
- id: string;
17
- name: string;
18
- categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
19
- icon?: string | undefined;
20
- description?: string | undefined;
21
- website?: string | undefined;
22
- }, {
23
- id: string;
24
- name: string;
25
- categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
26
- icon?: string | undefined;
27
- description?: string | undefined;
28
- website?: string | undefined;
29
- }>, {
30
- description: string | undefined;
31
- website: string | undefined;
32
- icon: string | undefined;
33
- id: string;
34
- name: string;
35
- categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
36
- }, {
37
- id: string;
38
- name: string;
39
- categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
40
- icon?: string | undefined;
41
- description?: string | undefined;
42
- website?: string | undefined;
43
- }>>;
44
- transfers: z.ZodArray<z.ZodUnion<[z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<{
45
- from: z.ZodOptional<z.ZodString>;
46
- to: z.ZodOptional<z.ZodString>;
47
- asset: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
48
- type: z.ZodLiteral<"CryptoCurrency">;
49
- id: z.ZodString;
50
- name: z.ZodString;
51
- symbol: z.ZodString;
52
- icon: z.ZodOptional<z.ZodString>;
53
- market: z.ZodEffects<z.ZodObject<{
54
- coingeckoId: z.ZodOptional<z.ZodString>;
55
- marketCapUsd: z.ZodOptional<z.ZodObject<{
56
- value: z.ZodBigInt;
57
- decimals: z.ZodNumber;
58
- }, "strip", z.ZodTypeAny, {
59
- value: bigint;
60
- decimals: number;
61
- }, {
62
- value: bigint;
63
- decimals: number;
64
- }>>;
65
- }, "strip", z.ZodTypeAny, {
66
- coingeckoId?: string | undefined;
67
- marketCapUsd?: {
68
- value: bigint;
69
- decimals: number;
70
- } | undefined;
71
- }, {
72
- coingeckoId?: string | undefined;
73
- marketCapUsd?: {
74
- value: bigint;
75
- decimals: number;
76
- } | undefined;
77
- }>, {
78
- coingeckoId: string | undefined;
79
- marketCapUsd: {
80
- value: bigint;
81
- decimals: number;
82
- } | undefined;
83
- }, {
84
- coingeckoId?: string | undefined;
85
- marketCapUsd?: {
86
- value: bigint;
87
- decimals: number;
88
- } | undefined;
89
- }>;
90
- priceDatasourceId: z.ZodOptional<z.ZodString>;
91
- updatedAt: z.ZodNumber;
92
- }, "strip", z.ZodTypeAny, {
93
- symbol: string;
94
- type: "CryptoCurrency";
95
- id: string;
96
- name: string;
97
- market: {
98
- coingeckoId: string | undefined;
99
- marketCapUsd: {
100
- value: bigint;
101
- decimals: number;
102
- } | undefined;
103
- };
104
- updatedAt: number;
105
- icon?: string | undefined;
106
- priceDatasourceId?: string | undefined;
107
- }, {
108
- symbol: string;
109
- type: "CryptoCurrency";
110
- id: string;
111
- name: string;
112
- market: {
113
- coingeckoId?: string | undefined;
114
- marketCapUsd?: {
115
- value: bigint;
116
- decimals: number;
117
- } | undefined;
118
- };
119
- updatedAt: number;
120
- icon?: string | undefined;
121
- priceDatasourceId?: string | undefined;
122
- }>, {
123
- icon: string | undefined;
124
- priceDatasourceId: string | undefined;
125
- symbol: string;
126
- type: "CryptoCurrency";
127
- id: string;
128
- name: string;
129
- market: {
130
- coingeckoId: string | undefined;
131
- marketCapUsd: {
132
- value: bigint;
133
- decimals: number;
134
- } | undefined;
135
- };
136
- updatedAt: number;
137
- }, {
138
- symbol: string;
139
- type: "CryptoCurrency";
140
- id: string;
141
- name: string;
142
- market: {
143
- coingeckoId?: string | undefined;
144
- marketCapUsd?: {
145
- value: bigint;
146
- decimals: number;
147
- } | undefined;
148
- };
149
- updatedAt: number;
150
- icon?: string | undefined;
151
- priceDatasourceId?: string | undefined;
152
- }>, z.ZodEffects<z.ZodObject<{
153
- type: z.ZodLiteral<"FiatCurrency">;
154
- id: z.ZodUnion<[z.ZodLiteral<"cny">, z.ZodLiteral<"eur">, z.ZodLiteral<"idr">, z.ZodLiteral<"jpy">, z.ZodLiteral<"krw">, z.ZodLiteral<"rub">, z.ZodLiteral<"twd">, z.ZodLiteral<"usd">]>;
155
- name: z.ZodString;
156
- symbol: z.ZodString;
157
- icon: z.ZodOptional<z.ZodString>;
158
- }, "strip", z.ZodTypeAny, {
159
- symbol: string;
160
- type: "FiatCurrency";
161
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
162
- name: string;
163
- icon?: string | undefined;
164
- }, {
165
- symbol: string;
166
- type: "FiatCurrency";
167
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
168
- name: string;
169
- icon?: string | undefined;
170
- }>, {
171
- icon: string | undefined;
172
- symbol: string;
173
- type: "FiatCurrency";
174
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
175
- name: string;
176
- }, {
177
- symbol: string;
178
- type: "FiatCurrency";
179
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
180
- name: string;
181
- icon?: string | undefined;
182
- }>, z.ZodEffects<z.ZodObject<{
183
- type: z.ZodLiteral<"Nft">;
184
- id: z.ZodString;
185
- name: z.ZodOptional<z.ZodString>;
186
- symbol: z.ZodOptional<z.ZodString>;
187
- image: z.ZodOptional<z.ZodString>;
188
- metadata: z.ZodOptional<z.ZodString>;
189
- updatedAt: z.ZodNumber;
190
- }, "strip", z.ZodTypeAny, {
191
- type: "Nft";
192
- id: string;
193
- updatedAt: number;
194
- symbol?: string | undefined;
195
- name?: string | undefined;
196
- image?: string | undefined;
197
- metadata?: string | undefined;
198
- }, {
199
- type: "Nft";
200
- id: string;
201
- updatedAt: number;
202
- symbol?: string | undefined;
203
- name?: string | undefined;
204
- image?: string | undefined;
205
- metadata?: string | undefined;
206
- }>, {
207
- name: string | undefined;
208
- symbol: string | undefined;
209
- image: string | undefined;
210
- metadata: string | undefined;
211
- type: "Nft";
212
- id: string;
213
- updatedAt: number;
214
- }, {
215
- type: "Nft";
216
- id: string;
217
- updatedAt: number;
218
- symbol?: string | undefined;
219
- name?: string | undefined;
220
- image?: string | undefined;
221
- metadata?: string | undefined;
222
- }>]>;
223
- amount: z.ZodObject<{
224
- value: z.ZodBigInt;
225
- decimals: z.ZodNumber;
226
- }, "strip", z.ZodTypeAny, {
227
- value: bigint;
228
- decimals: number;
229
- }, {
230
- value: bigint;
231
- decimals: number;
232
- }>;
233
- price: z.ZodOptional<z.ZodObject<{
234
- cryptoCurrencyId: z.ZodString;
235
- fiatCurrencyId: z.ZodString;
236
- price: z.ZodObject<{
237
- value: z.ZodBigInt;
238
- decimals: z.ZodNumber;
239
- }, "strip", z.ZodTypeAny, {
240
- value: bigint;
241
- decimals: number;
242
- }, {
243
- value: bigint;
244
- decimals: number;
245
- }>;
246
- timestamp: z.ZodNumber;
247
- }, "strip", z.ZodTypeAny, {
248
- cryptoCurrencyId: string;
249
- fiatCurrencyId: string;
250
- price: {
251
- value: bigint;
252
- decimals: number;
253
- };
254
- timestamp: number;
255
- }, {
256
- cryptoCurrencyId: string;
257
- fiatCurrencyId: string;
258
- price: {
259
- value: bigint;
260
- decimals: number;
261
- };
262
- timestamp: number;
263
- }>>;
264
- }, {
265
- direction: z.ZodLiteral<"in">;
266
- }>, "strip", z.ZodTypeAny, {
267
- asset: {
268
- icon: string | undefined;
269
- priceDatasourceId: string | undefined;
270
- symbol: string;
271
- type: "CryptoCurrency";
272
- id: string;
273
- name: string;
274
- market: {
275
- coingeckoId: string | undefined;
276
- marketCapUsd: {
277
- value: bigint;
278
- decimals: number;
279
- } | undefined;
280
- };
281
- updatedAt: number;
282
- } | {
283
- icon: string | undefined;
284
- symbol: string;
285
- type: "FiatCurrency";
286
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
287
- name: string;
288
- } | {
289
- name: string | undefined;
290
- symbol: string | undefined;
291
- image: string | undefined;
292
- metadata: string | undefined;
293
- type: "Nft";
294
- id: string;
295
- updatedAt: number;
296
- };
297
- amount: {
298
- value: bigint;
299
- decimals: number;
300
- };
301
- direction: "in";
302
- price?: {
303
- cryptoCurrencyId: string;
304
- fiatCurrencyId: string;
305
- price: {
306
- value: bigint;
307
- decimals: number;
308
- };
309
- timestamp: number;
310
- } | undefined;
311
- from?: string | undefined;
312
- to?: string | undefined;
313
- }, {
314
- asset: {
315
- symbol: string;
316
- type: "CryptoCurrency";
317
- id: string;
318
- name: string;
319
- market: {
320
- coingeckoId?: string | undefined;
321
- marketCapUsd?: {
322
- value: bigint;
323
- decimals: number;
324
- } | undefined;
325
- };
326
- updatedAt: number;
327
- icon?: string | undefined;
328
- priceDatasourceId?: string | undefined;
329
- } | {
330
- symbol: string;
331
- type: "FiatCurrency";
332
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
333
- name: string;
334
- icon?: string | undefined;
335
- } | {
336
- type: "Nft";
337
- id: string;
338
- updatedAt: number;
339
- symbol?: string | undefined;
340
- name?: string | undefined;
341
- image?: string | undefined;
342
- metadata?: string | undefined;
343
- };
344
- amount: {
345
- value: bigint;
346
- decimals: number;
347
- };
348
- direction: "in";
349
- price?: {
350
- cryptoCurrencyId: string;
351
- fiatCurrencyId: string;
352
- price: {
353
- value: bigint;
354
- decimals: number;
355
- };
356
- timestamp: number;
357
- } | undefined;
358
- from?: string | undefined;
359
- to?: string | undefined;
360
- }>, {
361
- from: string | undefined;
362
- to: string | undefined;
363
- price: {
364
- cryptoCurrencyId: string;
365
- fiatCurrencyId: string;
366
- price: {
367
- value: bigint;
368
- decimals: number;
369
- };
370
- timestamp: number;
371
- } | undefined;
372
- asset: {
373
- icon: string | undefined;
374
- priceDatasourceId: string | undefined;
375
- symbol: string;
376
- type: "CryptoCurrency";
377
- id: string;
378
- name: string;
379
- market: {
380
- coingeckoId: string | undefined;
381
- marketCapUsd: {
382
- value: bigint;
383
- decimals: number;
384
- } | undefined;
385
- };
386
- updatedAt: number;
387
- } | {
388
- icon: string | undefined;
389
- symbol: string;
390
- type: "FiatCurrency";
391
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
392
- name: string;
393
- } | {
394
- name: string | undefined;
395
- symbol: string | undefined;
396
- image: string | undefined;
397
- metadata: string | undefined;
398
- type: "Nft";
399
- id: string;
400
- updatedAt: number;
401
- };
402
- amount: {
403
- value: bigint;
404
- decimals: number;
405
- };
406
- direction: "in";
407
- }, {
408
- asset: {
409
- symbol: string;
410
- type: "CryptoCurrency";
411
- id: string;
412
- name: string;
413
- market: {
414
- coingeckoId?: string | undefined;
415
- marketCapUsd?: {
416
- value: bigint;
417
- decimals: number;
418
- } | undefined;
419
- };
420
- updatedAt: number;
421
- icon?: string | undefined;
422
- priceDatasourceId?: string | undefined;
423
- } | {
424
- symbol: string;
425
- type: "FiatCurrency";
426
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
427
- name: string;
428
- icon?: string | undefined;
429
- } | {
430
- type: "Nft";
431
- id: string;
432
- updatedAt: number;
433
- symbol?: string | undefined;
434
- name?: string | undefined;
435
- image?: string | undefined;
436
- metadata?: string | undefined;
437
- };
438
- amount: {
439
- value: bigint;
440
- decimals: number;
441
- };
442
- direction: "in";
443
- price?: {
444
- cryptoCurrencyId: string;
445
- fiatCurrencyId: string;
446
- price: {
447
- value: bigint;
448
- decimals: number;
449
- };
450
- timestamp: number;
451
- } | undefined;
452
- from?: string | undefined;
453
- to?: string | undefined;
454
- }>, z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<{
455
- from: z.ZodOptional<z.ZodString>;
456
- to: z.ZodOptional<z.ZodString>;
457
- asset: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
458
- type: z.ZodLiteral<"CryptoCurrency">;
459
- id: z.ZodString;
460
- name: z.ZodString;
461
- symbol: z.ZodString;
462
- icon: z.ZodOptional<z.ZodString>;
463
- market: z.ZodEffects<z.ZodObject<{
464
- coingeckoId: z.ZodOptional<z.ZodString>;
465
- marketCapUsd: z.ZodOptional<z.ZodObject<{
466
- value: z.ZodBigInt;
467
- decimals: z.ZodNumber;
468
- }, "strip", z.ZodTypeAny, {
469
- value: bigint;
470
- decimals: number;
471
- }, {
472
- value: bigint;
473
- decimals: number;
474
- }>>;
475
- }, "strip", z.ZodTypeAny, {
476
- coingeckoId?: string | undefined;
477
- marketCapUsd?: {
478
- value: bigint;
479
- decimals: number;
480
- } | undefined;
481
- }, {
482
- coingeckoId?: string | undefined;
483
- marketCapUsd?: {
484
- value: bigint;
485
- decimals: number;
486
- } | undefined;
487
- }>, {
488
- coingeckoId: string | undefined;
489
- marketCapUsd: {
490
- value: bigint;
491
- decimals: number;
492
- } | undefined;
493
- }, {
494
- coingeckoId?: string | undefined;
495
- marketCapUsd?: {
496
- value: bigint;
497
- decimals: number;
498
- } | undefined;
499
- }>;
500
- priceDatasourceId: z.ZodOptional<z.ZodString>;
501
- updatedAt: z.ZodNumber;
502
- }, "strip", z.ZodTypeAny, {
503
- symbol: string;
504
- type: "CryptoCurrency";
505
- id: string;
506
- name: string;
507
- market: {
508
- coingeckoId: string | undefined;
509
- marketCapUsd: {
510
- value: bigint;
511
- decimals: number;
512
- } | undefined;
513
- };
514
- updatedAt: number;
515
- icon?: string | undefined;
516
- priceDatasourceId?: string | undefined;
517
- }, {
518
- symbol: string;
519
- type: "CryptoCurrency";
520
- id: string;
521
- name: string;
522
- market: {
523
- coingeckoId?: string | undefined;
524
- marketCapUsd?: {
525
- value: bigint;
526
- decimals: number;
527
- } | undefined;
528
- };
529
- updatedAt: number;
530
- icon?: string | undefined;
531
- priceDatasourceId?: string | undefined;
532
- }>, {
533
- icon: string | undefined;
534
- priceDatasourceId: string | undefined;
535
- symbol: string;
536
- type: "CryptoCurrency";
537
- id: string;
538
- name: string;
539
- market: {
540
- coingeckoId: string | undefined;
541
- marketCapUsd: {
542
- value: bigint;
543
- decimals: number;
544
- } | undefined;
545
- };
546
- updatedAt: number;
547
- }, {
548
- symbol: string;
549
- type: "CryptoCurrency";
550
- id: string;
551
- name: string;
552
- market: {
553
- coingeckoId?: string | undefined;
554
- marketCapUsd?: {
555
- value: bigint;
556
- decimals: number;
557
- } | undefined;
558
- };
559
- updatedAt: number;
560
- icon?: string | undefined;
561
- priceDatasourceId?: string | undefined;
562
- }>, z.ZodEffects<z.ZodObject<{
563
- type: z.ZodLiteral<"FiatCurrency">;
564
- id: z.ZodUnion<[z.ZodLiteral<"cny">, z.ZodLiteral<"eur">, z.ZodLiteral<"idr">, z.ZodLiteral<"jpy">, z.ZodLiteral<"krw">, z.ZodLiteral<"rub">, z.ZodLiteral<"twd">, z.ZodLiteral<"usd">]>;
565
- name: z.ZodString;
566
- symbol: z.ZodString;
567
- icon: z.ZodOptional<z.ZodString>;
568
- }, "strip", z.ZodTypeAny, {
569
- symbol: string;
570
- type: "FiatCurrency";
571
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
572
- name: string;
573
- icon?: string | undefined;
574
- }, {
575
- symbol: string;
576
- type: "FiatCurrency";
577
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
578
- name: string;
579
- icon?: string | undefined;
580
- }>, {
581
- icon: string | undefined;
582
- symbol: string;
583
- type: "FiatCurrency";
584
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
585
- name: string;
586
- }, {
587
- symbol: string;
588
- type: "FiatCurrency";
589
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
590
- name: string;
591
- icon?: string | undefined;
592
- }>, z.ZodEffects<z.ZodObject<{
593
- type: z.ZodLiteral<"Nft">;
594
- id: z.ZodString;
595
- name: z.ZodOptional<z.ZodString>;
596
- symbol: z.ZodOptional<z.ZodString>;
597
- image: z.ZodOptional<z.ZodString>;
598
- metadata: z.ZodOptional<z.ZodString>;
599
- updatedAt: z.ZodNumber;
600
- }, "strip", z.ZodTypeAny, {
601
- type: "Nft";
602
- id: string;
603
- updatedAt: number;
604
- symbol?: string | undefined;
605
- name?: string | undefined;
606
- image?: string | undefined;
607
- metadata?: string | undefined;
608
- }, {
609
- type: "Nft";
610
- id: string;
611
- updatedAt: number;
612
- symbol?: string | undefined;
613
- name?: string | undefined;
614
- image?: string | undefined;
615
- metadata?: string | undefined;
616
- }>, {
617
- name: string | undefined;
618
- symbol: string | undefined;
619
- image: string | undefined;
620
- metadata: string | undefined;
621
- type: "Nft";
622
- id: string;
623
- updatedAt: number;
624
- }, {
625
- type: "Nft";
626
- id: string;
627
- updatedAt: number;
628
- symbol?: string | undefined;
629
- name?: string | undefined;
630
- image?: string | undefined;
631
- metadata?: string | undefined;
632
- }>]>;
633
- amount: z.ZodObject<{
634
- value: z.ZodBigInt;
635
- decimals: z.ZodNumber;
636
- }, "strip", z.ZodTypeAny, {
637
- value: bigint;
638
- decimals: number;
639
- }, {
640
- value: bigint;
641
- decimals: number;
642
- }>;
643
- price: z.ZodOptional<z.ZodObject<{
644
- cryptoCurrencyId: z.ZodString;
645
- fiatCurrencyId: z.ZodString;
646
- price: z.ZodObject<{
647
- value: z.ZodBigInt;
648
- decimals: z.ZodNumber;
649
- }, "strip", z.ZodTypeAny, {
650
- value: bigint;
651
- decimals: number;
652
- }, {
653
- value: bigint;
654
- decimals: number;
655
- }>;
656
- timestamp: z.ZodNumber;
657
- }, "strip", z.ZodTypeAny, {
658
- cryptoCurrencyId: string;
659
- fiatCurrencyId: string;
660
- price: {
661
- value: bigint;
662
- decimals: number;
663
- };
664
- timestamp: number;
665
- }, {
666
- cryptoCurrencyId: string;
667
- fiatCurrencyId: string;
668
- price: {
669
- value: bigint;
670
- decimals: number;
671
- };
672
- timestamp: number;
673
- }>>;
674
- }, {
675
- direction: z.ZodLiteral<"out">;
676
- }>, "strip", z.ZodTypeAny, {
677
- asset: {
678
- icon: string | undefined;
679
- priceDatasourceId: string | undefined;
680
- symbol: string;
681
- type: "CryptoCurrency";
682
- id: string;
683
- name: string;
684
- market: {
685
- coingeckoId: string | undefined;
686
- marketCapUsd: {
687
- value: bigint;
688
- decimals: number;
689
- } | undefined;
690
- };
691
- updatedAt: number;
692
- } | {
693
- icon: string | undefined;
694
- symbol: string;
695
- type: "FiatCurrency";
696
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
697
- name: string;
698
- } | {
699
- name: string | undefined;
700
- symbol: string | undefined;
701
- image: string | undefined;
702
- metadata: string | undefined;
703
- type: "Nft";
704
- id: string;
705
- updatedAt: number;
706
- };
707
- amount: {
708
- value: bigint;
709
- decimals: number;
710
- };
711
- direction: "out";
712
- price?: {
713
- cryptoCurrencyId: string;
714
- fiatCurrencyId: string;
715
- price: {
716
- value: bigint;
717
- decimals: number;
718
- };
719
- timestamp: number;
720
- } | undefined;
721
- from?: string | undefined;
722
- to?: string | undefined;
723
- }, {
724
- asset: {
725
- symbol: string;
726
- type: "CryptoCurrency";
727
- id: string;
728
- name: string;
729
- market: {
730
- coingeckoId?: string | undefined;
731
- marketCapUsd?: {
732
- value: bigint;
733
- decimals: number;
734
- } | undefined;
735
- };
736
- updatedAt: number;
737
- icon?: string | undefined;
738
- priceDatasourceId?: string | undefined;
739
- } | {
740
- symbol: string;
741
- type: "FiatCurrency";
742
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
743
- name: string;
744
- icon?: string | undefined;
745
- } | {
746
- type: "Nft";
747
- id: string;
748
- updatedAt: number;
749
- symbol?: string | undefined;
750
- name?: string | undefined;
751
- image?: string | undefined;
752
- metadata?: string | undefined;
753
- };
754
- amount: {
755
- value: bigint;
756
- decimals: number;
757
- };
758
- direction: "out";
759
- price?: {
760
- cryptoCurrencyId: string;
761
- fiatCurrencyId: string;
762
- price: {
763
- value: bigint;
764
- decimals: number;
765
- };
766
- timestamp: number;
767
- } | undefined;
768
- from?: string | undefined;
769
- to?: string | undefined;
770
- }>, {
771
- from: string | undefined;
772
- to: string | undefined;
773
- price: {
774
- cryptoCurrencyId: string;
775
- fiatCurrencyId: string;
776
- price: {
777
- value: bigint;
778
- decimals: number;
779
- };
780
- timestamp: number;
781
- } | undefined;
782
- asset: {
783
- icon: string | undefined;
784
- priceDatasourceId: string | undefined;
785
- symbol: string;
786
- type: "CryptoCurrency";
787
- id: string;
788
- name: string;
789
- market: {
790
- coingeckoId: string | undefined;
791
- marketCapUsd: {
792
- value: bigint;
793
- decimals: number;
794
- } | undefined;
795
- };
796
- updatedAt: number;
797
- } | {
798
- icon: string | undefined;
799
- symbol: string;
800
- type: "FiatCurrency";
801
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
802
- name: string;
803
- } | {
804
- name: string | undefined;
805
- symbol: string | undefined;
806
- image: string | undefined;
807
- metadata: string | undefined;
808
- type: "Nft";
809
- id: string;
810
- updatedAt: number;
811
- };
812
- amount: {
813
- value: bigint;
814
- decimals: number;
815
- };
816
- direction: "out";
817
- }, {
818
- asset: {
819
- symbol: string;
820
- type: "CryptoCurrency";
821
- id: string;
822
- name: string;
823
- market: {
824
- coingeckoId?: string | undefined;
825
- marketCapUsd?: {
826
- value: bigint;
827
- decimals: number;
828
- } | undefined;
829
- };
830
- updatedAt: number;
831
- icon?: string | undefined;
832
- priceDatasourceId?: string | undefined;
833
- } | {
834
- symbol: string;
835
- type: "FiatCurrency";
836
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
837
- name: string;
838
- icon?: string | undefined;
839
- } | {
840
- type: "Nft";
841
- id: string;
842
- updatedAt: number;
843
- symbol?: string | undefined;
844
- name?: string | undefined;
845
- image?: string | undefined;
846
- metadata?: string | undefined;
847
- };
848
- amount: {
849
- value: bigint;
850
- decimals: number;
851
- };
852
- direction: "out";
853
- price?: {
854
- cryptoCurrencyId: string;
855
- fiatCurrencyId: string;
856
- price: {
857
- value: bigint;
858
- decimals: number;
859
- };
860
- timestamp: number;
861
- } | undefined;
862
- from?: string | undefined;
863
- to?: string | undefined;
864
- }>, z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<{
865
- from: z.ZodOptional<z.ZodString>;
866
- to: z.ZodOptional<z.ZodString>;
867
- asset: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
868
- type: z.ZodLiteral<"CryptoCurrency">;
869
- id: z.ZodString;
870
- name: z.ZodString;
871
- symbol: z.ZodString;
872
- icon: z.ZodOptional<z.ZodString>;
873
- market: z.ZodEffects<z.ZodObject<{
874
- coingeckoId: z.ZodOptional<z.ZodString>;
875
- marketCapUsd: z.ZodOptional<z.ZodObject<{
876
- value: z.ZodBigInt;
877
- decimals: z.ZodNumber;
878
- }, "strip", z.ZodTypeAny, {
879
- value: bigint;
880
- decimals: number;
881
- }, {
882
- value: bigint;
883
- decimals: number;
884
- }>>;
885
- }, "strip", z.ZodTypeAny, {
886
- coingeckoId?: string | undefined;
887
- marketCapUsd?: {
888
- value: bigint;
889
- decimals: number;
890
- } | undefined;
891
- }, {
892
- coingeckoId?: string | undefined;
893
- marketCapUsd?: {
894
- value: bigint;
895
- decimals: number;
896
- } | undefined;
897
- }>, {
898
- coingeckoId: string | undefined;
899
- marketCapUsd: {
900
- value: bigint;
901
- decimals: number;
902
- } | undefined;
903
- }, {
904
- coingeckoId?: string | undefined;
905
- marketCapUsd?: {
906
- value: bigint;
907
- decimals: number;
908
- } | undefined;
909
- }>;
910
- priceDatasourceId: z.ZodOptional<z.ZodString>;
911
- updatedAt: z.ZodNumber;
912
- }, "strip", z.ZodTypeAny, {
913
- symbol: string;
914
- type: "CryptoCurrency";
915
- id: string;
916
- name: string;
917
- market: {
918
- coingeckoId: string | undefined;
919
- marketCapUsd: {
920
- value: bigint;
921
- decimals: number;
922
- } | undefined;
923
- };
924
- updatedAt: number;
925
- icon?: string | undefined;
926
- priceDatasourceId?: string | undefined;
927
- }, {
928
- symbol: string;
929
- type: "CryptoCurrency";
930
- id: string;
931
- name: string;
932
- market: {
933
- coingeckoId?: string | undefined;
934
- marketCapUsd?: {
935
- value: bigint;
936
- decimals: number;
937
- } | undefined;
938
- };
939
- updatedAt: number;
940
- icon?: string | undefined;
941
- priceDatasourceId?: string | undefined;
942
- }>, {
943
- icon: string | undefined;
944
- priceDatasourceId: string | undefined;
945
- symbol: string;
946
- type: "CryptoCurrency";
947
- id: string;
948
- name: string;
949
- market: {
950
- coingeckoId: string | undefined;
951
- marketCapUsd: {
952
- value: bigint;
953
- decimals: number;
954
- } | undefined;
955
- };
956
- updatedAt: number;
957
- }, {
958
- symbol: string;
959
- type: "CryptoCurrency";
960
- id: string;
961
- name: string;
962
- market: {
963
- coingeckoId?: string | undefined;
964
- marketCapUsd?: {
965
- value: bigint;
966
- decimals: number;
967
- } | undefined;
968
- };
969
- updatedAt: number;
970
- icon?: string | undefined;
971
- priceDatasourceId?: string | undefined;
972
- }>, z.ZodEffects<z.ZodObject<{
973
- type: z.ZodLiteral<"FiatCurrency">;
974
- id: z.ZodUnion<[z.ZodLiteral<"cny">, z.ZodLiteral<"eur">, z.ZodLiteral<"idr">, z.ZodLiteral<"jpy">, z.ZodLiteral<"krw">, z.ZodLiteral<"rub">, z.ZodLiteral<"twd">, z.ZodLiteral<"usd">]>;
975
- name: z.ZodString;
976
- symbol: z.ZodString;
977
- icon: z.ZodOptional<z.ZodString>;
978
- }, "strip", z.ZodTypeAny, {
979
- symbol: string;
980
- type: "FiatCurrency";
981
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
982
- name: string;
983
- icon?: string | undefined;
984
- }, {
985
- symbol: string;
986
- type: "FiatCurrency";
987
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
988
- name: string;
989
- icon?: string | undefined;
990
- }>, {
991
- icon: string | undefined;
992
- symbol: string;
993
- type: "FiatCurrency";
994
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
995
- name: string;
996
- }, {
997
- symbol: string;
998
- type: "FiatCurrency";
999
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
1000
- name: string;
1001
- icon?: string | undefined;
1002
- }>, z.ZodEffects<z.ZodObject<{
1003
- type: z.ZodLiteral<"Nft">;
1004
- id: z.ZodString;
1005
- name: z.ZodOptional<z.ZodString>;
1006
- symbol: z.ZodOptional<z.ZodString>;
1007
- image: z.ZodOptional<z.ZodString>;
1008
- metadata: z.ZodOptional<z.ZodString>;
1009
- updatedAt: z.ZodNumber;
1010
- }, "strip", z.ZodTypeAny, {
1011
- type: "Nft";
1012
- id: string;
1013
- updatedAt: number;
1014
- symbol?: string | undefined;
1015
- name?: string | undefined;
1016
- image?: string | undefined;
1017
- metadata?: string | undefined;
1018
- }, {
1019
- type: "Nft";
1020
- id: string;
1021
- updatedAt: number;
1022
- symbol?: string | undefined;
1023
- name?: string | undefined;
1024
- image?: string | undefined;
1025
- metadata?: string | undefined;
1026
- }>, {
1027
- name: string | undefined;
1028
- symbol: string | undefined;
1029
- image: string | undefined;
1030
- metadata: string | undefined;
1031
- type: "Nft";
1032
- id: string;
1033
- updatedAt: number;
1034
- }, {
1035
- type: "Nft";
1036
- id: string;
1037
- updatedAt: number;
1038
- symbol?: string | undefined;
1039
- name?: string | undefined;
1040
- image?: string | undefined;
1041
- metadata?: string | undefined;
1042
- }>]>;
1043
- amount: z.ZodObject<{
1044
- value: z.ZodBigInt;
1045
- decimals: z.ZodNumber;
1046
- }, "strip", z.ZodTypeAny, {
1047
- value: bigint;
1048
- decimals: number;
1049
- }, {
1050
- value: bigint;
1051
- decimals: number;
1052
- }>;
1053
- price: z.ZodOptional<z.ZodObject<{
1054
- cryptoCurrencyId: z.ZodString;
1055
- fiatCurrencyId: z.ZodString;
1056
- price: z.ZodObject<{
1057
- value: z.ZodBigInt;
1058
- decimals: z.ZodNumber;
1059
- }, "strip", z.ZodTypeAny, {
1060
- value: bigint;
1061
- decimals: number;
1062
- }, {
1063
- value: bigint;
1064
- decimals: number;
1065
- }>;
1066
- timestamp: z.ZodNumber;
1067
- }, "strip", z.ZodTypeAny, {
1068
- cryptoCurrencyId: string;
1069
- fiatCurrencyId: string;
1070
- price: {
1071
- value: bigint;
1072
- decimals: number;
1073
- };
1074
- timestamp: number;
1075
- }, {
1076
- cryptoCurrencyId: string;
1077
- fiatCurrencyId: string;
1078
- price: {
1079
- value: bigint;
1080
- decimals: number;
1081
- };
1082
- timestamp: number;
1083
- }>>;
1084
- }, {
1085
- direction: z.ZodLiteral<"none">;
1086
- }>, "strip", z.ZodTypeAny, {
1087
- asset: {
1088
- icon: string | undefined;
1089
- priceDatasourceId: string | undefined;
1090
- symbol: string;
1091
- type: "CryptoCurrency";
1092
- id: string;
1093
- name: string;
1094
- market: {
1095
- coingeckoId: string | undefined;
1096
- marketCapUsd: {
1097
- value: bigint;
1098
- decimals: number;
1099
- } | undefined;
1100
- };
1101
- updatedAt: number;
1102
- } | {
1103
- icon: string | undefined;
1104
- symbol: string;
1105
- type: "FiatCurrency";
1106
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
1107
- name: string;
1108
- } | {
1109
- name: string | undefined;
1110
- symbol: string | undefined;
1111
- image: string | undefined;
1112
- metadata: string | undefined;
1113
- type: "Nft";
1114
- id: string;
1115
- updatedAt: number;
1116
- };
1117
- amount: {
1118
- value: bigint;
1119
- decimals: number;
1120
- };
1121
- direction: "none";
1122
- price?: {
1123
- cryptoCurrencyId: string;
1124
- fiatCurrencyId: string;
1125
- price: {
1126
- value: bigint;
1127
- decimals: number;
1128
- };
1129
- timestamp: number;
1130
- } | undefined;
1131
- from?: string | undefined;
1132
- to?: string | undefined;
1133
- }, {
1134
- asset: {
1135
- symbol: string;
1136
- type: "CryptoCurrency";
1137
- id: string;
1138
- name: string;
1139
- market: {
1140
- coingeckoId?: string | undefined;
1141
- marketCapUsd?: {
1142
- value: bigint;
1143
- decimals: number;
1144
- } | undefined;
1145
- };
1146
- updatedAt: number;
1147
- icon?: string | undefined;
1148
- priceDatasourceId?: string | undefined;
1149
- } | {
1150
- symbol: string;
1151
- type: "FiatCurrency";
1152
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
1153
- name: string;
1154
- icon?: string | undefined;
1155
- } | {
1156
- type: "Nft";
1157
- id: string;
1158
- updatedAt: number;
1159
- symbol?: string | undefined;
1160
- name?: string | undefined;
1161
- image?: string | undefined;
1162
- metadata?: string | undefined;
1163
- };
1164
- amount: {
1165
- value: bigint;
1166
- decimals: number;
1167
- };
1168
- direction: "none";
1169
- price?: {
1170
- cryptoCurrencyId: string;
1171
- fiatCurrencyId: string;
1172
- price: {
1173
- value: bigint;
1174
- decimals: number;
1175
- };
1176
- timestamp: number;
1177
- } | undefined;
1178
- from?: string | undefined;
1179
- to?: string | undefined;
1180
- }>, {
1181
- from: string | undefined;
1182
- to: string | undefined;
1183
- price: {
1184
- cryptoCurrencyId: string;
1185
- fiatCurrencyId: string;
1186
- price: {
1187
- value: bigint;
1188
- decimals: number;
1189
- };
1190
- timestamp: number;
1191
- } | undefined;
1192
- asset: {
1193
- icon: string | undefined;
1194
- priceDatasourceId: string | undefined;
1195
- symbol: string;
1196
- type: "CryptoCurrency";
1197
- id: string;
1198
- name: string;
1199
- market: {
1200
- coingeckoId: string | undefined;
1201
- marketCapUsd: {
1202
- value: bigint;
1203
- decimals: number;
1204
- } | undefined;
1205
- };
1206
- updatedAt: number;
1207
- } | {
1208
- icon: string | undefined;
1209
- symbol: string;
1210
- type: "FiatCurrency";
1211
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
1212
- name: string;
1213
- } | {
1214
- name: string | undefined;
1215
- symbol: string | undefined;
1216
- image: string | undefined;
1217
- metadata: string | undefined;
1218
- type: "Nft";
1219
- id: string;
1220
- updatedAt: number;
1221
- };
1222
- amount: {
1223
- value: bigint;
1224
- decimals: number;
1225
- };
1226
- direction: "none";
1227
- }, {
1228
- asset: {
1229
- symbol: string;
1230
- type: "CryptoCurrency";
1231
- id: string;
1232
- name: string;
1233
- market: {
1234
- coingeckoId?: string | undefined;
1235
- marketCapUsd?: {
1236
- value: bigint;
1237
- decimals: number;
1238
- } | undefined;
1239
- };
1240
- updatedAt: number;
1241
- icon?: string | undefined;
1242
- priceDatasourceId?: string | undefined;
1243
- } | {
1244
- symbol: string;
1245
- type: "FiatCurrency";
1246
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
1247
- name: string;
1248
- icon?: string | undefined;
1249
- } | {
1250
- type: "Nft";
1251
- id: string;
1252
- updatedAt: number;
1253
- symbol?: string | undefined;
1254
- name?: string | undefined;
1255
- image?: string | undefined;
1256
- metadata?: string | undefined;
1257
- };
1258
- amount: {
1259
- value: bigint;
1260
- decimals: number;
1261
- };
1262
- direction: "none";
1263
- price?: {
1264
- cryptoCurrencyId: string;
1265
- fiatCurrencyId: string;
1266
- price: {
1267
- value: bigint;
1268
- decimals: number;
1269
- };
1270
- timestamp: number;
1271
- } | undefined;
1272
- from?: string | undefined;
1273
- to?: string | undefined;
1274
- }>]>, "many">;
1275
- }, {
1276
- action: z.ZodLiteral<"transfer">;
1277
- }>, "strip", z.ZodTypeAny, {
1278
- type: "NormalAction";
1279
- timestamp: number;
1280
- action: "transfer";
1281
- evidence: "none" | "contract" | "system-rule" | "user-rule" | "manual-check";
1282
- transfers: ({
1283
- from: string | undefined;
1284
- to: string | undefined;
1285
- price: {
1286
- cryptoCurrencyId: string;
1287
- fiatCurrencyId: string;
1288
- price: {
1289
- value: bigint;
1290
- decimals: number;
1291
- };
1292
- timestamp: number;
1293
- } | undefined;
1294
- asset: {
1295
- icon: string | undefined;
1296
- priceDatasourceId: string | undefined;
1297
- symbol: string;
1298
- type: "CryptoCurrency";
1299
- id: string;
1300
- name: string;
1301
- market: {
1302
- coingeckoId: string | undefined;
1303
- marketCapUsd: {
1304
- value: bigint;
1305
- decimals: number;
1306
- } | undefined;
1307
- };
1308
- updatedAt: number;
1309
- } | {
1310
- icon: string | undefined;
1311
- symbol: string;
1312
- type: "FiatCurrency";
1313
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
1314
- name: string;
1315
- } | {
1316
- name: string | undefined;
1317
- symbol: string | undefined;
1318
- image: string | undefined;
1319
- metadata: string | undefined;
1320
- type: "Nft";
1321
- id: string;
1322
- updatedAt: number;
1323
- };
1324
- amount: {
1325
- value: bigint;
1326
- decimals: number;
1327
- };
1328
- direction: "in";
1329
- } | {
1330
- from: string | undefined;
1331
- to: string | undefined;
1332
- price: {
1333
- cryptoCurrencyId: string;
1334
- fiatCurrencyId: string;
1335
- price: {
1336
- value: bigint;
1337
- decimals: number;
1338
- };
1339
- timestamp: number;
1340
- } | undefined;
1341
- asset: {
1342
- icon: string | undefined;
1343
- priceDatasourceId: string | undefined;
1344
- symbol: string;
1345
- type: "CryptoCurrency";
1346
- id: string;
1347
- name: string;
1348
- market: {
1349
- coingeckoId: string | undefined;
1350
- marketCapUsd: {
1351
- value: bigint;
1352
- decimals: number;
1353
- } | undefined;
1354
- };
1355
- updatedAt: number;
1356
- } | {
1357
- icon: string | undefined;
1358
- symbol: string;
1359
- type: "FiatCurrency";
1360
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
1361
- name: string;
1362
- } | {
1363
- name: string | undefined;
1364
- symbol: string | undefined;
1365
- image: string | undefined;
1366
- metadata: string | undefined;
1367
- type: "Nft";
1368
- id: string;
1369
- updatedAt: number;
1370
- };
1371
- amount: {
1372
- value: bigint;
1373
- decimals: number;
1374
- };
1375
- direction: "out";
1376
- } | {
1377
- from: string | undefined;
1378
- to: string | undefined;
1379
- price: {
1380
- cryptoCurrencyId: string;
1381
- fiatCurrencyId: string;
1382
- price: {
1383
- value: bigint;
1384
- decimals: number;
1385
- };
1386
- timestamp: number;
1387
- } | undefined;
1388
- asset: {
1389
- icon: string | undefined;
1390
- priceDatasourceId: string | undefined;
1391
- symbol: string;
1392
- type: "CryptoCurrency";
1393
- id: string;
1394
- name: string;
1395
- market: {
1396
- coingeckoId: string | undefined;
1397
- marketCapUsd: {
1398
- value: bigint;
1399
- decimals: number;
1400
- } | undefined;
1401
- };
1402
- updatedAt: number;
1403
- } | {
1404
- icon: string | undefined;
1405
- symbol: string;
1406
- type: "FiatCurrency";
1407
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
1408
- name: string;
1409
- } | {
1410
- name: string | undefined;
1411
- symbol: string | undefined;
1412
- image: string | undefined;
1413
- metadata: string | undefined;
1414
- type: "Nft";
1415
- id: string;
1416
- updatedAt: number;
1417
- };
1418
- amount: {
1419
- value: bigint;
1420
- decimals: number;
1421
- };
1422
- direction: "none";
1423
- })[];
1424
- comment?: string | undefined;
1425
- app?: {
1426
- description: string | undefined;
1427
- website: string | undefined;
1428
- icon: string | undefined;
1429
- id: string;
1430
- name: string;
1431
- categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
1432
- } | undefined;
1433
- }, {
1434
- type: "NormalAction";
1435
- timestamp: number;
1436
- action: "transfer";
1437
- evidence: "none" | "contract" | "system-rule" | "user-rule" | "manual-check";
1438
- transfers: ({
1439
- asset: {
1440
- symbol: string;
1441
- type: "CryptoCurrency";
1442
- id: string;
1443
- name: string;
1444
- market: {
1445
- coingeckoId?: string | undefined;
1446
- marketCapUsd?: {
1447
- value: bigint;
1448
- decimals: number;
1449
- } | undefined;
1450
- };
1451
- updatedAt: number;
1452
- icon?: string | undefined;
1453
- priceDatasourceId?: string | undefined;
1454
- } | {
1455
- symbol: string;
1456
- type: "FiatCurrency";
1457
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
1458
- name: string;
1459
- icon?: string | undefined;
1460
- } | {
1461
- type: "Nft";
1462
- id: string;
1463
- updatedAt: number;
1464
- symbol?: string | undefined;
1465
- name?: string | undefined;
1466
- image?: string | undefined;
1467
- metadata?: string | undefined;
1468
- };
1469
- amount: {
1470
- value: bigint;
1471
- decimals: number;
1472
- };
1473
- direction: "in";
1474
- price?: {
1475
- cryptoCurrencyId: string;
1476
- fiatCurrencyId: string;
1477
- price: {
1478
- value: bigint;
1479
- decimals: number;
1480
- };
1481
- timestamp: number;
1482
- } | undefined;
1483
- from?: string | undefined;
1484
- to?: string | undefined;
1485
- } | {
1486
- asset: {
1487
- symbol: string;
1488
- type: "CryptoCurrency";
1489
- id: string;
1490
- name: string;
1491
- market: {
1492
- coingeckoId?: string | undefined;
1493
- marketCapUsd?: {
1494
- value: bigint;
1495
- decimals: number;
1496
- } | undefined;
1497
- };
1498
- updatedAt: number;
1499
- icon?: string | undefined;
1500
- priceDatasourceId?: string | undefined;
1501
- } | {
1502
- symbol: string;
1503
- type: "FiatCurrency";
1504
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
1505
- name: string;
1506
- icon?: string | undefined;
1507
- } | {
1508
- type: "Nft";
1509
- id: string;
1510
- updatedAt: number;
1511
- symbol?: string | undefined;
1512
- name?: string | undefined;
1513
- image?: string | undefined;
1514
- metadata?: string | undefined;
1515
- };
1516
- amount: {
1517
- value: bigint;
1518
- decimals: number;
1519
- };
1520
- direction: "out";
1521
- price?: {
1522
- cryptoCurrencyId: string;
1523
- fiatCurrencyId: string;
1524
- price: {
1525
- value: bigint;
1526
- decimals: number;
1527
- };
1528
- timestamp: number;
1529
- } | undefined;
1530
- from?: string | undefined;
1531
- to?: string | undefined;
1532
- } | {
1533
- asset: {
1534
- symbol: string;
1535
- type: "CryptoCurrency";
1536
- id: string;
1537
- name: string;
1538
- market: {
1539
- coingeckoId?: string | undefined;
1540
- marketCapUsd?: {
1541
- value: bigint;
1542
- decimals: number;
1543
- } | undefined;
1544
- };
1545
- updatedAt: number;
1546
- icon?: string | undefined;
1547
- priceDatasourceId?: string | undefined;
1548
- } | {
1549
- symbol: string;
1550
- type: "FiatCurrency";
1551
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
1552
- name: string;
1553
- icon?: string | undefined;
1554
- } | {
1555
- type: "Nft";
1556
- id: string;
1557
- updatedAt: number;
1558
- symbol?: string | undefined;
1559
- name?: string | undefined;
1560
- image?: string | undefined;
1561
- metadata?: string | undefined;
1562
- };
1563
- amount: {
1564
- value: bigint;
1565
- decimals: number;
1566
- };
1567
- direction: "none";
1568
- price?: {
1569
- cryptoCurrencyId: string;
1570
- fiatCurrencyId: string;
1571
- price: {
1572
- value: bigint;
1573
- decimals: number;
1574
- };
1575
- timestamp: number;
1576
- } | undefined;
1577
- from?: string | undefined;
1578
- to?: string | undefined;
1579
- })[];
1580
- comment?: string | undefined;
1581
- app?: {
1582
- id: string;
1583
- name: string;
1584
- categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
1585
- icon?: string | undefined;
1586
- description?: string | undefined;
1587
- website?: string | undefined;
1588
- } | undefined;
1589
- }>, {
1590
- comment: string | undefined;
1591
- app: {
1592
- description: string | undefined;
1593
- website: string | undefined;
1594
- icon: string | undefined;
1595
- id: string;
1596
- name: string;
1597
- categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
1598
- } | undefined;
1599
- type: "NormalAction";
1600
- timestamp: number;
1601
- action: "transfer";
1602
- evidence: "none" | "contract" | "system-rule" | "user-rule" | "manual-check";
1603
- transfers: ({
1604
- from: string | undefined;
1605
- to: string | undefined;
1606
- price: {
1607
- cryptoCurrencyId: string;
1608
- fiatCurrencyId: string;
1609
- price: {
1610
- value: bigint;
1611
- decimals: number;
1612
- };
1613
- timestamp: number;
1614
- } | undefined;
1615
- asset: {
1616
- icon: string | undefined;
1617
- priceDatasourceId: string | undefined;
1618
- symbol: string;
1619
- type: "CryptoCurrency";
1620
- id: string;
1621
- name: string;
1622
- market: {
1623
- coingeckoId: string | undefined;
1624
- marketCapUsd: {
1625
- value: bigint;
1626
- decimals: number;
1627
- } | undefined;
1628
- };
1629
- updatedAt: number;
1630
- } | {
1631
- icon: string | undefined;
1632
- symbol: string;
1633
- type: "FiatCurrency";
1634
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
1635
- name: string;
1636
- } | {
1637
- name: string | undefined;
1638
- symbol: string | undefined;
1639
- image: string | undefined;
1640
- metadata: string | undefined;
1641
- type: "Nft";
1642
- id: string;
1643
- updatedAt: number;
1644
- };
1645
- amount: {
1646
- value: bigint;
1647
- decimals: number;
1648
- };
1649
- direction: "in";
1650
- } | {
1651
- from: string | undefined;
1652
- to: string | undefined;
1653
- price: {
1654
- cryptoCurrencyId: string;
1655
- fiatCurrencyId: string;
1656
- price: {
1657
- value: bigint;
1658
- decimals: number;
1659
- };
1660
- timestamp: number;
1661
- } | undefined;
1662
- asset: {
1663
- icon: string | undefined;
1664
- priceDatasourceId: string | undefined;
1665
- symbol: string;
1666
- type: "CryptoCurrency";
1667
- id: string;
1668
- name: string;
1669
- market: {
1670
- coingeckoId: string | undefined;
1671
- marketCapUsd: {
1672
- value: bigint;
1673
- decimals: number;
1674
- } | undefined;
1675
- };
1676
- updatedAt: number;
1677
- } | {
1678
- icon: string | undefined;
1679
- symbol: string;
1680
- type: "FiatCurrency";
1681
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
1682
- name: string;
1683
- } | {
1684
- name: string | undefined;
1685
- symbol: string | undefined;
1686
- image: string | undefined;
1687
- metadata: string | undefined;
1688
- type: "Nft";
1689
- id: string;
1690
- updatedAt: number;
1691
- };
1692
- amount: {
1693
- value: bigint;
1694
- decimals: number;
1695
- };
1696
- direction: "out";
1697
- } | {
1698
- from: string | undefined;
1699
- to: string | undefined;
1700
- price: {
1701
- cryptoCurrencyId: string;
1702
- fiatCurrencyId: string;
1703
- price: {
1704
- value: bigint;
1705
- decimals: number;
1706
- };
1707
- timestamp: number;
1708
- } | undefined;
1709
- asset: {
1710
- icon: string | undefined;
1711
- priceDatasourceId: string | undefined;
1712
- symbol: string;
1713
- type: "CryptoCurrency";
1714
- id: string;
1715
- name: string;
1716
- market: {
1717
- coingeckoId: string | undefined;
1718
- marketCapUsd: {
1719
- value: bigint;
1720
- decimals: number;
1721
- } | undefined;
1722
- };
1723
- updatedAt: number;
1724
- } | {
1725
- icon: string | undefined;
1726
- symbol: string;
1727
- type: "FiatCurrency";
1728
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
1729
- name: string;
1730
- } | {
1731
- name: string | undefined;
1732
- symbol: string | undefined;
1733
- image: string | undefined;
1734
- metadata: string | undefined;
1735
- type: "Nft";
1736
- id: string;
1737
- updatedAt: number;
1738
- };
1739
- amount: {
1740
- value: bigint;
1741
- decimals: number;
1742
- };
1743
- direction: "none";
1744
- })[];
1745
- }, {
1746
- type: "NormalAction";
1747
- timestamp: number;
1748
- action: "transfer";
1749
- evidence: "none" | "contract" | "system-rule" | "user-rule" | "manual-check";
1750
- transfers: ({
1751
- asset: {
1752
- symbol: string;
1753
- type: "CryptoCurrency";
1754
- id: string;
1755
- name: string;
1756
- market: {
1757
- coingeckoId?: string | undefined;
1758
- marketCapUsd?: {
1759
- value: bigint;
1760
- decimals: number;
1761
- } | undefined;
1762
- };
1763
- updatedAt: number;
1764
- icon?: string | undefined;
1765
- priceDatasourceId?: string | undefined;
1766
- } | {
1767
- symbol: string;
1768
- type: "FiatCurrency";
1769
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
1770
- name: string;
1771
- icon?: string | undefined;
1772
- } | {
1773
- type: "Nft";
1774
- id: string;
1775
- updatedAt: number;
1776
- symbol?: string | undefined;
1777
- name?: string | undefined;
1778
- image?: string | undefined;
1779
- metadata?: string | undefined;
1780
- };
1781
- amount: {
1782
- value: bigint;
1783
- decimals: number;
1784
- };
1785
- direction: "in";
1786
- price?: {
1787
- cryptoCurrencyId: string;
1788
- fiatCurrencyId: string;
1789
- price: {
1790
- value: bigint;
1791
- decimals: number;
1792
- };
1793
- timestamp: number;
1794
- } | undefined;
1795
- from?: string | undefined;
1796
- to?: string | undefined;
1797
- } | {
1798
- asset: {
1799
- symbol: string;
1800
- type: "CryptoCurrency";
1801
- id: string;
1802
- name: string;
1803
- market: {
1804
- coingeckoId?: string | undefined;
1805
- marketCapUsd?: {
1806
- value: bigint;
1807
- decimals: number;
1808
- } | undefined;
1809
- };
1810
- updatedAt: number;
1811
- icon?: string | undefined;
1812
- priceDatasourceId?: string | undefined;
1813
- } | {
1814
- symbol: string;
1815
- type: "FiatCurrency";
1816
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
1817
- name: string;
1818
- icon?: string | undefined;
1819
- } | {
1820
- type: "Nft";
1821
- id: string;
1822
- updatedAt: number;
1823
- symbol?: string | undefined;
1824
- name?: string | undefined;
1825
- image?: string | undefined;
1826
- metadata?: string | undefined;
1827
- };
1828
- amount: {
1829
- value: bigint;
1830
- decimals: number;
1831
- };
1832
- direction: "out";
1833
- price?: {
1834
- cryptoCurrencyId: string;
1835
- fiatCurrencyId: string;
1836
- price: {
1837
- value: bigint;
1838
- decimals: number;
1839
- };
1840
- timestamp: number;
1841
- } | undefined;
1842
- from?: string | undefined;
1843
- to?: string | undefined;
1844
- } | {
1845
- asset: {
1846
- symbol: string;
1847
- type: "CryptoCurrency";
1848
- id: string;
1849
- name: string;
1850
- market: {
1851
- coingeckoId?: string | undefined;
1852
- marketCapUsd?: {
1853
- value: bigint;
1854
- decimals: number;
1855
- } | undefined;
1856
- };
1857
- updatedAt: number;
1858
- icon?: string | undefined;
1859
- priceDatasourceId?: string | undefined;
1860
- } | {
1861
- symbol: string;
1862
- type: "FiatCurrency";
1863
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
1864
- name: string;
1865
- icon?: string | undefined;
1866
- } | {
1867
- type: "Nft";
1868
- id: string;
1869
- updatedAt: number;
1870
- symbol?: string | undefined;
1871
- name?: string | undefined;
1872
- image?: string | undefined;
1873
- metadata?: string | undefined;
1874
- };
1875
- amount: {
1876
- value: bigint;
1877
- decimals: number;
1878
- };
1879
- direction: "none";
1880
- price?: {
1881
- cryptoCurrencyId: string;
1882
- fiatCurrencyId: string;
1883
- price: {
1884
- value: bigint;
1885
- decimals: number;
1886
- };
1887
- timestamp: number;
1888
- } | undefined;
1889
- from?: string | undefined;
1890
- to?: string | undefined;
1891
- })[];
1892
- comment?: string | undefined;
1893
- app?: {
1894
- id: string;
1895
- name: string;
1896
- categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
1897
- icon?: string | undefined;
1898
- description?: string | undefined;
1899
- website?: string | undefined;
1900
- } | undefined;
1901
- }>;
1902
- export declare const accountActionTransferSchema: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
1903
- action: z.ZodUnion<[z.ZodLiteral<"add-liquidity">, z.ZodLiteral<"approve">, z.ZodLiteral<"atomic-arbitrage">, z.ZodLiteral<"borrow">, z.ZodLiteral<"bridge-from">, z.ZodLiteral<"bridge-to">, z.ZodLiteral<"buy-nft">, z.ZodLiteral<"buy-crypto">, z.ZodLiteral<"cross-replace">, z.ZodLiteral<"cross-trade">, z.ZodLiteral<"deposit">, z.ZodLiteral<"deposit-with-bond">, z.ZodLiteral<"fail-tx">, z.ZodLiteral<"fee">, z.ZodLiteral<"free-mint-nft">, z.ZodLiteral<"ignore">, z.ZodLiteral<"income">, z.ZodLiteral<"mint-nft">, z.ZodLiteral<"move">, z.ZodLiteral<"nft-royalty">, z.ZodLiteral<"receive-from-cex">, z.ZodLiteral<"reduce">, z.ZodLiteral<"remove-liquidity">, z.ZodLiteral<"repayment">, z.ZodLiteral<"repayment-with-debt">, z.ZodLiteral<"revoke">, z.ZodLiteral<"sell-crypto">, z.ZodLiteral<"sell-nft">, z.ZodLiteral<"send-to-cex">, z.ZodLiteral<"spam">, z.ZodLiteral<"stake">, z.ZodLiteral<"swap-income">, z.ZodLiteral<"swap-nft">, z.ZodLiteral<"swap-transfer">, z.ZodLiteral<"trade">, z.ZodLiteral<"transaction-fee">, z.ZodLiteral<"transfer">, z.ZodLiteral<"unstake">, z.ZodLiteral<"unwrap">, z.ZodLiteral<"valuedown">, z.ZodLiteral<"valueup">, z.ZodLiteral<"withdraw">, z.ZodLiteral<"withdraw-with-bond">, z.ZodLiteral<"wrap">]>;
1904
- source: z.ZodString;
1905
- evidence: z.ZodUnion<[z.ZodLiteral<"contract">, z.ZodLiteral<"system-rule">, z.ZodLiteral<"user-rule">, z.ZodLiteral<"manual-check">, z.ZodLiteral<"none">]>;
1906
- timestamp: z.ZodNumber;
1907
- order: z.ZodNumber;
1908
- comment: z.ZodOptional<z.ZodString>;
1909
- app: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1910
- id: z.ZodString;
1911
- categories: z.ZodArray<z.ZodUnion<[z.ZodLiteral<"bridge">, z.ZodLiteral<"cex">, z.ZodLiteral<"cross-chain">, z.ZodLiteral<"dex">, z.ZodLiteral<"gaming">, z.ZodLiteral<"lending">, z.ZodLiteral<"nft-marketplace">, z.ZodLiteral<"other">]>, "many">;
1912
- name: z.ZodString;
1913
- description: z.ZodOptional<z.ZodString>;
1914
- website: z.ZodOptional<z.ZodString>;
1915
- icon: z.ZodOptional<z.ZodString>;
1916
- }, "strip", z.ZodTypeAny, {
1917
- id: string;
1918
- name: string;
1919
- categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
1920
- icon?: string | undefined;
1921
- description?: string | undefined;
1922
- website?: string | undefined;
1923
- }, {
1924
- id: string;
1925
- name: string;
1926
- categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
1927
- icon?: string | undefined;
1928
- description?: string | undefined;
1929
- website?: string | undefined;
1930
- }>, {
1931
- description: string | undefined;
1932
- website: string | undefined;
1933
- icon: string | undefined;
1934
- id: string;
1935
- name: string;
1936
- categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
1937
- }, {
1938
- id: string;
1939
- name: string;
1940
- categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
1941
- icon?: string | undefined;
1942
- description?: string | undefined;
1943
- website?: string | undefined;
1944
- }>>;
1945
- transfers: z.ZodArray<z.ZodUnion<[z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<{
1946
- from: z.ZodOptional<z.ZodString>;
1947
- to: z.ZodOptional<z.ZodString>;
1948
- asset: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
1949
- type: z.ZodLiteral<"CryptoCurrency">;
1950
- id: z.ZodString;
1951
- name: z.ZodString;
1952
- symbol: z.ZodString;
1953
- icon: z.ZodOptional<z.ZodString>;
1954
- market: z.ZodEffects<z.ZodObject<{
1955
- coingeckoId: z.ZodOptional<z.ZodString>;
1956
- marketCapUsd: z.ZodOptional<z.ZodObject<{
1957
- value: z.ZodBigInt;
1958
- decimals: z.ZodNumber;
1959
- }, "strip", z.ZodTypeAny, {
1960
- value: bigint;
1961
- decimals: number;
1962
- }, {
1963
- value: bigint;
1964
- decimals: number;
1965
- }>>;
1966
- }, "strip", z.ZodTypeAny, {
1967
- coingeckoId?: string | undefined;
1968
- marketCapUsd?: {
1969
- value: bigint;
1970
- decimals: number;
1971
- } | undefined;
1972
- }, {
1973
- coingeckoId?: string | undefined;
1974
- marketCapUsd?: {
1975
- value: bigint;
1976
- decimals: number;
1977
- } | undefined;
1978
- }>, {
1979
- coingeckoId: string | undefined;
1980
- marketCapUsd: {
1981
- value: bigint;
1982
- decimals: number;
1983
- } | undefined;
1984
- }, {
1985
- coingeckoId?: string | undefined;
1986
- marketCapUsd?: {
1987
- value: bigint;
1988
- decimals: number;
1989
- } | undefined;
1990
- }>;
1991
- priceDatasourceId: z.ZodOptional<z.ZodString>;
1992
- updatedAt: z.ZodNumber;
1993
- }, "strip", z.ZodTypeAny, {
1994
- symbol: string;
1995
- type: "CryptoCurrency";
1996
- id: string;
1997
- name: string;
1998
- market: {
1999
- coingeckoId: string | undefined;
2000
- marketCapUsd: {
2001
- value: bigint;
2002
- decimals: number;
2003
- } | undefined;
2004
- };
2005
- updatedAt: number;
2006
- icon?: string | undefined;
2007
- priceDatasourceId?: string | undefined;
2008
- }, {
2009
- symbol: string;
2010
- type: "CryptoCurrency";
2011
- id: string;
2012
- name: string;
2013
- market: {
2014
- coingeckoId?: string | undefined;
2015
- marketCapUsd?: {
2016
- value: bigint;
2017
- decimals: number;
2018
- } | undefined;
2019
- };
2020
- updatedAt: number;
2021
- icon?: string | undefined;
2022
- priceDatasourceId?: string | undefined;
2023
- }>, {
2024
- icon: string | undefined;
2025
- priceDatasourceId: string | undefined;
2026
- symbol: string;
2027
- type: "CryptoCurrency";
2028
- id: string;
2029
- name: string;
2030
- market: {
2031
- coingeckoId: string | undefined;
2032
- marketCapUsd: {
2033
- value: bigint;
2034
- decimals: number;
2035
- } | undefined;
2036
- };
2037
- updatedAt: number;
2038
- }, {
2039
- symbol: string;
2040
- type: "CryptoCurrency";
2041
- id: string;
2042
- name: string;
2043
- market: {
2044
- coingeckoId?: string | undefined;
2045
- marketCapUsd?: {
2046
- value: bigint;
2047
- decimals: number;
2048
- } | undefined;
2049
- };
2050
- updatedAt: number;
2051
- icon?: string | undefined;
2052
- priceDatasourceId?: string | undefined;
2053
- }>, z.ZodEffects<z.ZodObject<{
2054
- type: z.ZodLiteral<"FiatCurrency">;
2055
- id: z.ZodUnion<[z.ZodLiteral<"cny">, z.ZodLiteral<"eur">, z.ZodLiteral<"idr">, z.ZodLiteral<"jpy">, z.ZodLiteral<"krw">, z.ZodLiteral<"rub">, z.ZodLiteral<"twd">, z.ZodLiteral<"usd">]>;
2056
- name: z.ZodString;
2057
- symbol: z.ZodString;
2058
- icon: z.ZodOptional<z.ZodString>;
2059
- }, "strip", z.ZodTypeAny, {
2060
- symbol: string;
2061
- type: "FiatCurrency";
2062
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
2063
- name: string;
2064
- icon?: string | undefined;
2065
- }, {
2066
- symbol: string;
2067
- type: "FiatCurrency";
2068
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
2069
- name: string;
2070
- icon?: string | undefined;
2071
- }>, {
2072
- icon: string | undefined;
2073
- symbol: string;
2074
- type: "FiatCurrency";
2075
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
2076
- name: string;
2077
- }, {
2078
- symbol: string;
2079
- type: "FiatCurrency";
2080
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
2081
- name: string;
2082
- icon?: string | undefined;
2083
- }>, z.ZodEffects<z.ZodObject<{
2084
- type: z.ZodLiteral<"Nft">;
2085
- id: z.ZodString;
2086
- name: z.ZodOptional<z.ZodString>;
2087
- symbol: z.ZodOptional<z.ZodString>;
2088
- image: z.ZodOptional<z.ZodString>;
2089
- metadata: z.ZodOptional<z.ZodString>;
2090
- updatedAt: z.ZodNumber;
2091
- }, "strip", z.ZodTypeAny, {
2092
- type: "Nft";
2093
- id: string;
2094
- updatedAt: number;
2095
- symbol?: string | undefined;
2096
- name?: string | undefined;
2097
- image?: string | undefined;
2098
- metadata?: string | undefined;
2099
- }, {
2100
- type: "Nft";
2101
- id: string;
2102
- updatedAt: number;
2103
- symbol?: string | undefined;
2104
- name?: string | undefined;
2105
- image?: string | undefined;
2106
- metadata?: string | undefined;
2107
- }>, {
2108
- name: string | undefined;
2109
- symbol: string | undefined;
2110
- image: string | undefined;
2111
- metadata: string | undefined;
2112
- type: "Nft";
2113
- id: string;
2114
- updatedAt: number;
2115
- }, {
2116
- type: "Nft";
2117
- id: string;
2118
- updatedAt: number;
2119
- symbol?: string | undefined;
2120
- name?: string | undefined;
2121
- image?: string | undefined;
2122
- metadata?: string | undefined;
2123
- }>]>;
2124
- amount: z.ZodObject<{
2125
- value: z.ZodBigInt;
2126
- decimals: z.ZodNumber;
2127
- }, "strip", z.ZodTypeAny, {
2128
- value: bigint;
2129
- decimals: number;
2130
- }, {
2131
- value: bigint;
2132
- decimals: number;
2133
- }>;
2134
- price: z.ZodOptional<z.ZodObject<{
2135
- cryptoCurrencyId: z.ZodString;
2136
- fiatCurrencyId: z.ZodString;
2137
- price: z.ZodObject<{
2138
- value: z.ZodBigInt;
2139
- decimals: z.ZodNumber;
2140
- }, "strip", z.ZodTypeAny, {
2141
- value: bigint;
2142
- decimals: number;
2143
- }, {
2144
- value: bigint;
2145
- decimals: number;
2146
- }>;
2147
- timestamp: z.ZodNumber;
2148
- }, "strip", z.ZodTypeAny, {
2149
- cryptoCurrencyId: string;
2150
- fiatCurrencyId: string;
2151
- price: {
2152
- value: bigint;
2153
- decimals: number;
2154
- };
2155
- timestamp: number;
2156
- }, {
2157
- cryptoCurrencyId: string;
2158
- fiatCurrencyId: string;
2159
- price: {
2160
- value: bigint;
2161
- decimals: number;
2162
- };
2163
- timestamp: number;
2164
- }>>;
2165
- }, {
2166
- direction: z.ZodLiteral<"in">;
2167
- }>, "strip", z.ZodTypeAny, {
2168
- asset: {
2169
- icon: string | undefined;
2170
- priceDatasourceId: string | undefined;
2171
- symbol: string;
2172
- type: "CryptoCurrency";
2173
- id: string;
2174
- name: string;
2175
- market: {
2176
- coingeckoId: string | undefined;
2177
- marketCapUsd: {
2178
- value: bigint;
2179
- decimals: number;
2180
- } | undefined;
2181
- };
2182
- updatedAt: number;
2183
- } | {
2184
- icon: string | undefined;
2185
- symbol: string;
2186
- type: "FiatCurrency";
2187
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
2188
- name: string;
2189
- } | {
2190
- name: string | undefined;
2191
- symbol: string | undefined;
2192
- image: string | undefined;
2193
- metadata: string | undefined;
2194
- type: "Nft";
2195
- id: string;
2196
- updatedAt: number;
2197
- };
2198
- amount: {
2199
- value: bigint;
2200
- decimals: number;
2201
- };
2202
- direction: "in";
2203
- price?: {
2204
- cryptoCurrencyId: string;
2205
- fiatCurrencyId: string;
2206
- price: {
2207
- value: bigint;
2208
- decimals: number;
2209
- };
2210
- timestamp: number;
2211
- } | undefined;
2212
- from?: string | undefined;
2213
- to?: string | undefined;
2214
- }, {
2215
- asset: {
2216
- symbol: string;
2217
- type: "CryptoCurrency";
2218
- id: string;
2219
- name: string;
2220
- market: {
2221
- coingeckoId?: string | undefined;
2222
- marketCapUsd?: {
2223
- value: bigint;
2224
- decimals: number;
2225
- } | undefined;
2226
- };
2227
- updatedAt: number;
2228
- icon?: string | undefined;
2229
- priceDatasourceId?: string | undefined;
2230
- } | {
2231
- symbol: string;
2232
- type: "FiatCurrency";
2233
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
2234
- name: string;
2235
- icon?: string | undefined;
2236
- } | {
2237
- type: "Nft";
2238
- id: string;
2239
- updatedAt: number;
2240
- symbol?: string | undefined;
2241
- name?: string | undefined;
2242
- image?: string | undefined;
2243
- metadata?: string | undefined;
2244
- };
2245
- amount: {
2246
- value: bigint;
2247
- decimals: number;
2248
- };
2249
- direction: "in";
2250
- price?: {
2251
- cryptoCurrencyId: string;
2252
- fiatCurrencyId: string;
2253
- price: {
2254
- value: bigint;
2255
- decimals: number;
2256
- };
2257
- timestamp: number;
2258
- } | undefined;
2259
- from?: string | undefined;
2260
- to?: string | undefined;
2261
- }>, {
2262
- from: string | undefined;
2263
- to: string | undefined;
2264
- price: {
2265
- cryptoCurrencyId: string;
2266
- fiatCurrencyId: string;
2267
- price: {
2268
- value: bigint;
2269
- decimals: number;
2270
- };
2271
- timestamp: number;
2272
- } | undefined;
2273
- asset: {
2274
- icon: string | undefined;
2275
- priceDatasourceId: string | undefined;
2276
- symbol: string;
2277
- type: "CryptoCurrency";
2278
- id: string;
2279
- name: string;
2280
- market: {
2281
- coingeckoId: string | undefined;
2282
- marketCapUsd: {
2283
- value: bigint;
2284
- decimals: number;
2285
- } | undefined;
2286
- };
2287
- updatedAt: number;
2288
- } | {
2289
- icon: string | undefined;
2290
- symbol: string;
2291
- type: "FiatCurrency";
2292
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
2293
- name: string;
2294
- } | {
2295
- name: string | undefined;
2296
- symbol: string | undefined;
2297
- image: string | undefined;
2298
- metadata: string | undefined;
2299
- type: "Nft";
2300
- id: string;
2301
- updatedAt: number;
2302
- };
2303
- amount: {
2304
- value: bigint;
2305
- decimals: number;
2306
- };
2307
- direction: "in";
2308
- }, {
2309
- asset: {
2310
- symbol: string;
2311
- type: "CryptoCurrency";
2312
- id: string;
2313
- name: string;
2314
- market: {
2315
- coingeckoId?: string | undefined;
2316
- marketCapUsd?: {
2317
- value: bigint;
2318
- decimals: number;
2319
- } | undefined;
2320
- };
2321
- updatedAt: number;
2322
- icon?: string | undefined;
2323
- priceDatasourceId?: string | undefined;
2324
- } | {
2325
- symbol: string;
2326
- type: "FiatCurrency";
2327
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
2328
- name: string;
2329
- icon?: string | undefined;
2330
- } | {
2331
- type: "Nft";
2332
- id: string;
2333
- updatedAt: number;
2334
- symbol?: string | undefined;
2335
- name?: string | undefined;
2336
- image?: string | undefined;
2337
- metadata?: string | undefined;
2338
- };
2339
- amount: {
2340
- value: bigint;
2341
- decimals: number;
2342
- };
2343
- direction: "in";
2344
- price?: {
2345
- cryptoCurrencyId: string;
2346
- fiatCurrencyId: string;
2347
- price: {
2348
- value: bigint;
2349
- decimals: number;
2350
- };
2351
- timestamp: number;
2352
- } | undefined;
2353
- from?: string | undefined;
2354
- to?: string | undefined;
2355
- }>, z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<{
2356
- from: z.ZodOptional<z.ZodString>;
2357
- to: z.ZodOptional<z.ZodString>;
2358
- asset: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
2359
- type: z.ZodLiteral<"CryptoCurrency">;
2360
- id: z.ZodString;
2361
- name: z.ZodString;
2362
- symbol: z.ZodString;
2363
- icon: z.ZodOptional<z.ZodString>;
2364
- market: z.ZodEffects<z.ZodObject<{
2365
- coingeckoId: z.ZodOptional<z.ZodString>;
2366
- marketCapUsd: z.ZodOptional<z.ZodObject<{
2367
- value: z.ZodBigInt;
2368
- decimals: z.ZodNumber;
2369
- }, "strip", z.ZodTypeAny, {
2370
- value: bigint;
2371
- decimals: number;
2372
- }, {
2373
- value: bigint;
2374
- decimals: number;
2375
- }>>;
2376
- }, "strip", z.ZodTypeAny, {
2377
- coingeckoId?: string | undefined;
2378
- marketCapUsd?: {
2379
- value: bigint;
2380
- decimals: number;
2381
- } | undefined;
2382
- }, {
2383
- coingeckoId?: string | undefined;
2384
- marketCapUsd?: {
2385
- value: bigint;
2386
- decimals: number;
2387
- } | undefined;
2388
- }>, {
2389
- coingeckoId: string | undefined;
2390
- marketCapUsd: {
2391
- value: bigint;
2392
- decimals: number;
2393
- } | undefined;
2394
- }, {
2395
- coingeckoId?: string | undefined;
2396
- marketCapUsd?: {
2397
- value: bigint;
2398
- decimals: number;
2399
- } | undefined;
2400
- }>;
2401
- priceDatasourceId: z.ZodOptional<z.ZodString>;
2402
- updatedAt: z.ZodNumber;
2403
- }, "strip", z.ZodTypeAny, {
2404
- symbol: string;
2405
- type: "CryptoCurrency";
2406
- id: string;
2407
- name: string;
2408
- market: {
2409
- coingeckoId: string | undefined;
2410
- marketCapUsd: {
2411
- value: bigint;
2412
- decimals: number;
2413
- } | undefined;
2414
- };
2415
- updatedAt: number;
2416
- icon?: string | undefined;
2417
- priceDatasourceId?: string | undefined;
2418
- }, {
2419
- symbol: string;
2420
- type: "CryptoCurrency";
2421
- id: string;
2422
- name: string;
2423
- market: {
2424
- coingeckoId?: string | undefined;
2425
- marketCapUsd?: {
2426
- value: bigint;
2427
- decimals: number;
2428
- } | undefined;
2429
- };
2430
- updatedAt: number;
2431
- icon?: string | undefined;
2432
- priceDatasourceId?: string | undefined;
2433
- }>, {
2434
- icon: string | undefined;
2435
- priceDatasourceId: string | undefined;
2436
- symbol: string;
2437
- type: "CryptoCurrency";
2438
- id: string;
2439
- name: string;
2440
- market: {
2441
- coingeckoId: string | undefined;
2442
- marketCapUsd: {
2443
- value: bigint;
2444
- decimals: number;
2445
- } | undefined;
2446
- };
2447
- updatedAt: number;
2448
- }, {
2449
- symbol: string;
2450
- type: "CryptoCurrency";
2451
- id: string;
2452
- name: string;
2453
- market: {
2454
- coingeckoId?: string | undefined;
2455
- marketCapUsd?: {
2456
- value: bigint;
2457
- decimals: number;
2458
- } | undefined;
2459
- };
2460
- updatedAt: number;
2461
- icon?: string | undefined;
2462
- priceDatasourceId?: string | undefined;
2463
- }>, z.ZodEffects<z.ZodObject<{
2464
- type: z.ZodLiteral<"FiatCurrency">;
2465
- id: z.ZodUnion<[z.ZodLiteral<"cny">, z.ZodLiteral<"eur">, z.ZodLiteral<"idr">, z.ZodLiteral<"jpy">, z.ZodLiteral<"krw">, z.ZodLiteral<"rub">, z.ZodLiteral<"twd">, z.ZodLiteral<"usd">]>;
2466
- name: z.ZodString;
2467
- symbol: z.ZodString;
2468
- icon: z.ZodOptional<z.ZodString>;
2469
- }, "strip", z.ZodTypeAny, {
2470
- symbol: string;
2471
- type: "FiatCurrency";
2472
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
2473
- name: string;
2474
- icon?: string | undefined;
2475
- }, {
2476
- symbol: string;
2477
- type: "FiatCurrency";
2478
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
2479
- name: string;
2480
- icon?: string | undefined;
2481
- }>, {
2482
- icon: string | undefined;
2483
- symbol: string;
2484
- type: "FiatCurrency";
2485
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
2486
- name: string;
2487
- }, {
2488
- symbol: string;
2489
- type: "FiatCurrency";
2490
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
2491
- name: string;
2492
- icon?: string | undefined;
2493
- }>, z.ZodEffects<z.ZodObject<{
2494
- type: z.ZodLiteral<"Nft">;
2495
- id: z.ZodString;
2496
- name: z.ZodOptional<z.ZodString>;
2497
- symbol: z.ZodOptional<z.ZodString>;
2498
- image: z.ZodOptional<z.ZodString>;
2499
- metadata: z.ZodOptional<z.ZodString>;
2500
- updatedAt: z.ZodNumber;
2501
- }, "strip", z.ZodTypeAny, {
2502
- type: "Nft";
2503
- id: string;
2504
- updatedAt: number;
2505
- symbol?: string | undefined;
2506
- name?: string | undefined;
2507
- image?: string | undefined;
2508
- metadata?: string | undefined;
2509
- }, {
2510
- type: "Nft";
2511
- id: string;
2512
- updatedAt: number;
2513
- symbol?: string | undefined;
2514
- name?: string | undefined;
2515
- image?: string | undefined;
2516
- metadata?: string | undefined;
2517
- }>, {
2518
- name: string | undefined;
2519
- symbol: string | undefined;
2520
- image: string | undefined;
2521
- metadata: string | undefined;
2522
- type: "Nft";
2523
- id: string;
2524
- updatedAt: number;
2525
- }, {
2526
- type: "Nft";
2527
- id: string;
2528
- updatedAt: number;
2529
- symbol?: string | undefined;
2530
- name?: string | undefined;
2531
- image?: string | undefined;
2532
- metadata?: string | undefined;
2533
- }>]>;
2534
- amount: z.ZodObject<{
2535
- value: z.ZodBigInt;
2536
- decimals: z.ZodNumber;
2537
- }, "strip", z.ZodTypeAny, {
2538
- value: bigint;
2539
- decimals: number;
2540
- }, {
2541
- value: bigint;
2542
- decimals: number;
2543
- }>;
2544
- price: z.ZodOptional<z.ZodObject<{
2545
- cryptoCurrencyId: z.ZodString;
2546
- fiatCurrencyId: z.ZodString;
2547
- price: z.ZodObject<{
2548
- value: z.ZodBigInt;
2549
- decimals: z.ZodNumber;
2550
- }, "strip", z.ZodTypeAny, {
2551
- value: bigint;
2552
- decimals: number;
2553
- }, {
2554
- value: bigint;
2555
- decimals: number;
2556
- }>;
2557
- timestamp: z.ZodNumber;
2558
- }, "strip", z.ZodTypeAny, {
2559
- cryptoCurrencyId: string;
2560
- fiatCurrencyId: string;
2561
- price: {
2562
- value: bigint;
2563
- decimals: number;
2564
- };
2565
- timestamp: number;
2566
- }, {
2567
- cryptoCurrencyId: string;
2568
- fiatCurrencyId: string;
2569
- price: {
2570
- value: bigint;
2571
- decimals: number;
2572
- };
2573
- timestamp: number;
2574
- }>>;
2575
- }, {
2576
- direction: z.ZodLiteral<"out">;
2577
- }>, "strip", z.ZodTypeAny, {
2578
- asset: {
2579
- icon: string | undefined;
2580
- priceDatasourceId: string | undefined;
2581
- symbol: string;
2582
- type: "CryptoCurrency";
2583
- id: string;
2584
- name: string;
2585
- market: {
2586
- coingeckoId: string | undefined;
2587
- marketCapUsd: {
2588
- value: bigint;
2589
- decimals: number;
2590
- } | undefined;
2591
- };
2592
- updatedAt: number;
2593
- } | {
2594
- icon: string | undefined;
2595
- symbol: string;
2596
- type: "FiatCurrency";
2597
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
2598
- name: string;
2599
- } | {
2600
- name: string | undefined;
2601
- symbol: string | undefined;
2602
- image: string | undefined;
2603
- metadata: string | undefined;
2604
- type: "Nft";
2605
- id: string;
2606
- updatedAt: number;
2607
- };
2608
- amount: {
2609
- value: bigint;
2610
- decimals: number;
2611
- };
2612
- direction: "out";
2613
- price?: {
2614
- cryptoCurrencyId: string;
2615
- fiatCurrencyId: string;
2616
- price: {
2617
- value: bigint;
2618
- decimals: number;
2619
- };
2620
- timestamp: number;
2621
- } | undefined;
2622
- from?: string | undefined;
2623
- to?: string | undefined;
2624
- }, {
2625
- asset: {
2626
- symbol: string;
2627
- type: "CryptoCurrency";
2628
- id: string;
2629
- name: string;
2630
- market: {
2631
- coingeckoId?: string | undefined;
2632
- marketCapUsd?: {
2633
- value: bigint;
2634
- decimals: number;
2635
- } | undefined;
2636
- };
2637
- updatedAt: number;
2638
- icon?: string | undefined;
2639
- priceDatasourceId?: string | undefined;
2640
- } | {
2641
- symbol: string;
2642
- type: "FiatCurrency";
2643
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
2644
- name: string;
2645
- icon?: string | undefined;
2646
- } | {
2647
- type: "Nft";
2648
- id: string;
2649
- updatedAt: number;
2650
- symbol?: string | undefined;
2651
- name?: string | undefined;
2652
- image?: string | undefined;
2653
- metadata?: string | undefined;
2654
- };
2655
- amount: {
2656
- value: bigint;
2657
- decimals: number;
2658
- };
2659
- direction: "out";
2660
- price?: {
2661
- cryptoCurrencyId: string;
2662
- fiatCurrencyId: string;
2663
- price: {
2664
- value: bigint;
2665
- decimals: number;
2666
- };
2667
- timestamp: number;
2668
- } | undefined;
2669
- from?: string | undefined;
2670
- to?: string | undefined;
2671
- }>, {
2672
- from: string | undefined;
2673
- to: string | undefined;
2674
- price: {
2675
- cryptoCurrencyId: string;
2676
- fiatCurrencyId: string;
2677
- price: {
2678
- value: bigint;
2679
- decimals: number;
2680
- };
2681
- timestamp: number;
2682
- } | undefined;
2683
- asset: {
2684
- icon: string | undefined;
2685
- priceDatasourceId: string | undefined;
2686
- symbol: string;
2687
- type: "CryptoCurrency";
2688
- id: string;
2689
- name: string;
2690
- market: {
2691
- coingeckoId: string | undefined;
2692
- marketCapUsd: {
2693
- value: bigint;
2694
- decimals: number;
2695
- } | undefined;
2696
- };
2697
- updatedAt: number;
2698
- } | {
2699
- icon: string | undefined;
2700
- symbol: string;
2701
- type: "FiatCurrency";
2702
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
2703
- name: string;
2704
- } | {
2705
- name: string | undefined;
2706
- symbol: string | undefined;
2707
- image: string | undefined;
2708
- metadata: string | undefined;
2709
- type: "Nft";
2710
- id: string;
2711
- updatedAt: number;
2712
- };
2713
- amount: {
2714
- value: bigint;
2715
- decimals: number;
2716
- };
2717
- direction: "out";
2718
- }, {
2719
- asset: {
2720
- symbol: string;
2721
- type: "CryptoCurrency";
2722
- id: string;
2723
- name: string;
2724
- market: {
2725
- coingeckoId?: string | undefined;
2726
- marketCapUsd?: {
2727
- value: bigint;
2728
- decimals: number;
2729
- } | undefined;
2730
- };
2731
- updatedAt: number;
2732
- icon?: string | undefined;
2733
- priceDatasourceId?: string | undefined;
2734
- } | {
2735
- symbol: string;
2736
- type: "FiatCurrency";
2737
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
2738
- name: string;
2739
- icon?: string | undefined;
2740
- } | {
2741
- type: "Nft";
2742
- id: string;
2743
- updatedAt: number;
2744
- symbol?: string | undefined;
2745
- name?: string | undefined;
2746
- image?: string | undefined;
2747
- metadata?: string | undefined;
2748
- };
2749
- amount: {
2750
- value: bigint;
2751
- decimals: number;
2752
- };
2753
- direction: "out";
2754
- price?: {
2755
- cryptoCurrencyId: string;
2756
- fiatCurrencyId: string;
2757
- price: {
2758
- value: bigint;
2759
- decimals: number;
2760
- };
2761
- timestamp: number;
2762
- } | undefined;
2763
- from?: string | undefined;
2764
- to?: string | undefined;
2765
- }>, z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<{
2766
- from: z.ZodOptional<z.ZodString>;
2767
- to: z.ZodOptional<z.ZodString>;
2768
- asset: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
2769
- type: z.ZodLiteral<"CryptoCurrency">;
2770
- id: z.ZodString;
2771
- name: z.ZodString;
2772
- symbol: z.ZodString;
2773
- icon: z.ZodOptional<z.ZodString>;
2774
- market: z.ZodEffects<z.ZodObject<{
2775
- coingeckoId: z.ZodOptional<z.ZodString>;
2776
- marketCapUsd: z.ZodOptional<z.ZodObject<{
2777
- value: z.ZodBigInt;
2778
- decimals: z.ZodNumber;
2779
- }, "strip", z.ZodTypeAny, {
2780
- value: bigint;
2781
- decimals: number;
2782
- }, {
2783
- value: bigint;
2784
- decimals: number;
2785
- }>>;
2786
- }, "strip", z.ZodTypeAny, {
2787
- coingeckoId?: string | undefined;
2788
- marketCapUsd?: {
2789
- value: bigint;
2790
- decimals: number;
2791
- } | undefined;
2792
- }, {
2793
- coingeckoId?: string | undefined;
2794
- marketCapUsd?: {
2795
- value: bigint;
2796
- decimals: number;
2797
- } | undefined;
2798
- }>, {
2799
- coingeckoId: string | undefined;
2800
- marketCapUsd: {
2801
- value: bigint;
2802
- decimals: number;
2803
- } | undefined;
2804
- }, {
2805
- coingeckoId?: string | undefined;
2806
- marketCapUsd?: {
2807
- value: bigint;
2808
- decimals: number;
2809
- } | undefined;
2810
- }>;
2811
- priceDatasourceId: z.ZodOptional<z.ZodString>;
2812
- updatedAt: z.ZodNumber;
2813
- }, "strip", z.ZodTypeAny, {
2814
- symbol: string;
2815
- type: "CryptoCurrency";
2816
- id: string;
2817
- name: string;
2818
- market: {
2819
- coingeckoId: string | undefined;
2820
- marketCapUsd: {
2821
- value: bigint;
2822
- decimals: number;
2823
- } | undefined;
2824
- };
2825
- updatedAt: number;
2826
- icon?: string | undefined;
2827
- priceDatasourceId?: string | undefined;
2828
- }, {
2829
- symbol: string;
2830
- type: "CryptoCurrency";
2831
- id: string;
2832
- name: string;
2833
- market: {
2834
- coingeckoId?: string | undefined;
2835
- marketCapUsd?: {
2836
- value: bigint;
2837
- decimals: number;
2838
- } | undefined;
2839
- };
2840
- updatedAt: number;
2841
- icon?: string | undefined;
2842
- priceDatasourceId?: string | undefined;
2843
- }>, {
2844
- icon: string | undefined;
2845
- priceDatasourceId: string | undefined;
2846
- symbol: string;
2847
- type: "CryptoCurrency";
2848
- id: string;
2849
- name: string;
2850
- market: {
2851
- coingeckoId: string | undefined;
2852
- marketCapUsd: {
2853
- value: bigint;
2854
- decimals: number;
2855
- } | undefined;
2856
- };
2857
- updatedAt: number;
2858
- }, {
2859
- symbol: string;
2860
- type: "CryptoCurrency";
2861
- id: string;
2862
- name: string;
2863
- market: {
2864
- coingeckoId?: string | undefined;
2865
- marketCapUsd?: {
2866
- value: bigint;
2867
- decimals: number;
2868
- } | undefined;
2869
- };
2870
- updatedAt: number;
2871
- icon?: string | undefined;
2872
- priceDatasourceId?: string | undefined;
2873
- }>, z.ZodEffects<z.ZodObject<{
2874
- type: z.ZodLiteral<"FiatCurrency">;
2875
- id: z.ZodUnion<[z.ZodLiteral<"cny">, z.ZodLiteral<"eur">, z.ZodLiteral<"idr">, z.ZodLiteral<"jpy">, z.ZodLiteral<"krw">, z.ZodLiteral<"rub">, z.ZodLiteral<"twd">, z.ZodLiteral<"usd">]>;
2876
- name: z.ZodString;
2877
- symbol: z.ZodString;
2878
- icon: z.ZodOptional<z.ZodString>;
2879
- }, "strip", z.ZodTypeAny, {
2880
- symbol: string;
2881
- type: "FiatCurrency";
2882
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
2883
- name: string;
2884
- icon?: string | undefined;
2885
- }, {
2886
- symbol: string;
2887
- type: "FiatCurrency";
2888
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
2889
- name: string;
2890
- icon?: string | undefined;
2891
- }>, {
2892
- icon: string | undefined;
2893
- symbol: string;
2894
- type: "FiatCurrency";
2895
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
2896
- name: string;
2897
- }, {
2898
- symbol: string;
2899
- type: "FiatCurrency";
2900
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
2901
- name: string;
2902
- icon?: string | undefined;
2903
- }>, z.ZodEffects<z.ZodObject<{
2904
- type: z.ZodLiteral<"Nft">;
2905
- id: z.ZodString;
2906
- name: z.ZodOptional<z.ZodString>;
2907
- symbol: z.ZodOptional<z.ZodString>;
2908
- image: z.ZodOptional<z.ZodString>;
2909
- metadata: z.ZodOptional<z.ZodString>;
2910
- updatedAt: z.ZodNumber;
2911
- }, "strip", z.ZodTypeAny, {
2912
- type: "Nft";
2913
- id: string;
2914
- updatedAt: number;
2915
- symbol?: string | undefined;
2916
- name?: string | undefined;
2917
- image?: string | undefined;
2918
- metadata?: string | undefined;
2919
- }, {
2920
- type: "Nft";
2921
- id: string;
2922
- updatedAt: number;
2923
- symbol?: string | undefined;
2924
- name?: string | undefined;
2925
- image?: string | undefined;
2926
- metadata?: string | undefined;
2927
- }>, {
2928
- name: string | undefined;
2929
- symbol: string | undefined;
2930
- image: string | undefined;
2931
- metadata: string | undefined;
2932
- type: "Nft";
2933
- id: string;
2934
- updatedAt: number;
2935
- }, {
2936
- type: "Nft";
2937
- id: string;
2938
- updatedAt: number;
2939
- symbol?: string | undefined;
2940
- name?: string | undefined;
2941
- image?: string | undefined;
2942
- metadata?: string | undefined;
2943
- }>]>;
2944
- amount: z.ZodObject<{
2945
- value: z.ZodBigInt;
2946
- decimals: z.ZodNumber;
2947
- }, "strip", z.ZodTypeAny, {
2948
- value: bigint;
2949
- decimals: number;
2950
- }, {
2951
- value: bigint;
2952
- decimals: number;
2953
- }>;
2954
- price: z.ZodOptional<z.ZodObject<{
2955
- cryptoCurrencyId: z.ZodString;
2956
- fiatCurrencyId: z.ZodString;
2957
- price: z.ZodObject<{
2958
- value: z.ZodBigInt;
2959
- decimals: z.ZodNumber;
2960
- }, "strip", z.ZodTypeAny, {
2961
- value: bigint;
2962
- decimals: number;
2963
- }, {
2964
- value: bigint;
2965
- decimals: number;
2966
- }>;
2967
- timestamp: z.ZodNumber;
2968
- }, "strip", z.ZodTypeAny, {
2969
- cryptoCurrencyId: string;
2970
- fiatCurrencyId: string;
2971
- price: {
2972
- value: bigint;
2973
- decimals: number;
2974
- };
2975
- timestamp: number;
2976
- }, {
2977
- cryptoCurrencyId: string;
2978
- fiatCurrencyId: string;
2979
- price: {
2980
- value: bigint;
2981
- decimals: number;
2982
- };
2983
- timestamp: number;
2984
- }>>;
2985
- }, {
2986
- direction: z.ZodLiteral<"none">;
2987
- }>, "strip", z.ZodTypeAny, {
2988
- asset: {
2989
- icon: string | undefined;
2990
- priceDatasourceId: string | undefined;
2991
- symbol: string;
2992
- type: "CryptoCurrency";
2993
- id: string;
2994
- name: string;
2995
- market: {
2996
- coingeckoId: string | undefined;
2997
- marketCapUsd: {
2998
- value: bigint;
2999
- decimals: number;
3000
- } | undefined;
3001
- };
3002
- updatedAt: number;
3003
- } | {
3004
- icon: string | undefined;
3005
- symbol: string;
3006
- type: "FiatCurrency";
3007
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
3008
- name: string;
3009
- } | {
3010
- name: string | undefined;
3011
- symbol: string | undefined;
3012
- image: string | undefined;
3013
- metadata: string | undefined;
3014
- type: "Nft";
3015
- id: string;
3016
- updatedAt: number;
3017
- };
3018
- amount: {
3019
- value: bigint;
3020
- decimals: number;
3021
- };
3022
- direction: "none";
3023
- price?: {
3024
- cryptoCurrencyId: string;
3025
- fiatCurrencyId: string;
3026
- price: {
3027
- value: bigint;
3028
- decimals: number;
3029
- };
3030
- timestamp: number;
3031
- } | undefined;
3032
- from?: string | undefined;
3033
- to?: string | undefined;
3034
- }, {
3035
- asset: {
3036
- symbol: string;
3037
- type: "CryptoCurrency";
3038
- id: string;
3039
- name: string;
3040
- market: {
3041
- coingeckoId?: string | undefined;
3042
- marketCapUsd?: {
3043
- value: bigint;
3044
- decimals: number;
3045
- } | undefined;
3046
- };
3047
- updatedAt: number;
3048
- icon?: string | undefined;
3049
- priceDatasourceId?: string | undefined;
3050
- } | {
3051
- symbol: string;
3052
- type: "FiatCurrency";
3053
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
3054
- name: string;
3055
- icon?: string | undefined;
3056
- } | {
3057
- type: "Nft";
3058
- id: string;
3059
- updatedAt: number;
3060
- symbol?: string | undefined;
3061
- name?: string | undefined;
3062
- image?: string | undefined;
3063
- metadata?: string | undefined;
3064
- };
3065
- amount: {
3066
- value: bigint;
3067
- decimals: number;
3068
- };
3069
- direction: "none";
3070
- price?: {
3071
- cryptoCurrencyId: string;
3072
- fiatCurrencyId: string;
3073
- price: {
3074
- value: bigint;
3075
- decimals: number;
3076
- };
3077
- timestamp: number;
3078
- } | undefined;
3079
- from?: string | undefined;
3080
- to?: string | undefined;
3081
- }>, {
3082
- from: string | undefined;
3083
- to: string | undefined;
3084
- price: {
3085
- cryptoCurrencyId: string;
3086
- fiatCurrencyId: string;
3087
- price: {
3088
- value: bigint;
3089
- decimals: number;
3090
- };
3091
- timestamp: number;
3092
- } | undefined;
3093
- asset: {
3094
- icon: string | undefined;
3095
- priceDatasourceId: string | undefined;
3096
- symbol: string;
3097
- type: "CryptoCurrency";
3098
- id: string;
3099
- name: string;
3100
- market: {
3101
- coingeckoId: string | undefined;
3102
- marketCapUsd: {
3103
- value: bigint;
3104
- decimals: number;
3105
- } | undefined;
3106
- };
3107
- updatedAt: number;
3108
- } | {
3109
- icon: string | undefined;
3110
- symbol: string;
3111
- type: "FiatCurrency";
3112
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
3113
- name: string;
3114
- } | {
3115
- name: string | undefined;
3116
- symbol: string | undefined;
3117
- image: string | undefined;
3118
- metadata: string | undefined;
3119
- type: "Nft";
3120
- id: string;
3121
- updatedAt: number;
3122
- };
3123
- amount: {
3124
- value: bigint;
3125
- decimals: number;
3126
- };
3127
- direction: "none";
3128
- }, {
3129
- asset: {
3130
- symbol: string;
3131
- type: "CryptoCurrency";
3132
- id: string;
3133
- name: string;
3134
- market: {
3135
- coingeckoId?: string | undefined;
3136
- marketCapUsd?: {
3137
- value: bigint;
3138
- decimals: number;
3139
- } | undefined;
3140
- };
3141
- updatedAt: number;
3142
- icon?: string | undefined;
3143
- priceDatasourceId?: string | undefined;
3144
- } | {
3145
- symbol: string;
3146
- type: "FiatCurrency";
3147
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
3148
- name: string;
3149
- icon?: string | undefined;
3150
- } | {
3151
- type: "Nft";
3152
- id: string;
3153
- updatedAt: number;
3154
- symbol?: string | undefined;
3155
- name?: string | undefined;
3156
- image?: string | undefined;
3157
- metadata?: string | undefined;
3158
- };
3159
- amount: {
3160
- value: bigint;
3161
- decimals: number;
3162
- };
3163
- direction: "none";
3164
- price?: {
3165
- cryptoCurrencyId: string;
3166
- fiatCurrencyId: string;
3167
- price: {
3168
- value: bigint;
3169
- decimals: number;
3170
- };
3171
- timestamp: number;
3172
- } | undefined;
3173
- from?: string | undefined;
3174
- to?: string | undefined;
3175
- }>]>, "many">;
3176
- }, {
3177
- type: z.ZodLiteral<"NormalAccountAction">;
3178
- }>, {
3179
- action: z.ZodLiteral<"transfer">;
3180
- transfers: z.ZodArray<z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<{
3181
- from: z.ZodOptional<z.ZodString>;
3182
- to: z.ZodOptional<z.ZodString>;
3183
- asset: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
3184
- type: z.ZodLiteral<"CryptoCurrency">;
3185
- id: z.ZodString;
3186
- name: z.ZodString;
3187
- symbol: z.ZodString;
3188
- icon: z.ZodOptional<z.ZodString>;
3189
- market: z.ZodEffects<z.ZodObject<{
3190
- coingeckoId: z.ZodOptional<z.ZodString>;
3191
- marketCapUsd: z.ZodOptional<z.ZodObject<{
3192
- value: z.ZodBigInt;
3193
- decimals: z.ZodNumber;
3194
- }, "strip", z.ZodTypeAny, {
3195
- value: bigint;
3196
- decimals: number;
3197
- }, {
3198
- value: bigint;
3199
- decimals: number;
3200
- }>>;
3201
- }, "strip", z.ZodTypeAny, {
3202
- coingeckoId?: string | undefined;
3203
- marketCapUsd?: {
3204
- value: bigint;
3205
- decimals: number;
3206
- } | undefined;
3207
- }, {
3208
- coingeckoId?: string | undefined;
3209
- marketCapUsd?: {
3210
- value: bigint;
3211
- decimals: number;
3212
- } | undefined;
3213
- }>, {
3214
- coingeckoId: string | undefined;
3215
- marketCapUsd: {
3216
- value: bigint;
3217
- decimals: number;
3218
- } | undefined;
3219
- }, {
3220
- coingeckoId?: string | undefined;
3221
- marketCapUsd?: {
3222
- value: bigint;
3223
- decimals: number;
3224
- } | undefined;
3225
- }>;
3226
- priceDatasourceId: z.ZodOptional<z.ZodString>;
3227
- updatedAt: z.ZodNumber;
3228
- }, "strip", z.ZodTypeAny, {
3229
- symbol: string;
3230
- type: "CryptoCurrency";
3231
- id: string;
3232
- name: string;
3233
- market: {
3234
- coingeckoId: string | undefined;
3235
- marketCapUsd: {
3236
- value: bigint;
3237
- decimals: number;
3238
- } | undefined;
3239
- };
3240
- updatedAt: number;
3241
- icon?: string | undefined;
3242
- priceDatasourceId?: string | undefined;
3243
- }, {
3244
- symbol: string;
3245
- type: "CryptoCurrency";
3246
- id: string;
3247
- name: string;
3248
- market: {
3249
- coingeckoId?: string | undefined;
3250
- marketCapUsd?: {
3251
- value: bigint;
3252
- decimals: number;
3253
- } | undefined;
3254
- };
3255
- updatedAt: number;
3256
- icon?: string | undefined;
3257
- priceDatasourceId?: string | undefined;
3258
- }>, {
3259
- icon: string | undefined;
3260
- priceDatasourceId: string | undefined;
3261
- symbol: string;
3262
- type: "CryptoCurrency";
3263
- id: string;
3264
- name: string;
3265
- market: {
3266
- coingeckoId: string | undefined;
3267
- marketCapUsd: {
3268
- value: bigint;
3269
- decimals: number;
3270
- } | undefined;
3271
- };
3272
- updatedAt: number;
3273
- }, {
3274
- symbol: string;
3275
- type: "CryptoCurrency";
3276
- id: string;
3277
- name: string;
3278
- market: {
3279
- coingeckoId?: string | undefined;
3280
- marketCapUsd?: {
3281
- value: bigint;
3282
- decimals: number;
3283
- } | undefined;
3284
- };
3285
- updatedAt: number;
3286
- icon?: string | undefined;
3287
- priceDatasourceId?: string | undefined;
3288
- }>, z.ZodEffects<z.ZodObject<{
3289
- type: z.ZodLiteral<"FiatCurrency">;
3290
- id: z.ZodUnion<[z.ZodLiteral<"cny">, z.ZodLiteral<"eur">, z.ZodLiteral<"idr">, z.ZodLiteral<"jpy">, z.ZodLiteral<"krw">, z.ZodLiteral<"rub">, z.ZodLiteral<"twd">, z.ZodLiteral<"usd">]>;
3291
- name: z.ZodString;
3292
- symbol: z.ZodString;
3293
- icon: z.ZodOptional<z.ZodString>;
3294
- }, "strip", z.ZodTypeAny, {
3295
- symbol: string;
3296
- type: "FiatCurrency";
3297
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
3298
- name: string;
3299
- icon?: string | undefined;
3300
- }, {
3301
- symbol: string;
3302
- type: "FiatCurrency";
3303
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
3304
- name: string;
3305
- icon?: string | undefined;
3306
- }>, {
3307
- icon: string | undefined;
3308
- symbol: string;
3309
- type: "FiatCurrency";
3310
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
3311
- name: string;
3312
- }, {
3313
- symbol: string;
3314
- type: "FiatCurrency";
3315
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
3316
- name: string;
3317
- icon?: string | undefined;
3318
- }>, z.ZodEffects<z.ZodObject<{
3319
- type: z.ZodLiteral<"Nft">;
3320
- id: z.ZodString;
3321
- name: z.ZodOptional<z.ZodString>;
3322
- symbol: z.ZodOptional<z.ZodString>;
3323
- image: z.ZodOptional<z.ZodString>;
3324
- metadata: z.ZodOptional<z.ZodString>;
3325
- updatedAt: z.ZodNumber;
3326
- }, "strip", z.ZodTypeAny, {
3327
- type: "Nft";
3328
- id: string;
3329
- updatedAt: number;
3330
- symbol?: string | undefined;
3331
- name?: string | undefined;
3332
- image?: string | undefined;
3333
- metadata?: string | undefined;
3334
- }, {
3335
- type: "Nft";
3336
- id: string;
3337
- updatedAt: number;
3338
- symbol?: string | undefined;
3339
- name?: string | undefined;
3340
- image?: string | undefined;
3341
- metadata?: string | undefined;
3342
- }>, {
3343
- name: string | undefined;
3344
- symbol: string | undefined;
3345
- image: string | undefined;
3346
- metadata: string | undefined;
3347
- type: "Nft";
3348
- id: string;
3349
- updatedAt: number;
3350
- }, {
3351
- type: "Nft";
3352
- id: string;
3353
- updatedAt: number;
3354
- symbol?: string | undefined;
3355
- name?: string | undefined;
3356
- image?: string | undefined;
3357
- metadata?: string | undefined;
3358
- }>]>;
3359
- amount: z.ZodObject<{
3360
- value: z.ZodBigInt;
3361
- decimals: z.ZodNumber;
3362
- }, "strip", z.ZodTypeAny, {
3363
- value: bigint;
3364
- decimals: number;
3365
- }, {
3366
- value: bigint;
3367
- decimals: number;
3368
- }>;
3369
- price: z.ZodOptional<z.ZodObject<{
3370
- cryptoCurrencyId: z.ZodString;
3371
- fiatCurrencyId: z.ZodString;
3372
- price: z.ZodObject<{
3373
- value: z.ZodBigInt;
3374
- decimals: z.ZodNumber;
3375
- }, "strip", z.ZodTypeAny, {
3376
- value: bigint;
3377
- decimals: number;
3378
- }, {
3379
- value: bigint;
3380
- decimals: number;
3381
- }>;
3382
- timestamp: z.ZodNumber;
3383
- }, "strip", z.ZodTypeAny, {
3384
- cryptoCurrencyId: string;
3385
- fiatCurrencyId: string;
3386
- price: {
3387
- value: bigint;
3388
- decimals: number;
3389
- };
3390
- timestamp: number;
3391
- }, {
3392
- cryptoCurrencyId: string;
3393
- fiatCurrencyId: string;
3394
- price: {
3395
- value: bigint;
3396
- decimals: number;
3397
- };
3398
- timestamp: number;
3399
- }>>;
3400
- }, {
3401
- direction: z.ZodLiteral<"out">;
3402
- }>, "strip", z.ZodTypeAny, {
3403
- asset: {
3404
- icon: string | undefined;
3405
- priceDatasourceId: string | undefined;
3406
- symbol: string;
3407
- type: "CryptoCurrency";
3408
- id: string;
3409
- name: string;
3410
- market: {
3411
- coingeckoId: string | undefined;
3412
- marketCapUsd: {
3413
- value: bigint;
3414
- decimals: number;
3415
- } | undefined;
3416
- };
3417
- updatedAt: number;
3418
- } | {
3419
- icon: string | undefined;
3420
- symbol: string;
3421
- type: "FiatCurrency";
3422
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
3423
- name: string;
3424
- } | {
3425
- name: string | undefined;
3426
- symbol: string | undefined;
3427
- image: string | undefined;
3428
- metadata: string | undefined;
3429
- type: "Nft";
3430
- id: string;
3431
- updatedAt: number;
3432
- };
3433
- amount: {
3434
- value: bigint;
3435
- decimals: number;
3436
- };
3437
- direction: "out";
3438
- price?: {
3439
- cryptoCurrencyId: string;
3440
- fiatCurrencyId: string;
3441
- price: {
3442
- value: bigint;
3443
- decimals: number;
3444
- };
3445
- timestamp: number;
3446
- } | undefined;
3447
- from?: string | undefined;
3448
- to?: string | undefined;
3449
- }, {
3450
- asset: {
3451
- symbol: string;
3452
- type: "CryptoCurrency";
3453
- id: string;
3454
- name: string;
3455
- market: {
3456
- coingeckoId?: string | undefined;
3457
- marketCapUsd?: {
3458
- value: bigint;
3459
- decimals: number;
3460
- } | undefined;
3461
- };
3462
- updatedAt: number;
3463
- icon?: string | undefined;
3464
- priceDatasourceId?: string | undefined;
3465
- } | {
3466
- symbol: string;
3467
- type: "FiatCurrency";
3468
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
3469
- name: string;
3470
- icon?: string | undefined;
3471
- } | {
3472
- type: "Nft";
3473
- id: string;
3474
- updatedAt: number;
3475
- symbol?: string | undefined;
3476
- name?: string | undefined;
3477
- image?: string | undefined;
3478
- metadata?: string | undefined;
3479
- };
3480
- amount: {
3481
- value: bigint;
3482
- decimals: number;
3483
- };
3484
- direction: "out";
3485
- price?: {
3486
- cryptoCurrencyId: string;
3487
- fiatCurrencyId: string;
3488
- price: {
3489
- value: bigint;
3490
- decimals: number;
3491
- };
3492
- timestamp: number;
3493
- } | undefined;
3494
- from?: string | undefined;
3495
- to?: string | undefined;
3496
- }>, {
3497
- from: string | undefined;
3498
- to: string | undefined;
3499
- price: {
3500
- cryptoCurrencyId: string;
3501
- fiatCurrencyId: string;
3502
- price: {
3503
- value: bigint;
3504
- decimals: number;
3505
- };
3506
- timestamp: number;
3507
- } | undefined;
3508
- asset: {
3509
- icon: string | undefined;
3510
- priceDatasourceId: string | undefined;
3511
- symbol: string;
3512
- type: "CryptoCurrency";
3513
- id: string;
3514
- name: string;
3515
- market: {
3516
- coingeckoId: string | undefined;
3517
- marketCapUsd: {
3518
- value: bigint;
3519
- decimals: number;
3520
- } | undefined;
3521
- };
3522
- updatedAt: number;
3523
- } | {
3524
- icon: string | undefined;
3525
- symbol: string;
3526
- type: "FiatCurrency";
3527
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
3528
- name: string;
3529
- } | {
3530
- name: string | undefined;
3531
- symbol: string | undefined;
3532
- image: string | undefined;
3533
- metadata: string | undefined;
3534
- type: "Nft";
3535
- id: string;
3536
- updatedAt: number;
3537
- };
3538
- amount: {
3539
- value: bigint;
3540
- decimals: number;
3541
- };
3542
- direction: "out";
3543
- }, {
3544
- asset: {
3545
- symbol: string;
3546
- type: "CryptoCurrency";
3547
- id: string;
3548
- name: string;
3549
- market: {
3550
- coingeckoId?: string | undefined;
3551
- marketCapUsd?: {
3552
- value: bigint;
3553
- decimals: number;
3554
- } | undefined;
3555
- };
3556
- updatedAt: number;
3557
- icon?: string | undefined;
3558
- priceDatasourceId?: string | undefined;
3559
- } | {
3560
- symbol: string;
3561
- type: "FiatCurrency";
3562
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
3563
- name: string;
3564
- icon?: string | undefined;
3565
- } | {
3566
- type: "Nft";
3567
- id: string;
3568
- updatedAt: number;
3569
- symbol?: string | undefined;
3570
- name?: string | undefined;
3571
- image?: string | undefined;
3572
- metadata?: string | undefined;
3573
- };
3574
- amount: {
3575
- value: bigint;
3576
- decimals: number;
3577
- };
3578
- direction: "out";
3579
- price?: {
3580
- cryptoCurrencyId: string;
3581
- fiatCurrencyId: string;
3582
- price: {
3583
- value: bigint;
3584
- decimals: number;
3585
- };
3586
- timestamp: number;
3587
- } | undefined;
3588
- from?: string | undefined;
3589
- to?: string | undefined;
3590
- }>, "many">;
3591
- }>, "strip", z.ZodTypeAny, {
3592
- type: "NormalAccountAction";
3593
- timestamp: number;
3594
- order: number;
3595
- action: "transfer";
3596
- source: string;
3597
- evidence: "none" | "contract" | "system-rule" | "user-rule" | "manual-check";
3598
- transfers: {
3599
- from: string | undefined;
3600
- to: string | undefined;
3601
- price: {
3602
- cryptoCurrencyId: string;
3603
- fiatCurrencyId: string;
3604
- price: {
3605
- value: bigint;
3606
- decimals: number;
3607
- };
3608
- timestamp: number;
3609
- } | undefined;
3610
- asset: {
3611
- icon: string | undefined;
3612
- priceDatasourceId: string | undefined;
3613
- symbol: string;
3614
- type: "CryptoCurrency";
3615
- id: string;
3616
- name: string;
3617
- market: {
3618
- coingeckoId: string | undefined;
3619
- marketCapUsd: {
3620
- value: bigint;
3621
- decimals: number;
3622
- } | undefined;
3623
- };
3624
- updatedAt: number;
3625
- } | {
3626
- icon: string | undefined;
3627
- symbol: string;
3628
- type: "FiatCurrency";
3629
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
3630
- name: string;
3631
- } | {
3632
- name: string | undefined;
3633
- symbol: string | undefined;
3634
- image: string | undefined;
3635
- metadata: string | undefined;
3636
- type: "Nft";
3637
- id: string;
3638
- updatedAt: number;
3639
- };
3640
- amount: {
3641
- value: bigint;
3642
- decimals: number;
3643
- };
3644
- direction: "out";
3645
- }[];
3646
- comment?: string | undefined;
3647
- app?: {
3648
- description: string | undefined;
3649
- website: string | undefined;
3650
- icon: string | undefined;
3651
- id: string;
3652
- name: string;
3653
- categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
3654
- } | undefined;
3655
- }, {
3656
- type: "NormalAccountAction";
3657
- timestamp: number;
3658
- order: number;
3659
- action: "transfer";
3660
- source: string;
3661
- evidence: "none" | "contract" | "system-rule" | "user-rule" | "manual-check";
3662
- transfers: {
3663
- asset: {
3664
- symbol: string;
3665
- type: "CryptoCurrency";
3666
- id: string;
3667
- name: string;
3668
- market: {
3669
- coingeckoId?: string | undefined;
3670
- marketCapUsd?: {
3671
- value: bigint;
3672
- decimals: number;
3673
- } | undefined;
3674
- };
3675
- updatedAt: number;
3676
- icon?: string | undefined;
3677
- priceDatasourceId?: string | undefined;
3678
- } | {
3679
- symbol: string;
3680
- type: "FiatCurrency";
3681
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
3682
- name: string;
3683
- icon?: string | undefined;
3684
- } | {
3685
- type: "Nft";
3686
- id: string;
3687
- updatedAt: number;
3688
- symbol?: string | undefined;
3689
- name?: string | undefined;
3690
- image?: string | undefined;
3691
- metadata?: string | undefined;
3692
- };
3693
- amount: {
3694
- value: bigint;
3695
- decimals: number;
3696
- };
3697
- direction: "out";
3698
- price?: {
3699
- cryptoCurrencyId: string;
3700
- fiatCurrencyId: string;
3701
- price: {
3702
- value: bigint;
3703
- decimals: number;
3704
- };
3705
- timestamp: number;
3706
- } | undefined;
3707
- from?: string | undefined;
3708
- to?: string | undefined;
3709
- }[];
3710
- comment?: string | undefined;
3711
- app?: {
3712
- id: string;
3713
- name: string;
3714
- categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
3715
- icon?: string | undefined;
3716
- description?: string | undefined;
3717
- website?: string | undefined;
3718
- } | undefined;
3719
- }>, {
3720
- comment: string | undefined;
3721
- app: {
3722
- description: string | undefined;
3723
- website: string | undefined;
3724
- icon: string | undefined;
3725
- id: string;
3726
- name: string;
3727
- categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
3728
- } | undefined;
3729
- type: "NormalAccountAction";
3730
- timestamp: number;
3731
- order: number;
3732
- action: "transfer";
3733
- source: string;
3734
- evidence: "none" | "contract" | "system-rule" | "user-rule" | "manual-check";
3735
- transfers: {
3736
- from: string | undefined;
3737
- to: string | undefined;
3738
- price: {
3739
- cryptoCurrencyId: string;
3740
- fiatCurrencyId: string;
3741
- price: {
3742
- value: bigint;
3743
- decimals: number;
3744
- };
3745
- timestamp: number;
3746
- } | undefined;
3747
- asset: {
3748
- icon: string | undefined;
3749
- priceDatasourceId: string | undefined;
3750
- symbol: string;
3751
- type: "CryptoCurrency";
3752
- id: string;
3753
- name: string;
3754
- market: {
3755
- coingeckoId: string | undefined;
3756
- marketCapUsd: {
3757
- value: bigint;
3758
- decimals: number;
3759
- } | undefined;
3760
- };
3761
- updatedAt: number;
3762
- } | {
3763
- icon: string | undefined;
3764
- symbol: string;
3765
- type: "FiatCurrency";
3766
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
3767
- name: string;
3768
- } | {
3769
- name: string | undefined;
3770
- symbol: string | undefined;
3771
- image: string | undefined;
3772
- metadata: string | undefined;
3773
- type: "Nft";
3774
- id: string;
3775
- updatedAt: number;
3776
- };
3777
- amount: {
3778
- value: bigint;
3779
- decimals: number;
3780
- };
3781
- direction: "out";
3782
- }[];
3783
- }, {
3784
- type: "NormalAccountAction";
3785
- timestamp: number;
3786
- order: number;
3787
- action: "transfer";
3788
- source: string;
3789
- evidence: "none" | "contract" | "system-rule" | "user-rule" | "manual-check";
3790
- transfers: {
3791
- asset: {
3792
- symbol: string;
3793
- type: "CryptoCurrency";
3794
- id: string;
3795
- name: string;
3796
- market: {
3797
- coingeckoId?: string | undefined;
3798
- marketCapUsd?: {
3799
- value: bigint;
3800
- decimals: number;
3801
- } | undefined;
3802
- };
3803
- updatedAt: number;
3804
- icon?: string | undefined;
3805
- priceDatasourceId?: string | undefined;
3806
- } | {
3807
- symbol: string;
3808
- type: "FiatCurrency";
3809
- id: "cny" | "eur" | "idr" | "jpy" | "krw" | "rub" | "twd" | "usd";
3810
- name: string;
3811
- icon?: string | undefined;
3812
- } | {
3813
- type: "Nft";
3814
- id: string;
3815
- updatedAt: number;
3816
- symbol?: string | undefined;
3817
- name?: string | undefined;
3818
- image?: string | undefined;
3819
- metadata?: string | undefined;
3820
- };
3821
- amount: {
3822
- value: bigint;
3823
- decimals: number;
3824
- };
3825
- direction: "out";
3826
- price?: {
3827
- cryptoCurrencyId: string;
3828
- fiatCurrencyId: string;
3829
- price: {
3830
- value: bigint;
3831
- decimals: number;
3832
- };
3833
- timestamp: number;
3834
- } | undefined;
3835
- from?: string | undefined;
3836
- to?: string | undefined;
3837
- }[];
3838
- comment?: string | undefined;
3839
- app?: {
3840
- id: string;
3841
- name: string;
3842
- categories: ("bridge" | "cex" | "cross-chain" | "dex" | "gaming" | "lending" | "nft-marketplace" | "other")[];
3843
- icon?: string | undefined;
3844
- description?: string | undefined;
3845
- website?: string | undefined;
3846
- } | undefined;
3847
- }>;
3848
- //# sourceMappingURL=transfer.d.ts.map