@0xtorch/core 0.0.35 → 0.0.37

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