@0xtorch/core 0.0.35 → 0.0.37

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