@0xtorch/core 0.0.36 → 0.0.38

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