@ledgerhq/wallet-api-simulator 0.12.4 → 1.0.0

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 (1174) hide show
  1. package/lib/client/src/TransportWalletAPI.d.ts +44 -0
  2. package/lib/client/src/TransportWalletAPI.d.ts.map +1 -0
  3. package/lib/client/src/TransportWalletAPI.js +69 -0
  4. package/lib/client/src/TransportWalletAPI.js.map +1 -0
  5. package/lib/client/src/WalletAPIClient.d.ts +60 -0
  6. package/lib/client/src/WalletAPIClient.d.ts.map +1 -0
  7. package/lib/client/src/WalletAPIClient.js +90 -0
  8. package/lib/client/src/WalletAPIClient.js.map +1 -0
  9. package/lib/client/src/index.d.ts +4 -0
  10. package/lib/client/src/index.d.ts.map +1 -0
  11. package/lib/client/src/index.js +21 -0
  12. package/lib/client/src/index.js.map +1 -0
  13. package/lib/client/src/modules/Account.d.ts +48 -0
  14. package/lib/client/src/modules/Account.d.ts.map +1 -0
  15. package/lib/client/src/modules/Account.js +56 -0
  16. package/lib/client/src/modules/Account.js.map +1 -0
  17. package/lib/client/src/modules/Bitcoin.d.ts +14 -0
  18. package/lib/client/src/modules/Bitcoin.d.ts.map +1 -0
  19. package/lib/client/src/modules/Bitcoin.js +26 -0
  20. package/lib/client/src/modules/Bitcoin.js.map +1 -0
  21. package/lib/client/src/modules/Currency.d.ts +23 -0
  22. package/lib/client/src/modules/Currency.d.ts.map +1 -0
  23. package/lib/client/src/modules/Currency.js +29 -0
  24. package/lib/client/src/modules/Currency.js.map +1 -0
  25. package/lib/client/src/modules/Device.d.ts +35 -0
  26. package/lib/client/src/modules/Device.d.ts.map +1 -0
  27. package/lib/client/src/modules/Device.js +57 -0
  28. package/lib/client/src/modules/Device.js.map +1 -0
  29. package/lib/client/src/modules/Exchange.d.ts +84 -0
  30. package/lib/client/src/modules/Exchange.d.ts.map +1 -0
  31. package/lib/client/src/modules/Exchange.js +109 -0
  32. package/lib/client/src/modules/Exchange.js.map +1 -0
  33. package/lib/client/src/modules/Message.d.ts +18 -0
  34. package/lib/client/src/modules/Message.d.ts.map +1 -0
  35. package/lib/client/src/modules/Message.js +31 -0
  36. package/lib/client/src/modules/Message.js.map +1 -0
  37. package/lib/client/src/modules/Storage.d.ts +8 -0
  38. package/lib/client/src/modules/Storage.d.ts.map +1 -0
  39. package/lib/client/src/modules/Storage.js +29 -0
  40. package/lib/client/src/modules/Storage.js.map +1 -0
  41. package/lib/client/src/modules/Transaction.d.ts +28 -0
  42. package/lib/client/src/modules/Transaction.d.ts.map +1 -0
  43. package/lib/client/src/modules/Transaction.js +50 -0
  44. package/lib/client/src/modules/Transaction.js.map +1 -0
  45. package/lib/client/src/modules/Wallet.d.ts +30 -0
  46. package/lib/client/src/modules/Wallet.d.ts.map +1 -0
  47. package/lib/client/src/modules/Wallet.js +47 -0
  48. package/lib/client/src/modules/Wallet.js.map +1 -0
  49. package/lib/core/src/JSONRPC/RPCError.d.ts +16 -0
  50. package/lib/core/src/JSONRPC/RPCError.d.ts.map +1 -0
  51. package/lib/core/src/JSONRPC/RPCError.js +26 -0
  52. package/lib/core/src/JSONRPC/RPCError.js.map +1 -0
  53. package/lib/core/src/JSONRPC/RpcNode.d.ts +22 -0
  54. package/lib/core/src/JSONRPC/RpcNode.d.ts.map +1 -0
  55. package/lib/core/src/JSONRPC/RpcNode.js +153 -0
  56. package/lib/core/src/JSONRPC/RpcNode.js.map +1 -0
  57. package/lib/core/src/JSONRPC/helpers.d.ts +18 -0
  58. package/lib/core/src/JSONRPC/helpers.d.ts.map +1 -0
  59. package/lib/core/src/JSONRPC/helpers.js +45 -0
  60. package/lib/core/src/JSONRPC/helpers.js.map +1 -0
  61. package/lib/core/src/JSONRPC/index.d.ts +6 -0
  62. package/lib/core/src/JSONRPC/index.d.ts.map +1 -0
  63. package/lib/core/src/JSONRPC/index.js +22 -0
  64. package/lib/core/src/JSONRPC/index.js.map +1 -0
  65. package/lib/core/src/JSONRPC/types.d.ts +115 -0
  66. package/lib/core/src/JSONRPC/types.d.ts.map +1 -0
  67. package/lib/core/src/JSONRPC/types.js +36 -0
  68. package/lib/core/src/JSONRPC/types.js.map +1 -0
  69. package/lib/core/src/JSONRPC/validation.d.ts +194 -0
  70. package/lib/core/src/JSONRPC/validation.d.ts.map +1 -0
  71. package/lib/core/src/JSONRPC/validation.js +40 -0
  72. package/lib/core/src/JSONRPC/validation.js.map +1 -0
  73. package/lib/core/src/accounts/index.d.ts +4 -0
  74. package/lib/core/src/accounts/index.d.ts.map +1 -0
  75. package/lib/core/src/accounts/index.js +20 -0
  76. package/lib/core/src/accounts/index.js.map +1 -0
  77. package/lib/core/src/accounts/serializers.d.ts +18 -0
  78. package/lib/core/src/accounts/serializers.d.ts.map +1 -0
  79. package/lib/core/src/accounts/serializers.js +48 -0
  80. package/lib/core/src/accounts/serializers.js.map +1 -0
  81. package/lib/core/src/accounts/types.d.ts +52 -0
  82. package/lib/core/src/accounts/types.d.ts.map +1 -0
  83. package/lib/{types.js → core/src/accounts/types.js} +1 -0
  84. package/lib/core/src/accounts/types.js.map +1 -0
  85. package/lib/core/src/accounts/validation.d.ts +30 -0
  86. package/lib/core/src/accounts/validation.d.ts.map +1 -0
  87. package/lib/core/src/accounts/validation.js +15 -0
  88. package/lib/core/src/accounts/validation.js.map +1 -0
  89. package/lib/core/src/currencies/index.d.ts +3 -0
  90. package/lib/core/src/currencies/index.d.ts.map +1 -0
  91. package/lib/core/src/currencies/index.js +19 -0
  92. package/lib/core/src/currencies/index.js.map +1 -0
  93. package/lib/core/src/currencies/types.d.ts +20 -0
  94. package/lib/core/src/currencies/types.d.ts.map +1 -0
  95. package/lib/core/src/currencies/types.js +3 -0
  96. package/lib/core/src/currencies/types.js.map +1 -0
  97. package/lib/core/src/currencies/validation.d.ts +159 -0
  98. package/lib/core/src/currencies/validation.d.ts.map +1 -0
  99. package/lib/core/src/currencies/validation.js +31 -0
  100. package/lib/core/src/currencies/validation.js.map +1 -0
  101. package/lib/core/src/errors/ServerError.d.ts +16 -0
  102. package/lib/core/src/errors/ServerError.d.ts.map +1 -0
  103. package/lib/core/src/errors/ServerError.js +26 -0
  104. package/lib/core/src/errors/ServerError.js.map +1 -0
  105. package/lib/core/src/errors/creators.d.ts +8 -0
  106. package/lib/core/src/errors/creators.d.ts.map +1 -0
  107. package/lib/core/src/errors/creators.js +62 -0
  108. package/lib/core/src/errors/creators.js.map +1 -0
  109. package/lib/core/src/errors/index.d.ts +4 -0
  110. package/lib/core/src/errors/index.d.ts.map +1 -0
  111. package/lib/core/src/errors/index.js +20 -0
  112. package/lib/core/src/errors/index.js.map +1 -0
  113. package/lib/core/src/errors/types.d.ts +322 -0
  114. package/lib/core/src/errors/types.d.ts.map +1 -0
  115. package/lib/core/src/errors/types.js +89 -0
  116. package/lib/core/src/errors/types.js.map +1 -0
  117. package/lib/core/src/families/algorand/serializer.d.ts +4 -0
  118. package/lib/core/src/families/algorand/serializer.d.ts.map +1 -0
  119. package/lib/core/src/families/algorand/serializer.js +28 -0
  120. package/lib/core/src/families/algorand/serializer.js.map +1 -0
  121. package/lib/core/src/families/algorand/types.d.ts +14 -0
  122. package/lib/core/src/families/algorand/types.d.ts.map +1 -0
  123. package/lib/core/src/families/algorand/types.js +3 -0
  124. package/lib/core/src/families/algorand/types.js.map +1 -0
  125. package/lib/core/src/families/algorand/validation.d.ts +28 -0
  126. package/lib/core/src/families/algorand/validation.d.ts.map +1 -0
  127. package/lib/core/src/families/algorand/validation.js +19 -0
  128. package/lib/core/src/families/algorand/validation.js.map +1 -0
  129. package/lib/core/src/families/bitcoin/serializer.d.ts +4 -0
  130. package/lib/core/src/families/bitcoin/serializer.d.ts.map +1 -0
  131. package/lib/core/src/families/bitcoin/serializer.js +30 -0
  132. package/lib/core/src/families/bitcoin/serializer.js.map +1 -0
  133. package/lib/core/src/families/bitcoin/types.d.ts +12 -0
  134. package/lib/core/src/families/bitcoin/types.d.ts.map +1 -0
  135. package/lib/core/src/families/bitcoin/types.js +3 -0
  136. package/lib/core/src/families/bitcoin/types.js.map +1 -0
  137. package/lib/core/src/families/bitcoin/validation.d.ts +21 -0
  138. package/lib/core/src/families/bitcoin/validation.d.ts.map +1 -0
  139. package/lib/core/src/families/bitcoin/validation.js +11 -0
  140. package/lib/core/src/families/bitcoin/validation.js.map +1 -0
  141. package/lib/core/src/families/cardano/serializer.d.ts +4 -0
  142. package/lib/core/src/families/cardano/serializer.d.ts.map +1 -0
  143. package/lib/core/src/families/cardano/serializer.js +30 -0
  144. package/lib/core/src/families/cardano/serializer.js.map +1 -0
  145. package/lib/core/src/families/cardano/types.d.ts +12 -0
  146. package/lib/core/src/families/cardano/types.d.ts.map +1 -0
  147. package/lib/core/src/families/cardano/types.js +3 -0
  148. package/lib/core/src/families/cardano/types.js.map +1 -0
  149. package/lib/core/src/families/cardano/validation.d.ts +24 -0
  150. package/lib/core/src/families/cardano/validation.d.ts.map +1 -0
  151. package/lib/core/src/families/cardano/validation.js +12 -0
  152. package/lib/core/src/families/cardano/validation.js.map +1 -0
  153. package/lib/core/src/families/celo/serializer.d.ts +4 -0
  154. package/lib/core/src/families/celo/serializer.d.ts.map +1 -0
  155. package/lib/core/src/families/celo/serializer.js +30 -0
  156. package/lib/core/src/families/celo/serializer.js.map +1 -0
  157. package/lib/core/src/families/celo/types.d.ts +12 -0
  158. package/lib/core/src/families/celo/types.d.ts.map +1 -0
  159. package/lib/core/src/families/celo/types.js +3 -0
  160. package/lib/core/src/families/celo/types.js.map +1 -0
  161. package/lib/core/src/families/celo/validation.d.ts +26 -0
  162. package/lib/core/src/families/celo/validation.d.ts.map +1 -0
  163. package/lib/core/src/families/celo/validation.js +22 -0
  164. package/lib/core/src/families/celo/validation.js.map +1 -0
  165. package/lib/core/src/families/common.d.ts +14 -0
  166. package/lib/core/src/families/common.d.ts.map +1 -0
  167. package/lib/core/src/families/common.js +32 -0
  168. package/lib/core/src/families/common.js.map +1 -0
  169. package/lib/core/src/families/cosmos/serializer.d.ts +4 -0
  170. package/lib/core/src/families/cosmos/serializer.d.ts.map +1 -0
  171. package/lib/core/src/families/cosmos/serializer.js +28 -0
  172. package/lib/core/src/families/cosmos/serializer.js.map +1 -0
  173. package/lib/core/src/families/cosmos/types.d.ts +14 -0
  174. package/lib/core/src/families/cosmos/types.d.ts.map +1 -0
  175. package/lib/core/src/families/cosmos/types.js +3 -0
  176. package/lib/core/src/families/cosmos/types.js.map +1 -0
  177. package/lib/core/src/families/cosmos/validation.d.ts +28 -0
  178. package/lib/core/src/families/cosmos/validation.d.ts.map +1 -0
  179. package/lib/core/src/families/cosmos/validation.js +21 -0
  180. package/lib/core/src/families/cosmos/validation.js.map +1 -0
  181. package/lib/core/src/families/crypto_org/serializer.d.ts +4 -0
  182. package/lib/core/src/families/crypto_org/serializer.d.ts.map +1 -0
  183. package/lib/core/src/families/crypto_org/serializer.js +24 -0
  184. package/lib/core/src/families/crypto_org/serializer.js.map +1 -0
  185. package/lib/core/src/families/crypto_org/types.d.ts +11 -0
  186. package/lib/core/src/families/crypto_org/types.d.ts.map +1 -0
  187. package/lib/core/src/families/crypto_org/types.js +3 -0
  188. package/lib/core/src/families/crypto_org/types.js.map +1 -0
  189. package/lib/core/src/families/crypto_org/validation.d.ts +21 -0
  190. package/lib/core/src/families/crypto_org/validation.d.ts.map +1 -0
  191. package/lib/core/src/families/crypto_org/validation.js +11 -0
  192. package/lib/core/src/families/crypto_org/validation.js.map +1 -0
  193. package/lib/core/src/families/elrond/serializer.d.ts +4 -0
  194. package/lib/core/src/families/elrond/serializer.d.ts.map +1 -0
  195. package/lib/core/src/families/elrond/serializer.js +32 -0
  196. package/lib/core/src/families/elrond/serializer.js.map +1 -0
  197. package/lib/core/src/families/elrond/types.d.ts +13 -0
  198. package/lib/core/src/families/elrond/types.d.ts.map +1 -0
  199. package/lib/core/src/families/elrond/types.js +3 -0
  200. package/lib/core/src/families/elrond/types.js.map +1 -0
  201. package/lib/core/src/families/elrond/validation.d.ts +29 -0
  202. package/lib/core/src/families/elrond/validation.d.ts.map +1 -0
  203. package/lib/core/src/families/elrond/validation.js +28 -0
  204. package/lib/core/src/families/elrond/validation.js.map +1 -0
  205. package/lib/core/src/families/ethereum/serializer.d.ts +4 -0
  206. package/lib/core/src/families/ethereum/serializer.d.ts.map +1 -0
  207. package/lib/core/src/families/ethereum/serializer.js +40 -0
  208. package/lib/core/src/families/ethereum/serializer.js.map +1 -0
  209. package/lib/core/src/families/ethereum/types.d.ts +16 -0
  210. package/lib/core/src/families/ethereum/types.d.ts.map +1 -0
  211. package/lib/core/src/families/ethereum/types.js +3 -0
  212. package/lib/core/src/families/ethereum/types.js.map +1 -0
  213. package/lib/core/src/families/ethereum/validation.d.ts +33 -0
  214. package/lib/core/src/families/ethereum/validation.d.ts.map +1 -0
  215. package/lib/core/src/families/ethereum/validation.js +15 -0
  216. package/lib/core/src/families/ethereum/validation.js.map +1 -0
  217. package/lib/core/src/families/filecoin/serializer.d.ts +4 -0
  218. package/lib/core/src/families/filecoin/serializer.d.ts.map +1 -0
  219. package/lib/core/src/families/filecoin/serializer.js +40 -0
  220. package/lib/core/src/families/filecoin/serializer.js.map +1 -0
  221. package/lib/core/src/families/filecoin/types.d.ts +18 -0
  222. package/lib/core/src/families/filecoin/types.d.ts.map +1 -0
  223. package/lib/core/src/families/filecoin/types.js +3 -0
  224. package/lib/core/src/families/filecoin/types.js.map +1 -0
  225. package/lib/core/src/families/filecoin/validation.d.ts +39 -0
  226. package/lib/core/src/families/filecoin/validation.d.ts.map +1 -0
  227. package/lib/core/src/families/filecoin/validation.js +17 -0
  228. package/lib/core/src/families/filecoin/validation.js.map +1 -0
  229. package/lib/core/src/families/hedera/serializer.d.ts +4 -0
  230. package/lib/core/src/families/hedera/serializer.d.ts.map +1 -0
  231. package/lib/core/src/families/hedera/serializer.js +26 -0
  232. package/lib/core/src/families/hedera/serializer.js.map +1 -0
  233. package/lib/core/src/families/hedera/types.d.ts +9 -0
  234. package/lib/core/src/families/hedera/types.d.ts.map +1 -0
  235. package/lib/core/src/families/hedera/types.js +3 -0
  236. package/lib/core/src/families/hedera/types.js.map +1 -0
  237. package/lib/core/src/families/hedera/validation.d.ts +18 -0
  238. package/lib/core/src/families/hedera/validation.d.ts.map +1 -0
  239. package/lib/core/src/families/hedera/validation.js +10 -0
  240. package/lib/core/src/families/hedera/validation.js.map +1 -0
  241. package/lib/core/src/families/index.d.ts +23 -0
  242. package/lib/core/src/families/index.d.ts.map +1 -0
  243. package/lib/core/src/families/index.js +39 -0
  244. package/lib/core/src/families/index.js.map +1 -0
  245. package/lib/core/src/families/near/serializer.d.ts +4 -0
  246. package/lib/core/src/families/near/serializer.d.ts.map +1 -0
  247. package/lib/core/src/families/near/serializer.js +28 -0
  248. package/lib/core/src/families/near/serializer.js.map +1 -0
  249. package/lib/core/src/families/near/types.d.ts +11 -0
  250. package/lib/core/src/families/near/types.d.ts.map +1 -0
  251. package/lib/core/src/families/near/types.js +3 -0
  252. package/lib/core/src/families/near/types.js.map +1 -0
  253. package/lib/core/src/families/near/validation.d.ts +21 -0
  254. package/lib/core/src/families/near/validation.d.ts.map +1 -0
  255. package/lib/core/src/families/near/validation.js +11 -0
  256. package/lib/core/src/families/near/validation.js.map +1 -0
  257. package/lib/core/src/families/neo/serializer.d.ts +4 -0
  258. package/lib/core/src/families/neo/serializer.d.ts.map +1 -0
  259. package/lib/core/src/families/neo/serializer.js +24 -0
  260. package/lib/core/src/families/neo/serializer.js.map +1 -0
  261. package/lib/core/src/families/neo/types.d.ts +8 -0
  262. package/lib/core/src/families/neo/types.d.ts.map +1 -0
  263. package/lib/core/src/families/neo/types.js +3 -0
  264. package/lib/core/src/families/neo/types.js.map +1 -0
  265. package/lib/core/src/families/neo/validation.d.ts +15 -0
  266. package/lib/core/src/families/neo/validation.d.ts.map +1 -0
  267. package/lib/core/src/families/neo/validation.js +9 -0
  268. package/lib/core/src/families/neo/validation.js.map +1 -0
  269. package/lib/core/src/families/polkadot/serializer.d.ts +4 -0
  270. package/lib/core/src/families/polkadot/serializer.d.ts.map +1 -0
  271. package/lib/core/src/families/polkadot/serializer.js +26 -0
  272. package/lib/core/src/families/polkadot/serializer.js.map +1 -0
  273. package/lib/core/src/families/polkadot/types.d.ts +13 -0
  274. package/lib/core/src/families/polkadot/types.d.ts.map +1 -0
  275. package/lib/core/src/families/polkadot/types.js +3 -0
  276. package/lib/core/src/families/polkadot/types.js.map +1 -0
  277. package/lib/core/src/families/polkadot/validation.d.ts +25 -0
  278. package/lib/core/src/families/polkadot/validation.d.ts.map +1 -0
  279. package/lib/core/src/families/polkadot/validation.js +23 -0
  280. package/lib/core/src/families/polkadot/validation.js.map +1 -0
  281. package/lib/core/src/families/ripple/serializer.d.ts +4 -0
  282. package/lib/core/src/families/ripple/serializer.d.ts.map +1 -0
  283. package/lib/core/src/families/ripple/serializer.js +24 -0
  284. package/lib/core/src/families/ripple/serializer.js.map +1 -0
  285. package/lib/core/src/families/ripple/types.d.ts +11 -0
  286. package/lib/core/src/families/ripple/types.d.ts.map +1 -0
  287. package/lib/core/src/families/ripple/types.js +3 -0
  288. package/lib/core/src/families/ripple/types.js.map +1 -0
  289. package/lib/core/src/families/ripple/validation.d.ts +21 -0
  290. package/lib/core/src/families/ripple/validation.d.ts.map +1 -0
  291. package/lib/core/src/families/ripple/validation.js +11 -0
  292. package/lib/core/src/families/ripple/validation.js.map +1 -0
  293. package/lib/core/src/families/serializer.d.ts +18 -0
  294. package/lib/core/src/families/serializer.d.ts.map +1 -0
  295. package/lib/core/src/families/serializer.js +151 -0
  296. package/lib/core/src/families/serializer.js.map +1 -0
  297. package/lib/core/src/families/solana/serializer.d.ts +4 -0
  298. package/lib/core/src/families/solana/serializer.d.ts.map +1 -0
  299. package/lib/core/src/families/solana/serializer.js +27 -0
  300. package/lib/core/src/families/solana/serializer.js.map +1 -0
  301. package/lib/core/src/families/solana/types.d.ts +136 -0
  302. package/lib/core/src/families/solana/types.d.ts.map +1 -0
  303. package/lib/core/src/families/solana/types.js +3 -0
  304. package/lib/core/src/families/solana/types.js.map +1 -0
  305. package/lib/core/src/families/solana/validation.d.ts +18 -0
  306. package/lib/core/src/families/solana/validation.d.ts.map +1 -0
  307. package/lib/core/src/families/solana/validation.js +10 -0
  308. package/lib/core/src/families/solana/validation.js.map +1 -0
  309. package/lib/core/src/families/stellar/serializer.d.ts +4 -0
  310. package/lib/core/src/families/stellar/serializer.d.ts.map +1 -0
  311. package/lib/core/src/families/stellar/serializer.js +26 -0
  312. package/lib/core/src/families/stellar/serializer.js.map +1 -0
  313. package/lib/core/src/families/stellar/types.d.ts +13 -0
  314. package/lib/core/src/families/stellar/types.d.ts.map +1 -0
  315. package/lib/core/src/families/stellar/types.js +3 -0
  316. package/lib/core/src/families/stellar/types.js.map +1 -0
  317. package/lib/core/src/families/stellar/validation.d.ts +25 -0
  318. package/lib/core/src/families/stellar/validation.d.ts.map +1 -0
  319. package/lib/core/src/families/stellar/validation.js +18 -0
  320. package/lib/core/src/families/stellar/validation.js.map +1 -0
  321. package/lib/core/src/families/tezos/serializer.d.ts +4 -0
  322. package/lib/core/src/families/tezos/serializer.d.ts.map +1 -0
  323. package/lib/core/src/families/tezos/serializer.js +26 -0
  324. package/lib/core/src/families/tezos/serializer.js.map +1 -0
  325. package/lib/core/src/families/tezos/types.d.ts +13 -0
  326. package/lib/core/src/families/tezos/types.d.ts.map +1 -0
  327. package/lib/core/src/families/tezos/types.js +3 -0
  328. package/lib/core/src/families/tezos/types.js.map +1 -0
  329. package/lib/core/src/families/tezos/validation.d.ts +25 -0
  330. package/lib/core/src/families/tezos/validation.d.ts.map +1 -0
  331. package/lib/core/src/families/tezos/validation.js +17 -0
  332. package/lib/core/src/families/tezos/validation.js.map +1 -0
  333. package/lib/core/src/families/tron/serializer.d.ts +4 -0
  334. package/lib/core/src/families/tron/serializer.d.ts.map +1 -0
  335. package/lib/core/src/families/tron/serializer.js +26 -0
  336. package/lib/core/src/families/tron/serializer.js.map +1 -0
  337. package/lib/core/src/families/tron/types.d.ts +13 -0
  338. package/lib/core/src/families/tron/types.d.ts.map +1 -0
  339. package/lib/core/src/families/tron/types.js +3 -0
  340. package/lib/core/src/families/tron/types.js.map +1 -0
  341. package/lib/core/src/families/tron/validation.d.ts +26 -0
  342. package/lib/core/src/families/tron/validation.d.ts.map +1 -0
  343. package/lib/core/src/families/tron/validation.js +20 -0
  344. package/lib/core/src/families/tron/validation.js.map +1 -0
  345. package/lib/core/src/families/types.d.ts +61 -0
  346. package/lib/core/src/families/types.d.ts.map +1 -0
  347. package/lib/core/src/families/types.js +3 -0
  348. package/lib/core/src/families/types.js.map +1 -0
  349. package/lib/core/src/families/validation.d.ts +381 -0
  350. package/lib/core/src/families/validation.d.ts.map +1 -0
  351. package/lib/core/src/families/validation.js +43 -0
  352. package/lib/core/src/families/validation.js.map +1 -0
  353. package/lib/core/src/index.d.ts +10 -0
  354. package/lib/core/src/index.d.ts.map +1 -0
  355. package/lib/core/src/index.js +26 -0
  356. package/lib/core/src/index.js.map +1 -0
  357. package/lib/core/src/logger/index.d.ts +13 -0
  358. package/lib/core/src/logger/index.d.ts.map +1 -0
  359. package/lib/core/src/logger/index.js +29 -0
  360. package/lib/core/src/logger/index.js.map +1 -0
  361. package/lib/core/src/spec/index.d.ts +5 -0
  362. package/lib/core/src/spec/index.d.ts.map +1 -0
  363. package/lib/core/src/spec/index.js +21 -0
  364. package/lib/core/src/spec/index.js.map +1 -0
  365. package/lib/core/src/spec/methods.d.ts +4 -0
  366. package/lib/core/src/spec/methods.d.ts.map +1 -0
  367. package/lib/core/src/spec/methods.js +20 -0
  368. package/lib/core/src/spec/methods.js.map +1 -0
  369. package/lib/core/src/spec/rpcHandlers/AppHandlers.d.ts +4 -0
  370. package/lib/core/src/spec/rpcHandlers/AppHandlers.d.ts.map +1 -0
  371. package/lib/core/src/spec/rpcHandlers/AppHandlers.js +3 -0
  372. package/lib/core/src/spec/rpcHandlers/AppHandlers.js.map +1 -0
  373. package/lib/core/src/spec/rpcHandlers/WalletHandlers.d.ts +24 -0
  374. package/lib/core/src/spec/rpcHandlers/WalletHandlers.d.ts.map +1 -0
  375. package/lib/core/src/spec/rpcHandlers/WalletHandlers.js +3 -0
  376. package/lib/core/src/spec/rpcHandlers/WalletHandlers.js.map +1 -0
  377. package/lib/core/src/spec/types/AccountList.d.ts +128 -0
  378. package/lib/core/src/spec/types/AccountList.d.ts.map +1 -0
  379. package/lib/core/src/spec/types/AccountList.js +18 -0
  380. package/lib/core/src/spec/types/AccountList.js.map +1 -0
  381. package/lib/core/src/spec/types/AccountReceive.d.ts +38 -0
  382. package/lib/core/src/spec/types/AccountReceive.d.ts.map +1 -0
  383. package/lib/core/src/spec/types/AccountReceive.js +15 -0
  384. package/lib/core/src/spec/types/AccountReceive.js.map +1 -0
  385. package/lib/core/src/spec/types/AccountRequest.d.ts +128 -0
  386. package/lib/core/src/spec/types/AccountRequest.d.ts.map +1 -0
  387. package/lib/core/src/spec/types/AccountRequest.js +16 -0
  388. package/lib/core/src/spec/types/AccountRequest.js.map +1 -0
  389. package/lib/core/src/spec/types/BitcoinGetXPub.d.ts +38 -0
  390. package/lib/core/src/spec/types/BitcoinGetXPub.d.ts.map +1 -0
  391. package/lib/core/src/spec/types/BitcoinGetXPub.js +15 -0
  392. package/lib/core/src/spec/types/BitcoinGetXPub.js.map +1 -0
  393. package/lib/core/src/spec/types/CurrencyList.d.ts +218 -0
  394. package/lib/core/src/spec/types/CurrencyList.d.ts.map +1 -0
  395. package/lib/core/src/spec/types/CurrencyList.js +18 -0
  396. package/lib/core/src/spec/types/CurrencyList.js.map +1 -0
  397. package/lib/core/src/spec/types/Device.d.ts +4 -0
  398. package/lib/core/src/spec/types/Device.d.ts.map +1 -0
  399. package/lib/core/src/spec/types/Device.js +12 -0
  400. package/lib/core/src/spec/types/Device.js.map +1 -0
  401. package/lib/core/src/spec/types/DeviceClose.d.ts +38 -0
  402. package/lib/core/src/spec/types/DeviceClose.d.ts.map +1 -0
  403. package/lib/core/src/spec/types/DeviceClose.js +15 -0
  404. package/lib/core/src/spec/types/DeviceClose.js.map +1 -0
  405. package/lib/core/src/spec/types/DeviceExchange.d.ts +44 -0
  406. package/lib/core/src/spec/types/DeviceExchange.d.ts.map +1 -0
  407. package/lib/core/src/spec/types/DeviceExchange.js +16 -0
  408. package/lib/core/src/spec/types/DeviceExchange.js.map +1 -0
  409. package/lib/core/src/spec/types/DeviceOpen.d.ts +40 -0
  410. package/lib/core/src/spec/types/DeviceOpen.d.ts.map +1 -0
  411. package/lib/core/src/spec/types/DeviceOpen.js +16 -0
  412. package/lib/core/src/spec/types/DeviceOpen.js.map +1 -0
  413. package/lib/core/src/spec/types/DeviceSelect.d.ts +92 -0
  414. package/lib/core/src/spec/types/DeviceSelect.d.ts.map +1 -0
  415. package/lib/core/src/spec/types/DeviceSelect.js +35 -0
  416. package/lib/core/src/spec/types/DeviceSelect.js.map +1 -0
  417. package/lib/core/src/spec/types/DeviceTransport.d.ts +92 -0
  418. package/lib/core/src/spec/types/DeviceTransport.d.ts.map +1 -0
  419. package/lib/core/src/spec/types/DeviceTransport.js +35 -0
  420. package/lib/core/src/spec/types/DeviceTransport.js.map +1 -0
  421. package/lib/core/src/spec/types/ExchangeComplete.d.ts +3956 -0
  422. package/lib/core/src/spec/types/ExchangeComplete.d.ts.map +1 -0
  423. package/lib/core/src/spec/types/ExchangeComplete.js +37 -0
  424. package/lib/core/src/spec/types/ExchangeComplete.js.map +1 -0
  425. package/lib/core/src/spec/types/ExchangeStart.d.ts +38 -0
  426. package/lib/core/src/spec/types/ExchangeStart.d.ts.map +1 -0
  427. package/lib/core/src/spec/types/ExchangeStart.js +16 -0
  428. package/lib/core/src/spec/types/ExchangeStart.js.map +1 -0
  429. package/lib/core/src/spec/types/MessageSign.d.ts +50 -0
  430. package/lib/core/src/spec/types/MessageSign.d.ts.map +1 -0
  431. package/lib/core/src/spec/types/MessageSign.js +17 -0
  432. package/lib/core/src/spec/types/MessageSign.js.map +1 -0
  433. package/lib/core/src/spec/types/StorageGet.d.ts +44 -0
  434. package/lib/core/src/spec/types/StorageGet.d.ts.map +1 -0
  435. package/lib/core/src/spec/types/StorageGet.js +16 -0
  436. package/lib/core/src/spec/types/StorageGet.js.map +1 -0
  437. package/lib/core/src/spec/types/StorageSet.d.ts +38 -0
  438. package/lib/core/src/spec/types/StorageSet.d.ts.map +1 -0
  439. package/lib/core/src/spec/types/StorageSet.js +15 -0
  440. package/lib/core/src/spec/types/StorageSet.js.map +1 -0
  441. package/lib/core/src/spec/types/TransactionSign.d.ts +1336 -0
  442. package/lib/core/src/spec/types/TransactionSign.d.ts.map +1 -0
  443. package/lib/core/src/spec/types/TransactionSign.js +22 -0
  444. package/lib/core/src/spec/types/TransactionSign.js.map +1 -0
  445. package/lib/core/src/spec/types/TransactionSignAndBroadcast.d.ts +1336 -0
  446. package/lib/core/src/spec/types/TransactionSignAndBroadcast.d.ts.map +1 -0
  447. package/lib/core/src/spec/types/TransactionSignAndBroadcast.js +22 -0
  448. package/lib/core/src/spec/types/TransactionSignAndBroadcast.js.map +1 -0
  449. package/lib/core/src/spec/types/WalletCapabilities.d.ts +26 -0
  450. package/lib/core/src/spec/types/WalletCapabilities.d.ts.map +1 -0
  451. package/lib/core/src/spec/types/WalletCapabilities.js +13 -0
  452. package/lib/core/src/spec/types/WalletCapabilities.js.map +1 -0
  453. package/lib/core/src/spec/types/WalletInfo.d.ts +62 -0
  454. package/lib/core/src/spec/types/WalletInfo.d.ts.map +1 -0
  455. package/lib/core/src/spec/types/WalletInfo.js +17 -0
  456. package/lib/core/src/spec/types/WalletInfo.js.map +1 -0
  457. package/lib/core/src/spec/types/WalletUserId.d.ts +26 -0
  458. package/lib/core/src/spec/types/WalletUserId.d.ts.map +1 -0
  459. package/lib/core/src/spec/types/WalletUserId.js +13 -0
  460. package/lib/core/src/spec/types/WalletUserId.js.map +1 -0
  461. package/lib/core/src/spec/types/index.d.ts +22 -0
  462. package/lib/core/src/spec/types/index.d.ts.map +1 -0
  463. package/lib/core/src/spec/types/index.js +38 -0
  464. package/lib/core/src/spec/types/index.js.map +1 -0
  465. package/lib/core/src/transports/WindowMessageTransport.d.ts +15 -0
  466. package/lib/core/src/transports/WindowMessageTransport.d.ts.map +1 -0
  467. package/lib/core/src/transports/WindowMessageTransport.js +98 -0
  468. package/lib/core/src/transports/WindowMessageTransport.js.map +1 -0
  469. package/lib/core/src/transports/index.d.ts +3 -0
  470. package/lib/core/src/transports/index.d.ts.map +1 -0
  471. package/lib/core/src/transports/index.js +25 -0
  472. package/lib/core/src/transports/index.js.map +1 -0
  473. package/lib/core/src/transports/types.d.ts +22 -0
  474. package/lib/core/src/transports/types.d.ts.map +1 -0
  475. package/lib/core/src/transports/types.js +3 -0
  476. package/lib/core/src/transports/types.js.map +1 -0
  477. package/lib/core/src/types/index.d.ts +77 -0
  478. package/lib/core/src/types/index.d.ts.map +1 -0
  479. package/lib/core/src/types/index.js +37 -0
  480. package/lib/core/src/types/index.js.map +1 -0
  481. package/lib/server/src/WalletAPIServer.d.ts +18 -0
  482. package/lib/server/src/WalletAPIServer.d.ts.map +1 -0
  483. package/lib/server/src/WalletAPIServer.js +70 -0
  484. package/lib/server/src/WalletAPIServer.js.map +1 -0
  485. package/lib/server/src/helpers.d.ts +4 -0
  486. package/lib/server/src/helpers.d.ts.map +1 -0
  487. package/lib/server/src/helpers.js +34 -0
  488. package/lib/server/src/helpers.js.map +1 -0
  489. package/lib/server/src/index.d.ts +4 -0
  490. package/lib/server/src/index.d.ts.map +1 -0
  491. package/lib/server/src/index.js +20 -0
  492. package/lib/server/src/index.js.map +1 -0
  493. package/lib/server/src/internalHandlers/account.d.ts +6 -0
  494. package/lib/server/src/internalHandlers/account.d.ts.map +1 -0
  495. package/lib/server/src/internalHandlers/account.js +64 -0
  496. package/lib/server/src/internalHandlers/account.js.map +1 -0
  497. package/lib/server/src/internalHandlers/bitcoin.d.ts +4 -0
  498. package/lib/server/src/internalHandlers/bitcoin.d.ts.map +1 -0
  499. package/lib/server/src/internalHandlers/bitcoin.js +17 -0
  500. package/lib/server/src/internalHandlers/bitcoin.js.map +1 -0
  501. package/lib/server/src/internalHandlers/currency.d.ts +4 -0
  502. package/lib/server/src/internalHandlers/currency.d.ts.map +1 -0
  503. package/lib/server/src/internalHandlers/currency.js +21 -0
  504. package/lib/server/src/internalHandlers/currency.js.map +1 -0
  505. package/lib/server/src/internalHandlers/device.d.ts +8 -0
  506. package/lib/server/src/internalHandlers/device.d.ts.map +1 -0
  507. package/lib/server/src/internalHandlers/device.js +70 -0
  508. package/lib/server/src/internalHandlers/device.js.map +1 -0
  509. package/lib/server/src/internalHandlers/exchange.d.ts +5 -0
  510. package/lib/server/src/internalHandlers/exchange.d.ts.map +1 -0
  511. package/lib/server/src/internalHandlers/exchange.js +63 -0
  512. package/lib/server/src/internalHandlers/exchange.js.map +1 -0
  513. package/lib/server/src/internalHandlers/index.d.ts +6 -0
  514. package/lib/server/src/internalHandlers/index.d.ts.map +1 -0
  515. package/lib/server/src/internalHandlers/index.js +58 -0
  516. package/lib/server/src/internalHandlers/index.js.map +1 -0
  517. package/lib/server/src/internalHandlers/message.d.ts +4 -0
  518. package/lib/server/src/internalHandlers/message.d.ts.map +1 -0
  519. package/lib/server/src/internalHandlers/message.js +28 -0
  520. package/lib/server/src/internalHandlers/message.js.map +1 -0
  521. package/lib/server/src/internalHandlers/storage.d.ts +5 -0
  522. package/lib/server/src/internalHandlers/storage.d.ts.map +1 -0
  523. package/lib/server/src/internalHandlers/storage.js +37 -0
  524. package/lib/server/src/internalHandlers/storage.js.map +1 -0
  525. package/lib/server/src/internalHandlers/transaction.d.ts +5 -0
  526. package/lib/server/src/internalHandlers/transaction.d.ts.map +1 -0
  527. package/lib/server/src/internalHandlers/transaction.js +52 -0
  528. package/lib/server/src/internalHandlers/transaction.js.map +1 -0
  529. package/lib/server/src/internalHandlers/wallet.d.ts +6 -0
  530. package/lib/server/src/internalHandlers/wallet.d.ts.map +1 -0
  531. package/lib/server/src/internalHandlers/wallet.js +32 -0
  532. package/lib/server/src/internalHandlers/wallet.js.map +1 -0
  533. package/lib/server/src/react.d.ts +15 -0
  534. package/lib/server/src/react.d.ts.map +1 -0
  535. package/lib/server/src/react.js +26 -0
  536. package/lib/server/src/react.js.map +1 -0
  537. package/lib/server/src/types.d.ts +99 -0
  538. package/lib/server/src/types.d.ts.map +1 -0
  539. package/lib/server/src/types.js +3 -0
  540. package/lib/server/src/types.js.map +1 -0
  541. package/lib/simulator/src/helpers.d.ts.map +1 -0
  542. package/lib/{helpers.js → simulator/src/helpers.js} +1 -0
  543. package/lib/simulator/src/helpers.js.map +1 -0
  544. package/lib/simulator/src/index.d.ts.map +1 -0
  545. package/lib/{index.js → simulator/src/index.js} +1 -0
  546. package/lib/simulator/src/index.js.map +1 -0
  547. package/lib/simulator/src/profiles/device/index.d.ts.map +1 -0
  548. package/lib/{profiles → simulator/src/profiles}/device/index.js +14 -0
  549. package/lib/simulator/src/profiles/device/index.js.map +1 -0
  550. package/lib/simulator/src/profiles/index.d.ts.map +1 -0
  551. package/lib/{profiles → simulator/src/profiles}/index.js +1 -0
  552. package/lib/simulator/src/profiles/index.js.map +1 -0
  553. package/lib/simulator/src/profiles/standard/index.d.ts.map +1 -0
  554. package/lib/{profiles → simulator/src/profiles}/standard/index.js +8 -21
  555. package/lib/simulator/src/profiles/standard/index.js.map +1 -0
  556. package/lib/{test-run.d.ts.map → simulator/src/test-run.d.ts.map} +1 -1
  557. package/lib/{test-run.js → simulator/src/test-run.js} +3 -2
  558. package/lib/simulator/src/test-run.js.map +1 -0
  559. package/lib/simulator/src/transport.d.ts.map +1 -0
  560. package/lib/{transport.js → simulator/src/transport.js} +1 -0
  561. package/lib/simulator/src/transport.js.map +1 -0
  562. package/lib/{types.d.ts → simulator/src/types.d.ts} +1 -1
  563. package/lib/simulator/src/types.d.ts.map +1 -0
  564. package/lib/simulator/src/types.js +3 -0
  565. package/lib/simulator/src/types.js.map +1 -0
  566. package/lib/simulator/src/ws.d.ts.map +1 -0
  567. package/lib/{ws.js → simulator/src/ws.js} +3 -2
  568. package/lib/simulator/src/ws.js.map +1 -0
  569. package/lib-es/client/src/TransportWalletAPI.d.ts +44 -0
  570. package/lib-es/client/src/TransportWalletAPI.d.ts.map +1 -0
  571. package/lib-es/client/src/TransportWalletAPI.js +63 -0
  572. package/lib-es/client/src/TransportWalletAPI.js.map +1 -0
  573. package/lib-es/client/src/WalletAPIClient.d.ts +60 -0
  574. package/lib-es/client/src/WalletAPIClient.d.ts.map +1 -0
  575. package/lib-es/client/src/WalletAPIClient.js +86 -0
  576. package/lib-es/client/src/WalletAPIClient.js.map +1 -0
  577. package/lib-es/client/src/index.d.ts +4 -0
  578. package/lib-es/client/src/index.d.ts.map +1 -0
  579. package/lib-es/client/src/index.js +5 -0
  580. package/lib-es/client/src/index.js.map +1 -0
  581. package/lib-es/client/src/modules/Account.d.ts +48 -0
  582. package/lib-es/client/src/modules/Account.d.ts.map +1 -0
  583. package/lib-es/client/src/modules/Account.js +52 -0
  584. package/lib-es/client/src/modules/Account.js.map +1 -0
  585. package/lib-es/client/src/modules/Bitcoin.d.ts +14 -0
  586. package/lib-es/client/src/modules/Bitcoin.d.ts.map +1 -0
  587. package/lib-es/client/src/modules/Bitcoin.js +22 -0
  588. package/lib-es/client/src/modules/Bitcoin.js.map +1 -0
  589. package/lib-es/client/src/modules/Currency.d.ts +23 -0
  590. package/lib-es/client/src/modules/Currency.d.ts.map +1 -0
  591. package/lib-es/client/src/modules/Currency.js +25 -0
  592. package/lib-es/client/src/modules/Currency.js.map +1 -0
  593. package/lib-es/client/src/modules/Device.d.ts +35 -0
  594. package/lib-es/client/src/modules/Device.d.ts.map +1 -0
  595. package/lib-es/client/src/modules/Device.js +53 -0
  596. package/lib-es/client/src/modules/Device.js.map +1 -0
  597. package/lib-es/client/src/modules/Exchange.d.ts +84 -0
  598. package/lib-es/client/src/modules/Exchange.d.ts.map +1 -0
  599. package/lib-es/client/src/modules/Exchange.js +105 -0
  600. package/lib-es/client/src/modules/Exchange.js.map +1 -0
  601. package/lib-es/client/src/modules/Message.d.ts +18 -0
  602. package/lib-es/client/src/modules/Message.d.ts.map +1 -0
  603. package/lib-es/client/src/modules/Message.js +27 -0
  604. package/lib-es/client/src/modules/Message.js.map +1 -0
  605. package/lib-es/client/src/modules/Storage.d.ts +8 -0
  606. package/lib-es/client/src/modules/Storage.d.ts.map +1 -0
  607. package/lib-es/client/src/modules/Storage.js +25 -0
  608. package/lib-es/client/src/modules/Storage.js.map +1 -0
  609. package/lib-es/client/src/modules/Transaction.d.ts +28 -0
  610. package/lib-es/client/src/modules/Transaction.d.ts.map +1 -0
  611. package/lib-es/client/src/modules/Transaction.js +46 -0
  612. package/lib-es/client/src/modules/Transaction.js.map +1 -0
  613. package/lib-es/client/src/modules/Wallet.d.ts +30 -0
  614. package/lib-es/client/src/modules/Wallet.d.ts.map +1 -0
  615. package/lib-es/client/src/modules/Wallet.js +43 -0
  616. package/lib-es/client/src/modules/Wallet.js.map +1 -0
  617. package/lib-es/core/src/JSONRPC/RPCError.d.ts +16 -0
  618. package/lib-es/core/src/JSONRPC/RPCError.d.ts.map +1 -0
  619. package/lib-es/core/src/JSONRPC/RPCError.js +22 -0
  620. package/lib-es/core/src/JSONRPC/RPCError.js.map +1 -0
  621. package/lib-es/core/src/JSONRPC/RpcNode.d.ts +22 -0
  622. package/lib-es/core/src/JSONRPC/RpcNode.d.ts.map +1 -0
  623. package/lib-es/core/src/JSONRPC/RpcNode.js +149 -0
  624. package/lib-es/core/src/JSONRPC/RpcNode.js.map +1 -0
  625. package/lib-es/core/src/JSONRPC/helpers.d.ts +18 -0
  626. package/lib-es/core/src/JSONRPC/helpers.d.ts.map +1 -0
  627. package/lib-es/core/src/JSONRPC/helpers.js +39 -0
  628. package/lib-es/core/src/JSONRPC/helpers.js.map +1 -0
  629. package/lib-es/core/src/JSONRPC/index.d.ts +6 -0
  630. package/lib-es/core/src/JSONRPC/index.d.ts.map +1 -0
  631. package/lib-es/core/src/JSONRPC/index.js +6 -0
  632. package/lib-es/core/src/JSONRPC/index.js.map +1 -0
  633. package/lib-es/core/src/JSONRPC/types.d.ts +115 -0
  634. package/lib-es/core/src/JSONRPC/types.d.ts.map +1 -0
  635. package/lib-es/core/src/JSONRPC/types.js +33 -0
  636. package/lib-es/core/src/JSONRPC/types.js.map +1 -0
  637. package/lib-es/core/src/JSONRPC/validation.d.ts +194 -0
  638. package/lib-es/core/src/JSONRPC/validation.d.ts.map +1 -0
  639. package/lib-es/core/src/JSONRPC/validation.js +37 -0
  640. package/lib-es/core/src/JSONRPC/validation.js.map +1 -0
  641. package/lib-es/core/src/accounts/index.d.ts +4 -0
  642. package/lib-es/core/src/accounts/index.d.ts.map +1 -0
  643. package/lib-es/core/src/accounts/index.js +4 -0
  644. package/lib-es/core/src/accounts/index.js.map +1 -0
  645. package/lib-es/core/src/accounts/serializers.d.ts +18 -0
  646. package/lib-es/core/src/accounts/serializers.d.ts.map +1 -0
  647. package/lib-es/core/src/accounts/serializers.js +40 -0
  648. package/lib-es/core/src/accounts/serializers.js.map +1 -0
  649. package/lib-es/core/src/accounts/types.d.ts +52 -0
  650. package/lib-es/core/src/accounts/types.d.ts.map +1 -0
  651. package/lib-es/core/src/accounts/types.js +2 -0
  652. package/lib-es/core/src/accounts/types.js.map +1 -0
  653. package/lib-es/core/src/accounts/validation.d.ts +30 -0
  654. package/lib-es/core/src/accounts/validation.d.ts.map +1 -0
  655. package/lib-es/core/src/accounts/validation.js +12 -0
  656. package/lib-es/core/src/accounts/validation.js.map +1 -0
  657. package/lib-es/core/src/currencies/index.d.ts +3 -0
  658. package/lib-es/core/src/currencies/index.d.ts.map +1 -0
  659. package/lib-es/core/src/currencies/index.js +3 -0
  660. package/lib-es/core/src/currencies/index.js.map +1 -0
  661. package/lib-es/core/src/currencies/types.d.ts +20 -0
  662. package/lib-es/core/src/currencies/types.d.ts.map +1 -0
  663. package/lib-es/core/src/currencies/types.js +2 -0
  664. package/lib-es/core/src/currencies/types.js.map +1 -0
  665. package/lib-es/core/src/currencies/validation.d.ts +159 -0
  666. package/lib-es/core/src/currencies/validation.d.ts.map +1 -0
  667. package/lib-es/core/src/currencies/validation.js +28 -0
  668. package/lib-es/core/src/currencies/validation.js.map +1 -0
  669. package/lib-es/core/src/errors/ServerError.d.ts +16 -0
  670. package/lib-es/core/src/errors/ServerError.d.ts.map +1 -0
  671. package/lib-es/core/src/errors/ServerError.js +22 -0
  672. package/lib-es/core/src/errors/ServerError.js.map +1 -0
  673. package/lib-es/core/src/errors/creators.d.ts +8 -0
  674. package/lib-es/core/src/errors/creators.d.ts.map +1 -0
  675. package/lib-es/core/src/errors/creators.js +53 -0
  676. package/lib-es/core/src/errors/creators.js.map +1 -0
  677. package/lib-es/core/src/errors/index.d.ts +4 -0
  678. package/lib-es/core/src/errors/index.d.ts.map +1 -0
  679. package/lib-es/core/src/errors/index.js +4 -0
  680. package/lib-es/core/src/errors/index.js.map +1 -0
  681. package/lib-es/core/src/errors/types.d.ts +322 -0
  682. package/lib-es/core/src/errors/types.d.ts.map +1 -0
  683. package/lib-es/core/src/errors/types.js +86 -0
  684. package/lib-es/core/src/errors/types.js.map +1 -0
  685. package/lib-es/core/src/families/algorand/serializer.d.ts +4 -0
  686. package/lib-es/core/src/families/algorand/serializer.d.ts.map +1 -0
  687. package/lib-es/core/src/families/algorand/serializer.js +20 -0
  688. package/lib-es/core/src/families/algorand/serializer.js.map +1 -0
  689. package/lib-es/core/src/families/algorand/types.d.ts +14 -0
  690. package/lib-es/core/src/families/algorand/types.d.ts.map +1 -0
  691. package/lib-es/core/src/families/algorand/types.js +2 -0
  692. package/lib-es/core/src/families/algorand/types.js.map +1 -0
  693. package/lib-es/core/src/families/algorand/validation.d.ts +28 -0
  694. package/lib-es/core/src/families/algorand/validation.d.ts.map +1 -0
  695. package/lib-es/core/src/families/algorand/validation.js +16 -0
  696. package/lib-es/core/src/families/algorand/validation.js.map +1 -0
  697. package/lib-es/core/src/families/bitcoin/serializer.d.ts +4 -0
  698. package/lib-es/core/src/families/bitcoin/serializer.d.ts.map +1 -0
  699. package/lib-es/core/src/families/bitcoin/serializer.js +22 -0
  700. package/lib-es/core/src/families/bitcoin/serializer.js.map +1 -0
  701. package/lib-es/core/src/families/bitcoin/types.d.ts +12 -0
  702. package/lib-es/core/src/families/bitcoin/types.d.ts.map +1 -0
  703. package/lib-es/core/src/families/bitcoin/types.js +2 -0
  704. package/lib-es/core/src/families/bitcoin/types.js.map +1 -0
  705. package/lib-es/core/src/families/bitcoin/validation.d.ts +21 -0
  706. package/lib-es/core/src/families/bitcoin/validation.d.ts.map +1 -0
  707. package/lib-es/core/src/families/bitcoin/validation.js +8 -0
  708. package/lib-es/core/src/families/bitcoin/validation.js.map +1 -0
  709. package/lib-es/core/src/families/cardano/serializer.d.ts +4 -0
  710. package/lib-es/core/src/families/cardano/serializer.d.ts.map +1 -0
  711. package/lib-es/core/src/families/cardano/serializer.js +22 -0
  712. package/lib-es/core/src/families/cardano/serializer.js.map +1 -0
  713. package/lib-es/core/src/families/cardano/types.d.ts +12 -0
  714. package/lib-es/core/src/families/cardano/types.d.ts.map +1 -0
  715. package/lib-es/core/src/families/cardano/types.js +2 -0
  716. package/lib-es/core/src/families/cardano/types.js.map +1 -0
  717. package/lib-es/core/src/families/cardano/validation.d.ts +24 -0
  718. package/lib-es/core/src/families/cardano/validation.d.ts.map +1 -0
  719. package/lib-es/core/src/families/cardano/validation.js +9 -0
  720. package/lib-es/core/src/families/cardano/validation.js.map +1 -0
  721. package/lib-es/core/src/families/celo/serializer.d.ts +4 -0
  722. package/lib-es/core/src/families/celo/serializer.d.ts.map +1 -0
  723. package/lib-es/core/src/families/celo/serializer.js +22 -0
  724. package/lib-es/core/src/families/celo/serializer.js.map +1 -0
  725. package/lib-es/core/src/families/celo/types.d.ts +12 -0
  726. package/lib-es/core/src/families/celo/types.d.ts.map +1 -0
  727. package/lib-es/core/src/families/celo/types.js +2 -0
  728. package/lib-es/core/src/families/celo/types.js.map +1 -0
  729. package/lib-es/core/src/families/celo/validation.d.ts +26 -0
  730. package/lib-es/core/src/families/celo/validation.d.ts.map +1 -0
  731. package/lib-es/core/src/families/celo/validation.js +19 -0
  732. package/lib-es/core/src/families/celo/validation.js.map +1 -0
  733. package/lib-es/core/src/families/common.d.ts +14 -0
  734. package/lib-es/core/src/families/common.d.ts.map +1 -0
  735. package/lib-es/core/src/families/common.js +29 -0
  736. package/lib-es/core/src/families/common.js.map +1 -0
  737. package/lib-es/core/src/families/cosmos/serializer.d.ts +4 -0
  738. package/lib-es/core/src/families/cosmos/serializer.d.ts.map +1 -0
  739. package/lib-es/core/src/families/cosmos/serializer.js +20 -0
  740. package/lib-es/core/src/families/cosmos/serializer.js.map +1 -0
  741. package/lib-es/core/src/families/cosmos/types.d.ts +14 -0
  742. package/lib-es/core/src/families/cosmos/types.d.ts.map +1 -0
  743. package/lib-es/core/src/families/cosmos/types.js +2 -0
  744. package/lib-es/core/src/families/cosmos/types.js.map +1 -0
  745. package/lib-es/core/src/families/cosmos/validation.d.ts +28 -0
  746. package/lib-es/core/src/families/cosmos/validation.d.ts.map +1 -0
  747. package/lib-es/core/src/families/cosmos/validation.js +18 -0
  748. package/lib-es/core/src/families/cosmos/validation.js.map +1 -0
  749. package/lib-es/core/src/families/crypto_org/serializer.d.ts +4 -0
  750. package/lib-es/core/src/families/crypto_org/serializer.d.ts.map +1 -0
  751. package/lib-es/core/src/families/crypto_org/serializer.js +16 -0
  752. package/lib-es/core/src/families/crypto_org/serializer.js.map +1 -0
  753. package/lib-es/core/src/families/crypto_org/types.d.ts +11 -0
  754. package/lib-es/core/src/families/crypto_org/types.d.ts.map +1 -0
  755. package/lib-es/core/src/families/crypto_org/types.js +2 -0
  756. package/lib-es/core/src/families/crypto_org/types.js.map +1 -0
  757. package/lib-es/core/src/families/crypto_org/validation.d.ts +21 -0
  758. package/lib-es/core/src/families/crypto_org/validation.d.ts.map +1 -0
  759. package/lib-es/core/src/families/crypto_org/validation.js +8 -0
  760. package/lib-es/core/src/families/crypto_org/validation.js.map +1 -0
  761. package/lib-es/core/src/families/elrond/serializer.d.ts +4 -0
  762. package/lib-es/core/src/families/elrond/serializer.d.ts.map +1 -0
  763. package/lib-es/core/src/families/elrond/serializer.js +24 -0
  764. package/lib-es/core/src/families/elrond/serializer.js.map +1 -0
  765. package/lib-es/core/src/families/elrond/types.d.ts +13 -0
  766. package/lib-es/core/src/families/elrond/types.d.ts.map +1 -0
  767. package/lib-es/core/src/families/elrond/types.js +2 -0
  768. package/lib-es/core/src/families/elrond/types.js.map +1 -0
  769. package/lib-es/core/src/families/elrond/validation.d.ts +29 -0
  770. package/lib-es/core/src/families/elrond/validation.d.ts.map +1 -0
  771. package/lib-es/core/src/families/elrond/validation.js +25 -0
  772. package/lib-es/core/src/families/elrond/validation.js.map +1 -0
  773. package/lib-es/core/src/families/ethereum/serializer.d.ts +4 -0
  774. package/lib-es/core/src/families/ethereum/serializer.d.ts.map +1 -0
  775. package/lib-es/core/src/families/ethereum/serializer.js +32 -0
  776. package/lib-es/core/src/families/ethereum/serializer.js.map +1 -0
  777. package/lib-es/core/src/families/ethereum/types.d.ts +16 -0
  778. package/lib-es/core/src/families/ethereum/types.d.ts.map +1 -0
  779. package/lib-es/core/src/families/ethereum/types.js +2 -0
  780. package/lib-es/core/src/families/ethereum/types.js.map +1 -0
  781. package/lib-es/core/src/families/ethereum/validation.d.ts +33 -0
  782. package/lib-es/core/src/families/ethereum/validation.d.ts.map +1 -0
  783. package/lib-es/core/src/families/ethereum/validation.js +12 -0
  784. package/lib-es/core/src/families/ethereum/validation.js.map +1 -0
  785. package/lib-es/core/src/families/filecoin/serializer.d.ts +4 -0
  786. package/lib-es/core/src/families/filecoin/serializer.d.ts.map +1 -0
  787. package/lib-es/core/src/families/filecoin/serializer.js +32 -0
  788. package/lib-es/core/src/families/filecoin/serializer.js.map +1 -0
  789. package/lib-es/core/src/families/filecoin/types.d.ts +18 -0
  790. package/lib-es/core/src/families/filecoin/types.d.ts.map +1 -0
  791. package/lib-es/core/src/families/filecoin/types.js +2 -0
  792. package/lib-es/core/src/families/filecoin/types.js.map +1 -0
  793. package/lib-es/core/src/families/filecoin/validation.d.ts +39 -0
  794. package/lib-es/core/src/families/filecoin/validation.d.ts.map +1 -0
  795. package/lib-es/core/src/families/filecoin/validation.js +14 -0
  796. package/lib-es/core/src/families/filecoin/validation.js.map +1 -0
  797. package/lib-es/core/src/families/hedera/serializer.d.ts +4 -0
  798. package/lib-es/core/src/families/hedera/serializer.d.ts.map +1 -0
  799. package/lib-es/core/src/families/hedera/serializer.js +18 -0
  800. package/lib-es/core/src/families/hedera/serializer.js.map +1 -0
  801. package/lib-es/core/src/families/hedera/types.d.ts +9 -0
  802. package/lib-es/core/src/families/hedera/types.d.ts.map +1 -0
  803. package/lib-es/core/src/families/hedera/types.js +2 -0
  804. package/lib-es/core/src/families/hedera/types.js.map +1 -0
  805. package/lib-es/core/src/families/hedera/validation.d.ts +18 -0
  806. package/lib-es/core/src/families/hedera/validation.d.ts.map +1 -0
  807. package/lib-es/core/src/families/hedera/validation.js +7 -0
  808. package/lib-es/core/src/families/hedera/validation.js.map +1 -0
  809. package/lib-es/core/src/families/index.d.ts +23 -0
  810. package/lib-es/core/src/families/index.d.ts.map +1 -0
  811. package/lib-es/core/src/families/index.js +23 -0
  812. package/lib-es/core/src/families/index.js.map +1 -0
  813. package/lib-es/core/src/families/near/serializer.d.ts +4 -0
  814. package/lib-es/core/src/families/near/serializer.d.ts.map +1 -0
  815. package/lib-es/core/src/families/near/serializer.js +20 -0
  816. package/lib-es/core/src/families/near/serializer.js.map +1 -0
  817. package/lib-es/core/src/families/near/types.d.ts +11 -0
  818. package/lib-es/core/src/families/near/types.d.ts.map +1 -0
  819. package/lib-es/core/src/families/near/types.js +2 -0
  820. package/lib-es/core/src/families/near/types.js.map +1 -0
  821. package/lib-es/core/src/families/near/validation.d.ts +21 -0
  822. package/lib-es/core/src/families/near/validation.d.ts.map +1 -0
  823. package/lib-es/core/src/families/near/validation.js +8 -0
  824. package/lib-es/core/src/families/near/validation.js.map +1 -0
  825. package/lib-es/core/src/families/neo/serializer.d.ts +4 -0
  826. package/lib-es/core/src/families/neo/serializer.d.ts.map +1 -0
  827. package/lib-es/core/src/families/neo/serializer.js +16 -0
  828. package/lib-es/core/src/families/neo/serializer.js.map +1 -0
  829. package/lib-es/core/src/families/neo/types.d.ts +8 -0
  830. package/lib-es/core/src/families/neo/types.d.ts.map +1 -0
  831. package/lib-es/core/src/families/neo/types.js +2 -0
  832. package/lib-es/core/src/families/neo/types.js.map +1 -0
  833. package/lib-es/core/src/families/neo/validation.d.ts +15 -0
  834. package/lib-es/core/src/families/neo/validation.d.ts.map +1 -0
  835. package/lib-es/core/src/families/neo/validation.js +6 -0
  836. package/lib-es/core/src/families/neo/validation.js.map +1 -0
  837. package/lib-es/core/src/families/polkadot/serializer.d.ts +4 -0
  838. package/lib-es/core/src/families/polkadot/serializer.d.ts.map +1 -0
  839. package/lib-es/core/src/families/polkadot/serializer.js +18 -0
  840. package/lib-es/core/src/families/polkadot/serializer.js.map +1 -0
  841. package/lib-es/core/src/families/polkadot/types.d.ts +13 -0
  842. package/lib-es/core/src/families/polkadot/types.d.ts.map +1 -0
  843. package/lib-es/core/src/families/polkadot/types.js +2 -0
  844. package/lib-es/core/src/families/polkadot/types.js.map +1 -0
  845. package/lib-es/core/src/families/polkadot/validation.d.ts +25 -0
  846. package/lib-es/core/src/families/polkadot/validation.d.ts.map +1 -0
  847. package/lib-es/core/src/families/polkadot/validation.js +20 -0
  848. package/lib-es/core/src/families/polkadot/validation.js.map +1 -0
  849. package/lib-es/core/src/families/ripple/serializer.d.ts +4 -0
  850. package/lib-es/core/src/families/ripple/serializer.d.ts.map +1 -0
  851. package/lib-es/core/src/families/ripple/serializer.js +16 -0
  852. package/lib-es/core/src/families/ripple/serializer.js.map +1 -0
  853. package/lib-es/core/src/families/ripple/types.d.ts +11 -0
  854. package/lib-es/core/src/families/ripple/types.d.ts.map +1 -0
  855. package/lib-es/core/src/families/ripple/types.js +2 -0
  856. package/lib-es/core/src/families/ripple/types.js.map +1 -0
  857. package/lib-es/core/src/families/ripple/validation.d.ts +21 -0
  858. package/lib-es/core/src/families/ripple/validation.d.ts.map +1 -0
  859. package/lib-es/core/src/families/ripple/validation.js +8 -0
  860. package/lib-es/core/src/families/ripple/validation.js.map +1 -0
  861. package/lib-es/core/src/families/serializer.d.ts +18 -0
  862. package/lib-es/core/src/families/serializer.d.ts.map +1 -0
  863. package/lib-es/core/src/families/serializer.js +123 -0
  864. package/lib-es/core/src/families/serializer.js.map +1 -0
  865. package/lib-es/core/src/families/solana/serializer.d.ts +4 -0
  866. package/lib-es/core/src/families/solana/serializer.d.ts.map +1 -0
  867. package/lib-es/core/src/families/solana/serializer.js +19 -0
  868. package/lib-es/core/src/families/solana/serializer.js.map +1 -0
  869. package/lib-es/core/src/families/solana/types.d.ts +136 -0
  870. package/lib-es/core/src/families/solana/types.d.ts.map +1 -0
  871. package/lib-es/core/src/families/solana/types.js +2 -0
  872. package/lib-es/core/src/families/solana/types.js.map +1 -0
  873. package/lib-es/core/src/families/solana/validation.d.ts +18 -0
  874. package/lib-es/core/src/families/solana/validation.d.ts.map +1 -0
  875. package/lib-es/core/src/families/solana/validation.js +7 -0
  876. package/lib-es/core/src/families/solana/validation.js.map +1 -0
  877. package/lib-es/core/src/families/stellar/serializer.d.ts +4 -0
  878. package/lib-es/core/src/families/stellar/serializer.d.ts.map +1 -0
  879. package/lib-es/core/src/families/stellar/serializer.js +18 -0
  880. package/lib-es/core/src/families/stellar/serializer.js.map +1 -0
  881. package/lib-es/core/src/families/stellar/types.d.ts +13 -0
  882. package/lib-es/core/src/families/stellar/types.d.ts.map +1 -0
  883. package/lib-es/core/src/families/stellar/types.js +2 -0
  884. package/lib-es/core/src/families/stellar/types.js.map +1 -0
  885. package/lib-es/core/src/families/stellar/validation.d.ts +25 -0
  886. package/lib-es/core/src/families/stellar/validation.d.ts.map +1 -0
  887. package/lib-es/core/src/families/stellar/validation.js +15 -0
  888. package/lib-es/core/src/families/stellar/validation.js.map +1 -0
  889. package/lib-es/core/src/families/tezos/serializer.d.ts +4 -0
  890. package/lib-es/core/src/families/tezos/serializer.d.ts.map +1 -0
  891. package/lib-es/core/src/families/tezos/serializer.js +18 -0
  892. package/lib-es/core/src/families/tezos/serializer.js.map +1 -0
  893. package/lib-es/core/src/families/tezos/types.d.ts +13 -0
  894. package/lib-es/core/src/families/tezos/types.d.ts.map +1 -0
  895. package/lib-es/core/src/families/tezos/types.js +2 -0
  896. package/lib-es/core/src/families/tezos/types.js.map +1 -0
  897. package/lib-es/core/src/families/tezos/validation.d.ts +25 -0
  898. package/lib-es/core/src/families/tezos/validation.d.ts.map +1 -0
  899. package/lib-es/core/src/families/tezos/validation.js +14 -0
  900. package/lib-es/core/src/families/tezos/validation.js.map +1 -0
  901. package/lib-es/core/src/families/tron/serializer.d.ts +4 -0
  902. package/lib-es/core/src/families/tron/serializer.d.ts.map +1 -0
  903. package/lib-es/core/src/families/tron/serializer.js +18 -0
  904. package/lib-es/core/src/families/tron/serializer.js.map +1 -0
  905. package/lib-es/core/src/families/tron/types.d.ts +13 -0
  906. package/lib-es/core/src/families/tron/types.d.ts.map +1 -0
  907. package/lib-es/core/src/families/tron/types.js +2 -0
  908. package/lib-es/core/src/families/tron/types.js.map +1 -0
  909. package/lib-es/core/src/families/tron/validation.d.ts +26 -0
  910. package/lib-es/core/src/families/tron/validation.d.ts.map +1 -0
  911. package/lib-es/core/src/families/tron/validation.js +17 -0
  912. package/lib-es/core/src/families/tron/validation.js.map +1 -0
  913. package/lib-es/core/src/families/types.d.ts +61 -0
  914. package/lib-es/core/src/families/types.d.ts.map +1 -0
  915. package/lib-es/core/src/families/types.js +2 -0
  916. package/lib-es/core/src/families/types.js.map +1 -0
  917. package/lib-es/core/src/families/validation.d.ts +381 -0
  918. package/lib-es/core/src/families/validation.d.ts.map +1 -0
  919. package/lib-es/core/src/families/validation.js +40 -0
  920. package/lib-es/core/src/families/validation.js.map +1 -0
  921. package/lib-es/core/src/index.d.ts +10 -0
  922. package/lib-es/core/src/index.d.ts.map +1 -0
  923. package/lib-es/core/src/index.js +10 -0
  924. package/lib-es/core/src/index.js.map +1 -0
  925. package/lib-es/core/src/logger/index.d.ts +13 -0
  926. package/lib-es/core/src/logger/index.d.ts.map +1 -0
  927. package/lib-es/core/src/logger/index.js +25 -0
  928. package/lib-es/core/src/logger/index.js.map +1 -0
  929. package/lib-es/core/src/spec/index.d.ts +5 -0
  930. package/lib-es/core/src/spec/index.d.ts.map +1 -0
  931. package/lib-es/core/src/spec/index.js +5 -0
  932. package/lib-es/core/src/spec/index.js.map +1 -0
  933. package/lib-es/core/src/spec/methods.d.ts +4 -0
  934. package/lib-es/core/src/spec/methods.d.ts.map +1 -0
  935. package/lib-es/core/src/spec/methods.js +17 -0
  936. package/lib-es/core/src/spec/methods.js.map +1 -0
  937. package/lib-es/core/src/spec/rpcHandlers/AppHandlers.d.ts +4 -0
  938. package/lib-es/core/src/spec/rpcHandlers/AppHandlers.d.ts.map +1 -0
  939. package/lib-es/core/src/spec/rpcHandlers/AppHandlers.js +2 -0
  940. package/lib-es/core/src/spec/rpcHandlers/AppHandlers.js.map +1 -0
  941. package/lib-es/core/src/spec/rpcHandlers/WalletHandlers.d.ts +24 -0
  942. package/lib-es/core/src/spec/rpcHandlers/WalletHandlers.d.ts.map +1 -0
  943. package/lib-es/core/src/spec/rpcHandlers/WalletHandlers.js +2 -0
  944. package/lib-es/core/src/spec/rpcHandlers/WalletHandlers.js.map +1 -0
  945. package/lib-es/core/src/spec/types/AccountList.d.ts +128 -0
  946. package/lib-es/core/src/spec/types/AccountList.d.ts.map +1 -0
  947. package/lib-es/core/src/spec/types/AccountList.js +15 -0
  948. package/lib-es/core/src/spec/types/AccountList.js.map +1 -0
  949. package/lib-es/core/src/spec/types/AccountReceive.d.ts +38 -0
  950. package/lib-es/core/src/spec/types/AccountReceive.d.ts.map +1 -0
  951. package/lib-es/core/src/spec/types/AccountReceive.js +12 -0
  952. package/lib-es/core/src/spec/types/AccountReceive.js.map +1 -0
  953. package/lib-es/core/src/spec/types/AccountRequest.d.ts +128 -0
  954. package/lib-es/core/src/spec/types/AccountRequest.d.ts.map +1 -0
  955. package/lib-es/core/src/spec/types/AccountRequest.js +13 -0
  956. package/lib-es/core/src/spec/types/AccountRequest.js.map +1 -0
  957. package/lib-es/core/src/spec/types/BitcoinGetXPub.d.ts +38 -0
  958. package/lib-es/core/src/spec/types/BitcoinGetXPub.d.ts.map +1 -0
  959. package/lib-es/core/src/spec/types/BitcoinGetXPub.js +12 -0
  960. package/lib-es/core/src/spec/types/BitcoinGetXPub.js.map +1 -0
  961. package/lib-es/core/src/spec/types/CurrencyList.d.ts +218 -0
  962. package/lib-es/core/src/spec/types/CurrencyList.d.ts.map +1 -0
  963. package/lib-es/core/src/spec/types/CurrencyList.js +15 -0
  964. package/lib-es/core/src/spec/types/CurrencyList.js.map +1 -0
  965. package/lib-es/core/src/spec/types/Device.d.ts +4 -0
  966. package/lib-es/core/src/spec/types/Device.d.ts.map +1 -0
  967. package/lib-es/core/src/spec/types/Device.js +9 -0
  968. package/lib-es/core/src/spec/types/Device.js.map +1 -0
  969. package/lib-es/core/src/spec/types/DeviceClose.d.ts +38 -0
  970. package/lib-es/core/src/spec/types/DeviceClose.d.ts.map +1 -0
  971. package/lib-es/core/src/spec/types/DeviceClose.js +12 -0
  972. package/lib-es/core/src/spec/types/DeviceClose.js.map +1 -0
  973. package/lib-es/core/src/spec/types/DeviceExchange.d.ts +44 -0
  974. package/lib-es/core/src/spec/types/DeviceExchange.d.ts.map +1 -0
  975. package/lib-es/core/src/spec/types/DeviceExchange.js +13 -0
  976. package/lib-es/core/src/spec/types/DeviceExchange.js.map +1 -0
  977. package/lib-es/core/src/spec/types/DeviceOpen.d.ts +40 -0
  978. package/lib-es/core/src/spec/types/DeviceOpen.d.ts.map +1 -0
  979. package/lib-es/core/src/spec/types/DeviceOpen.js +13 -0
  980. package/lib-es/core/src/spec/types/DeviceOpen.js.map +1 -0
  981. package/lib-es/core/src/spec/types/DeviceSelect.d.ts +92 -0
  982. package/lib-es/core/src/spec/types/DeviceSelect.d.ts.map +1 -0
  983. package/lib-es/core/src/spec/types/DeviceSelect.js +32 -0
  984. package/lib-es/core/src/spec/types/DeviceSelect.js.map +1 -0
  985. package/lib-es/core/src/spec/types/DeviceTransport.d.ts +92 -0
  986. package/lib-es/core/src/spec/types/DeviceTransport.d.ts.map +1 -0
  987. package/lib-es/core/src/spec/types/DeviceTransport.js +32 -0
  988. package/lib-es/core/src/spec/types/DeviceTransport.js.map +1 -0
  989. package/lib-es/core/src/spec/types/ExchangeComplete.d.ts +3956 -0
  990. package/lib-es/core/src/spec/types/ExchangeComplete.d.ts.map +1 -0
  991. package/lib-es/core/src/spec/types/ExchangeComplete.js +34 -0
  992. package/lib-es/core/src/spec/types/ExchangeComplete.js.map +1 -0
  993. package/lib-es/core/src/spec/types/ExchangeStart.d.ts +38 -0
  994. package/lib-es/core/src/spec/types/ExchangeStart.d.ts.map +1 -0
  995. package/lib-es/core/src/spec/types/ExchangeStart.js +13 -0
  996. package/lib-es/core/src/spec/types/ExchangeStart.js.map +1 -0
  997. package/lib-es/core/src/spec/types/MessageSign.d.ts +50 -0
  998. package/lib-es/core/src/spec/types/MessageSign.d.ts.map +1 -0
  999. package/lib-es/core/src/spec/types/MessageSign.js +14 -0
  1000. package/lib-es/core/src/spec/types/MessageSign.js.map +1 -0
  1001. package/lib-es/core/src/spec/types/StorageGet.d.ts +44 -0
  1002. package/lib-es/core/src/spec/types/StorageGet.d.ts.map +1 -0
  1003. package/lib-es/core/src/spec/types/StorageGet.js +13 -0
  1004. package/lib-es/core/src/spec/types/StorageGet.js.map +1 -0
  1005. package/lib-es/core/src/spec/types/StorageSet.d.ts +38 -0
  1006. package/lib-es/core/src/spec/types/StorageSet.d.ts.map +1 -0
  1007. package/lib-es/core/src/spec/types/StorageSet.js +12 -0
  1008. package/lib-es/core/src/spec/types/StorageSet.js.map +1 -0
  1009. package/lib-es/core/src/spec/types/TransactionSign.d.ts +1336 -0
  1010. package/lib-es/core/src/spec/types/TransactionSign.d.ts.map +1 -0
  1011. package/lib-es/core/src/spec/types/TransactionSign.js +19 -0
  1012. package/lib-es/core/src/spec/types/TransactionSign.js.map +1 -0
  1013. package/lib-es/core/src/spec/types/TransactionSignAndBroadcast.d.ts +1336 -0
  1014. package/lib-es/core/src/spec/types/TransactionSignAndBroadcast.d.ts.map +1 -0
  1015. package/lib-es/core/src/spec/types/TransactionSignAndBroadcast.js +19 -0
  1016. package/lib-es/core/src/spec/types/TransactionSignAndBroadcast.js.map +1 -0
  1017. package/lib-es/core/src/spec/types/WalletCapabilities.d.ts +26 -0
  1018. package/lib-es/core/src/spec/types/WalletCapabilities.d.ts.map +1 -0
  1019. package/lib-es/core/src/spec/types/WalletCapabilities.js +10 -0
  1020. package/lib-es/core/src/spec/types/WalletCapabilities.js.map +1 -0
  1021. package/lib-es/core/src/spec/types/WalletInfo.d.ts +62 -0
  1022. package/lib-es/core/src/spec/types/WalletInfo.d.ts.map +1 -0
  1023. package/lib-es/core/src/spec/types/WalletInfo.js +14 -0
  1024. package/lib-es/core/src/spec/types/WalletInfo.js.map +1 -0
  1025. package/lib-es/core/src/spec/types/WalletUserId.d.ts +26 -0
  1026. package/lib-es/core/src/spec/types/WalletUserId.d.ts.map +1 -0
  1027. package/lib-es/core/src/spec/types/WalletUserId.js +10 -0
  1028. package/lib-es/core/src/spec/types/WalletUserId.js.map +1 -0
  1029. package/lib-es/core/src/spec/types/index.d.ts +22 -0
  1030. package/lib-es/core/src/spec/types/index.d.ts.map +1 -0
  1031. package/lib-es/core/src/spec/types/index.js +22 -0
  1032. package/lib-es/core/src/spec/types/index.js.map +1 -0
  1033. package/lib-es/core/src/transports/WindowMessageTransport.d.ts +15 -0
  1034. package/lib-es/core/src/transports/WindowMessageTransport.d.ts.map +1 -0
  1035. package/lib-es/core/src/transports/WindowMessageTransport.js +95 -0
  1036. package/lib-es/core/src/transports/WindowMessageTransport.js.map +1 -0
  1037. package/lib-es/core/src/transports/index.d.ts +3 -0
  1038. package/lib-es/core/src/transports/index.d.ts.map +1 -0
  1039. package/lib-es/core/src/transports/index.js +4 -0
  1040. package/lib-es/core/src/transports/index.js.map +1 -0
  1041. package/lib-es/core/src/transports/types.d.ts +22 -0
  1042. package/lib-es/core/src/transports/types.d.ts.map +1 -0
  1043. package/lib-es/core/src/transports/types.js +2 -0
  1044. package/lib-es/core/src/transports/types.js.map +1 -0
  1045. package/lib-es/core/src/types/index.d.ts +77 -0
  1046. package/lib-es/core/src/types/index.d.ts.map +1 -0
  1047. package/lib-es/core/src/types/index.js +34 -0
  1048. package/lib-es/core/src/types/index.js.map +1 -0
  1049. package/lib-es/server/src/WalletAPIServer.d.ts +18 -0
  1050. package/lib-es/server/src/WalletAPIServer.d.ts.map +1 -0
  1051. package/lib-es/server/src/WalletAPIServer.js +66 -0
  1052. package/lib-es/server/src/WalletAPIServer.js.map +1 -0
  1053. package/lib-es/server/src/helpers.d.ts +4 -0
  1054. package/lib-es/server/src/helpers.d.ts.map +1 -0
  1055. package/lib-es/server/src/helpers.js +26 -0
  1056. package/lib-es/server/src/helpers.js.map +1 -0
  1057. package/lib-es/server/src/index.d.ts +4 -0
  1058. package/lib-es/server/src/index.d.ts.map +1 -0
  1059. package/lib-es/server/src/index.js +4 -0
  1060. package/lib-es/server/src/index.js.map +1 -0
  1061. package/lib-es/server/src/internalHandlers/account.d.ts +6 -0
  1062. package/lib-es/server/src/internalHandlers/account.d.ts.map +1 -0
  1063. package/lib-es/server/src/internalHandlers/account.js +58 -0
  1064. package/lib-es/server/src/internalHandlers/account.js.map +1 -0
  1065. package/lib-es/server/src/internalHandlers/bitcoin.d.ts +4 -0
  1066. package/lib-es/server/src/internalHandlers/bitcoin.d.ts.map +1 -0
  1067. package/lib-es/server/src/internalHandlers/bitcoin.js +13 -0
  1068. package/lib-es/server/src/internalHandlers/bitcoin.js.map +1 -0
  1069. package/lib-es/server/src/internalHandlers/currency.d.ts +4 -0
  1070. package/lib-es/server/src/internalHandlers/currency.d.ts.map +1 -0
  1071. package/lib-es/server/src/internalHandlers/currency.js +17 -0
  1072. package/lib-es/server/src/internalHandlers/currency.js.map +1 -0
  1073. package/lib-es/server/src/internalHandlers/device.d.ts +8 -0
  1074. package/lib-es/server/src/internalHandlers/device.d.ts.map +1 -0
  1075. package/lib-es/server/src/internalHandlers/device.js +62 -0
  1076. package/lib-es/server/src/internalHandlers/device.js.map +1 -0
  1077. package/lib-es/server/src/internalHandlers/exchange.d.ts +5 -0
  1078. package/lib-es/server/src/internalHandlers/exchange.d.ts.map +1 -0
  1079. package/lib-es/server/src/internalHandlers/exchange.js +58 -0
  1080. package/lib-es/server/src/internalHandlers/exchange.js.map +1 -0
  1081. package/lib-es/server/src/internalHandlers/index.d.ts +6 -0
  1082. package/lib-es/server/src/internalHandlers/index.d.ts.map +1 -0
  1083. package/lib-es/server/src/internalHandlers/index.js +32 -0
  1084. package/lib-es/server/src/internalHandlers/index.js.map +1 -0
  1085. package/lib-es/server/src/internalHandlers/message.d.ts +4 -0
  1086. package/lib-es/server/src/internalHandlers/message.d.ts.map +1 -0
  1087. package/lib-es/server/src/internalHandlers/message.js +24 -0
  1088. package/lib-es/server/src/internalHandlers/message.js.map +1 -0
  1089. package/lib-es/server/src/internalHandlers/storage.d.ts +5 -0
  1090. package/lib-es/server/src/internalHandlers/storage.d.ts.map +1 -0
  1091. package/lib-es/server/src/internalHandlers/storage.js +32 -0
  1092. package/lib-es/server/src/internalHandlers/storage.js.map +1 -0
  1093. package/lib-es/server/src/internalHandlers/transaction.d.ts +5 -0
  1094. package/lib-es/server/src/internalHandlers/transaction.d.ts.map +1 -0
  1095. package/lib-es/server/src/internalHandlers/transaction.js +47 -0
  1096. package/lib-es/server/src/internalHandlers/transaction.js.map +1 -0
  1097. package/lib-es/server/src/internalHandlers/wallet.d.ts +6 -0
  1098. package/lib-es/server/src/internalHandlers/wallet.d.ts.map +1 -0
  1099. package/lib-es/server/src/internalHandlers/wallet.js +26 -0
  1100. package/lib-es/server/src/internalHandlers/wallet.js.map +1 -0
  1101. package/lib-es/server/src/react.d.ts +15 -0
  1102. package/lib-es/server/src/react.d.ts.map +1 -0
  1103. package/lib-es/server/src/react.js +22 -0
  1104. package/lib-es/server/src/react.js.map +1 -0
  1105. package/lib-es/server/src/types.d.ts +99 -0
  1106. package/lib-es/server/src/types.d.ts.map +1 -0
  1107. package/lib-es/server/src/types.js +2 -0
  1108. package/lib-es/server/src/types.js.map +1 -0
  1109. package/lib-es/simulator/src/helpers.d.ts.map +1 -0
  1110. package/lib-es/{helpers.js → simulator/src/helpers.js} +1 -0
  1111. package/lib-es/simulator/src/helpers.js.map +1 -0
  1112. package/lib-es/simulator/src/index.d.ts.map +1 -0
  1113. package/lib-es/{index.js → simulator/src/index.js} +1 -0
  1114. package/lib-es/simulator/src/index.js.map +1 -0
  1115. package/lib-es/simulator/src/profiles/device/index.d.ts.map +1 -0
  1116. package/lib-es/{profiles → simulator/src/profiles}/device/index.js +14 -0
  1117. package/lib-es/simulator/src/profiles/device/index.js.map +1 -0
  1118. package/lib-es/simulator/src/profiles/index.d.ts.map +1 -0
  1119. package/lib-es/{profiles → simulator/src/profiles}/index.js +1 -0
  1120. package/lib-es/simulator/src/profiles/index.js.map +1 -0
  1121. package/lib-es/simulator/src/profiles/standard/index.d.ts.map +1 -0
  1122. package/lib-es/{profiles → simulator/src/profiles}/standard/index.js +8 -21
  1123. package/lib-es/simulator/src/profiles/standard/index.js.map +1 -0
  1124. package/lib-es/{test-run.d.ts.map → simulator/src/test-run.d.ts.map} +1 -1
  1125. package/lib-es/{test-run.js → simulator/src/test-run.js} +2 -1
  1126. package/lib-es/simulator/src/test-run.js.map +1 -0
  1127. package/lib-es/simulator/src/transport.d.ts.map +1 -0
  1128. package/lib-es/{transport.js → simulator/src/transport.js} +1 -0
  1129. package/lib-es/simulator/src/transport.js.map +1 -0
  1130. package/lib-es/{types.d.ts → simulator/src/types.d.ts} +1 -1
  1131. package/lib-es/simulator/src/types.d.ts.map +1 -0
  1132. package/lib-es/simulator/src/types.js +2 -0
  1133. package/lib-es/simulator/src/types.js.map +1 -0
  1134. package/lib-es/simulator/src/ws.d.ts.map +1 -0
  1135. package/lib-es/{ws.js → simulator/src/ws.js} +3 -2
  1136. package/lib-es/simulator/src/ws.js.map +1 -0
  1137. package/package.json +17 -18
  1138. package/lib/helpers.d.ts.map +0 -1
  1139. package/lib/index.d.ts.map +0 -1
  1140. package/lib/profiles/device/index.d.ts.map +0 -1
  1141. package/lib/profiles/index.d.ts.map +0 -1
  1142. package/lib/profiles/standard/index.d.ts.map +0 -1
  1143. package/lib/transport.d.ts.map +0 -1
  1144. package/lib/types.d.ts.map +0 -1
  1145. package/lib/ws.d.ts.map +0 -1
  1146. package/lib-es/helpers.d.ts.map +0 -1
  1147. package/lib-es/index.d.ts.map +0 -1
  1148. package/lib-es/profiles/device/index.d.ts.map +0 -1
  1149. package/lib-es/profiles/index.d.ts.map +0 -1
  1150. package/lib-es/profiles/standard/index.d.ts.map +0 -1
  1151. package/lib-es/transport.d.ts.map +0 -1
  1152. package/lib-es/types.d.ts.map +0 -1
  1153. package/lib-es/types.js +0 -1
  1154. package/lib-es/ws.d.ts.map +0 -1
  1155. /package/lib/{helpers.d.ts → simulator/src/helpers.d.ts} +0 -0
  1156. /package/lib/{index.d.ts → simulator/src/index.d.ts} +0 -0
  1157. /package/lib/{profiles → simulator/src/profiles}/device/index.d.ts +0 -0
  1158. /package/lib/{profiles → simulator/src/profiles}/index.d.ts +0 -0
  1159. /package/lib/{profiles → simulator/src/profiles}/standard/accounts.json +0 -0
  1160. /package/lib/{profiles → simulator/src/profiles}/standard/currencies.json +0 -0
  1161. /package/lib/{profiles → simulator/src/profiles}/standard/index.d.ts +0 -0
  1162. /package/lib/{test-run.d.ts → simulator/src/test-run.d.ts} +0 -0
  1163. /package/lib/{transport.d.ts → simulator/src/transport.d.ts} +0 -0
  1164. /package/lib/{ws.d.ts → simulator/src/ws.d.ts} +0 -0
  1165. /package/lib-es/{helpers.d.ts → simulator/src/helpers.d.ts} +0 -0
  1166. /package/lib-es/{index.d.ts → simulator/src/index.d.ts} +0 -0
  1167. /package/lib-es/{profiles → simulator/src/profiles}/device/index.d.ts +0 -0
  1168. /package/lib-es/{profiles → simulator/src/profiles}/index.d.ts +0 -0
  1169. /package/lib-es/{profiles → simulator/src/profiles}/standard/accounts.json +0 -0
  1170. /package/lib-es/{profiles → simulator/src/profiles}/standard/currencies.json +0 -0
  1171. /package/lib-es/{profiles → simulator/src/profiles}/standard/index.d.ts +0 -0
  1172. /package/lib-es/{test-run.d.ts → simulator/src/test-run.d.ts} +0 -0
  1173. /package/lib-es/{transport.d.ts → simulator/src/transport.d.ts} +0 -0
  1174. /package/lib-es/{ws.d.ts → simulator/src/ws.d.ts} +0 -0
@@ -0,0 +1,1336 @@
1
+ import { z } from "zod";
2
+ declare const schemaTransactionSignAndBroadcastParams: z.ZodObject<{
3
+ accountId: z.ZodString;
4
+ rawTransaction: z.ZodDiscriminatedUnion<"family", [z.ZodObject<{
5
+ amount: z.ZodString;
6
+ recipient: z.ZodString;
7
+ family: z.ZodLiteral<"algorand">;
8
+ mode: z.ZodEnum<["send", "optIn", "claimReward", "optOut"]>;
9
+ fees: z.ZodOptional<z.ZodString>;
10
+ assetId: z.ZodOptional<z.ZodString>;
11
+ memo: z.ZodOptional<z.ZodString>;
12
+ }, "strip", z.ZodTypeAny, {
13
+ amount: string;
14
+ recipient: string;
15
+ family: "algorand";
16
+ mode: "send" | "optIn" | "claimReward" | "optOut";
17
+ fees?: string | undefined;
18
+ assetId?: string | undefined;
19
+ memo?: string | undefined;
20
+ }, {
21
+ amount: string;
22
+ recipient: string;
23
+ family: "algorand";
24
+ mode: "send" | "optIn" | "claimReward" | "optOut";
25
+ fees?: string | undefined;
26
+ assetId?: string | undefined;
27
+ memo?: string | undefined;
28
+ }>, z.ZodObject<{
29
+ amount: z.ZodString;
30
+ recipient: z.ZodString;
31
+ family: z.ZodLiteral<"bitcoin">;
32
+ feePerByte: z.ZodOptional<z.ZodString>;
33
+ opReturnDataHex: z.ZodOptional<z.ZodString>;
34
+ }, "strip", z.ZodTypeAny, {
35
+ amount: string;
36
+ recipient: string;
37
+ family: "bitcoin";
38
+ feePerByte?: string | undefined;
39
+ opReturnDataHex?: string | undefined;
40
+ }, {
41
+ amount: string;
42
+ recipient: string;
43
+ family: "bitcoin";
44
+ feePerByte?: string | undefined;
45
+ opReturnDataHex?: string | undefined;
46
+ }>, z.ZodObject<{
47
+ amount: z.ZodString;
48
+ recipient: z.ZodString;
49
+ family: z.ZodLiteral<"celo">;
50
+ fees: z.ZodNullable<z.ZodOptional<z.ZodString>>;
51
+ mode: z.ZodEnum<["send", "lock", "unlock", "withdraw", "vote", "revoke", "activate", "register"]>;
52
+ index: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
53
+ }, "strip", z.ZodTypeAny, {
54
+ amount: string;
55
+ recipient: string;
56
+ family: "celo";
57
+ mode: "send" | "lock" | "unlock" | "withdraw" | "vote" | "revoke" | "activate" | "register";
58
+ fees?: string | null | undefined;
59
+ index?: number | null | undefined;
60
+ }, {
61
+ amount: string;
62
+ recipient: string;
63
+ family: "celo";
64
+ mode: "send" | "lock" | "unlock" | "withdraw" | "vote" | "revoke" | "activate" | "register";
65
+ fees?: string | null | undefined;
66
+ index?: number | null | undefined;
67
+ }>, z.ZodObject<{
68
+ amount: z.ZodString;
69
+ recipient: z.ZodString;
70
+ family: z.ZodLiteral<"cosmos">;
71
+ mode: z.ZodEnum<["send", "delegate", "undelegate", "redelegate", "claimReward", "claimRewardCompound"]>;
72
+ fees: z.ZodOptional<z.ZodString>;
73
+ gas: z.ZodOptional<z.ZodString>;
74
+ memo: z.ZodOptional<z.ZodString>;
75
+ }, "strip", z.ZodTypeAny, {
76
+ amount: string;
77
+ recipient: string;
78
+ family: "cosmos";
79
+ mode: "send" | "claimReward" | "delegate" | "undelegate" | "redelegate" | "claimRewardCompound";
80
+ fees?: string | undefined;
81
+ gas?: string | undefined;
82
+ memo?: string | undefined;
83
+ }, {
84
+ amount: string;
85
+ recipient: string;
86
+ family: "cosmos";
87
+ mode: "send" | "claimReward" | "delegate" | "undelegate" | "redelegate" | "claimRewardCompound";
88
+ fees?: string | undefined;
89
+ gas?: string | undefined;
90
+ memo?: string | undefined;
91
+ }>, z.ZodObject<{
92
+ amount: z.ZodString;
93
+ recipient: z.ZodString;
94
+ family: z.ZodLiteral<"crypto_org">;
95
+ mode: z.ZodString;
96
+ fees: z.ZodOptional<z.ZodString>;
97
+ }, "strip", z.ZodTypeAny, {
98
+ amount: string;
99
+ recipient: string;
100
+ family: "crypto_org";
101
+ mode: string;
102
+ fees?: string | undefined;
103
+ }, {
104
+ amount: string;
105
+ recipient: string;
106
+ family: "crypto_org";
107
+ mode: string;
108
+ fees?: string | undefined;
109
+ }>, z.ZodObject<{
110
+ amount: z.ZodString;
111
+ recipient: z.ZodString;
112
+ family: z.ZodLiteral<"ethereum">;
113
+ nonce: z.ZodOptional<z.ZodNumber>;
114
+ data: z.ZodOptional<z.ZodString>;
115
+ gasPrice: z.ZodOptional<z.ZodString>;
116
+ gasLimit: z.ZodOptional<z.ZodString>;
117
+ maxPriorityFeePerGas: z.ZodOptional<z.ZodString>;
118
+ maxFeePerGas: z.ZodOptional<z.ZodString>;
119
+ }, "strip", z.ZodTypeAny, {
120
+ amount: string;
121
+ recipient: string;
122
+ family: "ethereum";
123
+ nonce?: number | undefined;
124
+ data?: string | undefined;
125
+ gasPrice?: string | undefined;
126
+ gasLimit?: string | undefined;
127
+ maxPriorityFeePerGas?: string | undefined;
128
+ maxFeePerGas?: string | undefined;
129
+ }, {
130
+ amount: string;
131
+ recipient: string;
132
+ family: "ethereum";
133
+ nonce?: number | undefined;
134
+ data?: string | undefined;
135
+ gasPrice?: string | undefined;
136
+ gasLimit?: string | undefined;
137
+ maxPriorityFeePerGas?: string | undefined;
138
+ maxFeePerGas?: string | undefined;
139
+ }>, z.ZodObject<{
140
+ amount: z.ZodString;
141
+ recipient: z.ZodString;
142
+ family: z.ZodLiteral<"hedera">;
143
+ memo: z.ZodOptional<z.ZodString>;
144
+ }, "strip", z.ZodTypeAny, {
145
+ amount: string;
146
+ recipient: string;
147
+ family: "hedera";
148
+ memo?: string | undefined;
149
+ }, {
150
+ amount: string;
151
+ recipient: string;
152
+ family: "hedera";
153
+ memo?: string | undefined;
154
+ }>, z.ZodObject<{
155
+ amount: z.ZodString;
156
+ recipient: z.ZodString;
157
+ data: z.ZodOptional<z.ZodString>;
158
+ family: z.ZodLiteral<"filecoin">;
159
+ gasLimit: z.ZodNumber;
160
+ gasFeeCap: z.ZodString;
161
+ gasPremium: z.ZodString;
162
+ method: z.ZodNumber;
163
+ nonce: z.ZodNumber;
164
+ params: z.ZodOptional<z.ZodString>;
165
+ version: z.ZodNumber;
166
+ }, "strip", z.ZodTypeAny, {
167
+ method: number;
168
+ nonce: number;
169
+ amount: string;
170
+ recipient: string;
171
+ family: "filecoin";
172
+ gasLimit: number;
173
+ gasFeeCap: string;
174
+ gasPremium: string;
175
+ version: number;
176
+ data?: string | undefined;
177
+ params?: string | undefined;
178
+ }, {
179
+ method: number;
180
+ nonce: number;
181
+ amount: string;
182
+ recipient: string;
183
+ family: "filecoin";
184
+ gasLimit: number;
185
+ gasFeeCap: string;
186
+ gasPremium: string;
187
+ version: number;
188
+ data?: string | undefined;
189
+ params?: string | undefined;
190
+ }>, z.ZodObject<{
191
+ amount: z.ZodString;
192
+ recipient: z.ZodString;
193
+ family: z.ZodLiteral<"near">;
194
+ mode: z.ZodString;
195
+ fees: z.ZodOptional<z.ZodString>;
196
+ }, "strip", z.ZodTypeAny, {
197
+ amount: string;
198
+ recipient: string;
199
+ family: "near";
200
+ mode: string;
201
+ fees?: string | undefined;
202
+ }, {
203
+ amount: string;
204
+ recipient: string;
205
+ family: "near";
206
+ mode: string;
207
+ fees?: string | undefined;
208
+ }>, z.ZodObject<{
209
+ amount: z.ZodString;
210
+ recipient: z.ZodString;
211
+ family: z.ZodLiteral<"neo">;
212
+ }, "strip", z.ZodTypeAny, {
213
+ amount: string;
214
+ recipient: string;
215
+ family: "neo";
216
+ }, {
217
+ amount: string;
218
+ recipient: string;
219
+ family: "neo";
220
+ }>, z.ZodObject<{
221
+ amount: z.ZodString;
222
+ recipient: z.ZodString;
223
+ family: z.ZodLiteral<"polkadot">;
224
+ mode: z.ZodEnum<["send", "bond", "unbond", "rebond", "withdrawUnbonded", "setController", "nominate", "chill", "claimReward"]>;
225
+ fee: z.ZodOptional<z.ZodString>;
226
+ era: z.ZodOptional<z.ZodNumber>;
227
+ }, "strip", z.ZodTypeAny, {
228
+ amount: string;
229
+ recipient: string;
230
+ family: "polkadot";
231
+ mode: "send" | "claimReward" | "bond" | "unbond" | "rebond" | "withdrawUnbonded" | "setController" | "nominate" | "chill";
232
+ fee?: string | undefined;
233
+ era?: number | undefined;
234
+ }, {
235
+ amount: string;
236
+ recipient: string;
237
+ family: "polkadot";
238
+ mode: "send" | "claimReward" | "bond" | "unbond" | "rebond" | "withdrawUnbonded" | "setController" | "nominate" | "chill";
239
+ fee?: string | undefined;
240
+ era?: number | undefined;
241
+ }>, z.ZodObject<{
242
+ amount: z.ZodString;
243
+ recipient: z.ZodString;
244
+ family: z.ZodLiteral<"ripple">;
245
+ fee: z.ZodOptional<z.ZodString>;
246
+ tag: z.ZodNumber;
247
+ }, "strip", z.ZodTypeAny, {
248
+ amount: string;
249
+ recipient: string;
250
+ family: "ripple";
251
+ tag: number;
252
+ fee?: string | undefined;
253
+ }, {
254
+ amount: string;
255
+ recipient: string;
256
+ family: "ripple";
257
+ tag: number;
258
+ fee?: string | undefined;
259
+ }>, z.ZodObject<{
260
+ amount: z.ZodString;
261
+ recipient: z.ZodString;
262
+ family: z.ZodLiteral<"stellar">;
263
+ fees: z.ZodOptional<z.ZodString>;
264
+ memoType: z.ZodOptional<z.ZodEnum<["MEMO_TEXT", "MEMO_ID", "MEMO_HASH", "MEMO_RETURN"]>>;
265
+ memoValue: z.ZodOptional<z.ZodString>;
266
+ }, "strip", z.ZodTypeAny, {
267
+ amount: string;
268
+ recipient: string;
269
+ family: "stellar";
270
+ fees?: string | undefined;
271
+ memoType?: "MEMO_TEXT" | "MEMO_ID" | "MEMO_HASH" | "MEMO_RETURN" | undefined;
272
+ memoValue?: string | undefined;
273
+ }, {
274
+ amount: string;
275
+ recipient: string;
276
+ family: "stellar";
277
+ fees?: string | undefined;
278
+ memoType?: "MEMO_TEXT" | "MEMO_ID" | "MEMO_HASH" | "MEMO_RETURN" | undefined;
279
+ memoValue?: string | undefined;
280
+ }>, z.ZodObject<{
281
+ amount: z.ZodString;
282
+ recipient: z.ZodString;
283
+ family: z.ZodLiteral<"tezos">;
284
+ mode: z.ZodEnum<["send", "delegate", "undelegate"]>;
285
+ fees: z.ZodOptional<z.ZodString>;
286
+ gasLimit: z.ZodOptional<z.ZodString>;
287
+ }, "strip", z.ZodTypeAny, {
288
+ amount: string;
289
+ recipient: string;
290
+ family: "tezos";
291
+ mode: "send" | "delegate" | "undelegate";
292
+ fees?: string | undefined;
293
+ gasLimit?: string | undefined;
294
+ }, {
295
+ amount: string;
296
+ recipient: string;
297
+ family: "tezos";
298
+ mode: "send" | "delegate" | "undelegate";
299
+ fees?: string | undefined;
300
+ gasLimit?: string | undefined;
301
+ }>, z.ZodObject<{
302
+ amount: z.ZodString;
303
+ recipient: z.ZodString;
304
+ family: z.ZodLiteral<"tron">;
305
+ mode: z.ZodEnum<["send", "freeze", "unfreeze", "vote", "claimReward"]>;
306
+ resource: z.ZodOptional<z.ZodEnum<["BANDWIDTH", "ENERGY"]>>;
307
+ duration: z.ZodOptional<z.ZodNumber>;
308
+ }, "strip", z.ZodTypeAny, {
309
+ amount: string;
310
+ recipient: string;
311
+ family: "tron";
312
+ mode: "send" | "claimReward" | "vote" | "freeze" | "unfreeze";
313
+ resource?: "BANDWIDTH" | "ENERGY" | undefined;
314
+ duration?: number | undefined;
315
+ }, {
316
+ amount: string;
317
+ recipient: string;
318
+ family: "tron";
319
+ mode: "send" | "claimReward" | "vote" | "freeze" | "unfreeze";
320
+ resource?: "BANDWIDTH" | "ENERGY" | undefined;
321
+ duration?: number | undefined;
322
+ }>, z.ZodObject<{
323
+ amount: z.ZodString;
324
+ recipient: z.ZodString;
325
+ family: z.ZodLiteral<"elrond">;
326
+ mode: z.ZodUnion<[z.ZodLiteral<"send">, z.ZodLiteral<"delegate">, z.ZodLiteral<"reDelegateRewards">, z.ZodLiteral<"unDelegate">, z.ZodLiteral<"claimRewards">, z.ZodLiteral<"withdraw">]>;
327
+ fees: z.ZodOptional<z.ZodString>;
328
+ data: z.ZodOptional<z.ZodString>;
329
+ gasLimit: z.ZodNumber;
330
+ }, "strip", z.ZodTypeAny, {
331
+ amount: string;
332
+ recipient: string;
333
+ family: "elrond";
334
+ mode: "send" | "withdraw" | "delegate" | "reDelegateRewards" | "unDelegate" | "claimRewards";
335
+ gasLimit: number;
336
+ fees?: string | undefined;
337
+ data?: string | undefined;
338
+ }, {
339
+ amount: string;
340
+ recipient: string;
341
+ family: "elrond";
342
+ mode: "send" | "withdraw" | "delegate" | "reDelegateRewards" | "unDelegate" | "claimRewards";
343
+ gasLimit: number;
344
+ fees?: string | undefined;
345
+ data?: string | undefined;
346
+ }>, z.ZodObject<{
347
+ amount: z.ZodString;
348
+ recipient: z.ZodString;
349
+ family: z.ZodLiteral<"cardano">;
350
+ fees: z.ZodOptional<z.ZodString>;
351
+ mode: z.ZodString;
352
+ memo: z.ZodOptional<z.ZodString>;
353
+ }, "strip", z.ZodTypeAny, {
354
+ amount: string;
355
+ recipient: string;
356
+ family: "cardano";
357
+ mode: string;
358
+ fees?: string | undefined;
359
+ memo?: string | undefined;
360
+ }, {
361
+ amount: string;
362
+ recipient: string;
363
+ family: "cardano";
364
+ mode: string;
365
+ fees?: string | undefined;
366
+ memo?: string | undefined;
367
+ }>, z.ZodObject<{
368
+ amount: z.ZodString;
369
+ recipient: z.ZodString;
370
+ family: z.ZodLiteral<"solana">;
371
+ model: z.ZodString;
372
+ }, "strip", z.ZodTypeAny, {
373
+ amount: string;
374
+ recipient: string;
375
+ family: "solana";
376
+ model: string;
377
+ }, {
378
+ amount: string;
379
+ recipient: string;
380
+ family: "solana";
381
+ model: string;
382
+ }>]>;
383
+ options: z.ZodOptional<z.ZodObject<{
384
+ hwAppId: z.ZodOptional<z.ZodString>;
385
+ }, "strip", z.ZodTypeAny, {
386
+ hwAppId?: string | undefined;
387
+ }, {
388
+ hwAppId?: string | undefined;
389
+ }>>;
390
+ meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
391
+ }, "strip", z.ZodTypeAny, {
392
+ accountId: string;
393
+ rawTransaction: {
394
+ amount: string;
395
+ recipient: string;
396
+ family: "algorand";
397
+ mode: "send" | "optIn" | "claimReward" | "optOut";
398
+ fees?: string | undefined;
399
+ assetId?: string | undefined;
400
+ memo?: string | undefined;
401
+ } | {
402
+ amount: string;
403
+ recipient: string;
404
+ family: "bitcoin";
405
+ feePerByte?: string | undefined;
406
+ opReturnDataHex?: string | undefined;
407
+ } | {
408
+ amount: string;
409
+ recipient: string;
410
+ family: "celo";
411
+ mode: "send" | "lock" | "unlock" | "withdraw" | "vote" | "revoke" | "activate" | "register";
412
+ fees?: string | null | undefined;
413
+ index?: number | null | undefined;
414
+ } | {
415
+ amount: string;
416
+ recipient: string;
417
+ family: "cosmos";
418
+ mode: "send" | "claimReward" | "delegate" | "undelegate" | "redelegate" | "claimRewardCompound";
419
+ fees?: string | undefined;
420
+ gas?: string | undefined;
421
+ memo?: string | undefined;
422
+ } | {
423
+ amount: string;
424
+ recipient: string;
425
+ family: "crypto_org";
426
+ mode: string;
427
+ fees?: string | undefined;
428
+ } | {
429
+ amount: string;
430
+ recipient: string;
431
+ family: "ethereum";
432
+ nonce?: number | undefined;
433
+ data?: string | undefined;
434
+ gasPrice?: string | undefined;
435
+ gasLimit?: string | undefined;
436
+ maxPriorityFeePerGas?: string | undefined;
437
+ maxFeePerGas?: string | undefined;
438
+ } | {
439
+ amount: string;
440
+ recipient: string;
441
+ family: "hedera";
442
+ memo?: string | undefined;
443
+ } | {
444
+ method: number;
445
+ nonce: number;
446
+ amount: string;
447
+ recipient: string;
448
+ family: "filecoin";
449
+ gasLimit: number;
450
+ gasFeeCap: string;
451
+ gasPremium: string;
452
+ version: number;
453
+ data?: string | undefined;
454
+ params?: string | undefined;
455
+ } | {
456
+ amount: string;
457
+ recipient: string;
458
+ family: "near";
459
+ mode: string;
460
+ fees?: string | undefined;
461
+ } | {
462
+ amount: string;
463
+ recipient: string;
464
+ family: "neo";
465
+ } | {
466
+ amount: string;
467
+ recipient: string;
468
+ family: "polkadot";
469
+ mode: "send" | "claimReward" | "bond" | "unbond" | "rebond" | "withdrawUnbonded" | "setController" | "nominate" | "chill";
470
+ fee?: string | undefined;
471
+ era?: number | undefined;
472
+ } | {
473
+ amount: string;
474
+ recipient: string;
475
+ family: "ripple";
476
+ tag: number;
477
+ fee?: string | undefined;
478
+ } | {
479
+ amount: string;
480
+ recipient: string;
481
+ family: "stellar";
482
+ fees?: string | undefined;
483
+ memoType?: "MEMO_TEXT" | "MEMO_ID" | "MEMO_HASH" | "MEMO_RETURN" | undefined;
484
+ memoValue?: string | undefined;
485
+ } | {
486
+ amount: string;
487
+ recipient: string;
488
+ family: "tezos";
489
+ mode: "send" | "delegate" | "undelegate";
490
+ fees?: string | undefined;
491
+ gasLimit?: string | undefined;
492
+ } | {
493
+ amount: string;
494
+ recipient: string;
495
+ family: "tron";
496
+ mode: "send" | "claimReward" | "vote" | "freeze" | "unfreeze";
497
+ resource?: "BANDWIDTH" | "ENERGY" | undefined;
498
+ duration?: number | undefined;
499
+ } | {
500
+ amount: string;
501
+ recipient: string;
502
+ family: "elrond";
503
+ mode: "send" | "withdraw" | "delegate" | "reDelegateRewards" | "unDelegate" | "claimRewards";
504
+ gasLimit: number;
505
+ fees?: string | undefined;
506
+ data?: string | undefined;
507
+ } | {
508
+ amount: string;
509
+ recipient: string;
510
+ family: "cardano";
511
+ mode: string;
512
+ fees?: string | undefined;
513
+ memo?: string | undefined;
514
+ } | {
515
+ amount: string;
516
+ recipient: string;
517
+ family: "solana";
518
+ model: string;
519
+ };
520
+ options?: {
521
+ hwAppId?: string | undefined;
522
+ } | undefined;
523
+ meta?: Record<string, unknown> | undefined;
524
+ }, {
525
+ accountId: string;
526
+ rawTransaction: {
527
+ amount: string;
528
+ recipient: string;
529
+ family: "algorand";
530
+ mode: "send" | "optIn" | "claimReward" | "optOut";
531
+ fees?: string | undefined;
532
+ assetId?: string | undefined;
533
+ memo?: string | undefined;
534
+ } | {
535
+ amount: string;
536
+ recipient: string;
537
+ family: "bitcoin";
538
+ feePerByte?: string | undefined;
539
+ opReturnDataHex?: string | undefined;
540
+ } | {
541
+ amount: string;
542
+ recipient: string;
543
+ family: "celo";
544
+ mode: "send" | "lock" | "unlock" | "withdraw" | "vote" | "revoke" | "activate" | "register";
545
+ fees?: string | null | undefined;
546
+ index?: number | null | undefined;
547
+ } | {
548
+ amount: string;
549
+ recipient: string;
550
+ family: "cosmos";
551
+ mode: "send" | "claimReward" | "delegate" | "undelegate" | "redelegate" | "claimRewardCompound";
552
+ fees?: string | undefined;
553
+ gas?: string | undefined;
554
+ memo?: string | undefined;
555
+ } | {
556
+ amount: string;
557
+ recipient: string;
558
+ family: "crypto_org";
559
+ mode: string;
560
+ fees?: string | undefined;
561
+ } | {
562
+ amount: string;
563
+ recipient: string;
564
+ family: "ethereum";
565
+ nonce?: number | undefined;
566
+ data?: string | undefined;
567
+ gasPrice?: string | undefined;
568
+ gasLimit?: string | undefined;
569
+ maxPriorityFeePerGas?: string | undefined;
570
+ maxFeePerGas?: string | undefined;
571
+ } | {
572
+ amount: string;
573
+ recipient: string;
574
+ family: "hedera";
575
+ memo?: string | undefined;
576
+ } | {
577
+ method: number;
578
+ nonce: number;
579
+ amount: string;
580
+ recipient: string;
581
+ family: "filecoin";
582
+ gasLimit: number;
583
+ gasFeeCap: string;
584
+ gasPremium: string;
585
+ version: number;
586
+ data?: string | undefined;
587
+ params?: string | undefined;
588
+ } | {
589
+ amount: string;
590
+ recipient: string;
591
+ family: "near";
592
+ mode: string;
593
+ fees?: string | undefined;
594
+ } | {
595
+ amount: string;
596
+ recipient: string;
597
+ family: "neo";
598
+ } | {
599
+ amount: string;
600
+ recipient: string;
601
+ family: "polkadot";
602
+ mode: "send" | "claimReward" | "bond" | "unbond" | "rebond" | "withdrawUnbonded" | "setController" | "nominate" | "chill";
603
+ fee?: string | undefined;
604
+ era?: number | undefined;
605
+ } | {
606
+ amount: string;
607
+ recipient: string;
608
+ family: "ripple";
609
+ tag: number;
610
+ fee?: string | undefined;
611
+ } | {
612
+ amount: string;
613
+ recipient: string;
614
+ family: "stellar";
615
+ fees?: string | undefined;
616
+ memoType?: "MEMO_TEXT" | "MEMO_ID" | "MEMO_HASH" | "MEMO_RETURN" | undefined;
617
+ memoValue?: string | undefined;
618
+ } | {
619
+ amount: string;
620
+ recipient: string;
621
+ family: "tezos";
622
+ mode: "send" | "delegate" | "undelegate";
623
+ fees?: string | undefined;
624
+ gasLimit?: string | undefined;
625
+ } | {
626
+ amount: string;
627
+ recipient: string;
628
+ family: "tron";
629
+ mode: "send" | "claimReward" | "vote" | "freeze" | "unfreeze";
630
+ resource?: "BANDWIDTH" | "ENERGY" | undefined;
631
+ duration?: number | undefined;
632
+ } | {
633
+ amount: string;
634
+ recipient: string;
635
+ family: "elrond";
636
+ mode: "send" | "withdraw" | "delegate" | "reDelegateRewards" | "unDelegate" | "claimRewards";
637
+ gasLimit: number;
638
+ fees?: string | undefined;
639
+ data?: string | undefined;
640
+ } | {
641
+ amount: string;
642
+ recipient: string;
643
+ family: "cardano";
644
+ mode: string;
645
+ fees?: string | undefined;
646
+ memo?: string | undefined;
647
+ } | {
648
+ amount: string;
649
+ recipient: string;
650
+ family: "solana";
651
+ model: string;
652
+ };
653
+ options?: {
654
+ hwAppId?: string | undefined;
655
+ } | undefined;
656
+ meta?: Record<string, unknown> | undefined;
657
+ }>;
658
+ declare const schemaTransactionSignAndBroadcastResults: z.ZodObject<{
659
+ transactionHash: z.ZodString;
660
+ }, "strip", z.ZodTypeAny, {
661
+ transactionHash: string;
662
+ }, {
663
+ transactionHash: string;
664
+ }>;
665
+ export declare const schemaTransactionSignAndBroadcast: {
666
+ params: z.ZodObject<{
667
+ accountId: z.ZodString;
668
+ rawTransaction: z.ZodDiscriminatedUnion<"family", [z.ZodObject<{
669
+ amount: z.ZodString;
670
+ recipient: z.ZodString;
671
+ family: z.ZodLiteral<"algorand">;
672
+ mode: z.ZodEnum<["send", "optIn", "claimReward", "optOut"]>;
673
+ fees: z.ZodOptional<z.ZodString>;
674
+ assetId: z.ZodOptional<z.ZodString>;
675
+ memo: z.ZodOptional<z.ZodString>;
676
+ }, "strip", z.ZodTypeAny, {
677
+ amount: string;
678
+ recipient: string;
679
+ family: "algorand";
680
+ mode: "send" | "optIn" | "claimReward" | "optOut";
681
+ fees?: string | undefined;
682
+ assetId?: string | undefined;
683
+ memo?: string | undefined;
684
+ }, {
685
+ amount: string;
686
+ recipient: string;
687
+ family: "algorand";
688
+ mode: "send" | "optIn" | "claimReward" | "optOut";
689
+ fees?: string | undefined;
690
+ assetId?: string | undefined;
691
+ memo?: string | undefined;
692
+ }>, z.ZodObject<{
693
+ amount: z.ZodString;
694
+ recipient: z.ZodString;
695
+ family: z.ZodLiteral<"bitcoin">;
696
+ feePerByte: z.ZodOptional<z.ZodString>;
697
+ opReturnDataHex: z.ZodOptional<z.ZodString>;
698
+ }, "strip", z.ZodTypeAny, {
699
+ amount: string;
700
+ recipient: string;
701
+ family: "bitcoin";
702
+ feePerByte?: string | undefined;
703
+ opReturnDataHex?: string | undefined;
704
+ }, {
705
+ amount: string;
706
+ recipient: string;
707
+ family: "bitcoin";
708
+ feePerByte?: string | undefined;
709
+ opReturnDataHex?: string | undefined;
710
+ }>, z.ZodObject<{
711
+ amount: z.ZodString;
712
+ recipient: z.ZodString;
713
+ family: z.ZodLiteral<"celo">;
714
+ fees: z.ZodNullable<z.ZodOptional<z.ZodString>>;
715
+ mode: z.ZodEnum<["send", "lock", "unlock", "withdraw", "vote", "revoke", "activate", "register"]>;
716
+ index: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
717
+ }, "strip", z.ZodTypeAny, {
718
+ amount: string;
719
+ recipient: string;
720
+ family: "celo";
721
+ mode: "send" | "lock" | "unlock" | "withdraw" | "vote" | "revoke" | "activate" | "register";
722
+ fees?: string | null | undefined;
723
+ index?: number | null | undefined;
724
+ }, {
725
+ amount: string;
726
+ recipient: string;
727
+ family: "celo";
728
+ mode: "send" | "lock" | "unlock" | "withdraw" | "vote" | "revoke" | "activate" | "register";
729
+ fees?: string | null | undefined;
730
+ index?: number | null | undefined;
731
+ }>, z.ZodObject<{
732
+ amount: z.ZodString;
733
+ recipient: z.ZodString;
734
+ family: z.ZodLiteral<"cosmos">;
735
+ mode: z.ZodEnum<["send", "delegate", "undelegate", "redelegate", "claimReward", "claimRewardCompound"]>;
736
+ fees: z.ZodOptional<z.ZodString>;
737
+ gas: z.ZodOptional<z.ZodString>;
738
+ memo: z.ZodOptional<z.ZodString>;
739
+ }, "strip", z.ZodTypeAny, {
740
+ amount: string;
741
+ recipient: string;
742
+ family: "cosmos";
743
+ mode: "send" | "claimReward" | "delegate" | "undelegate" | "redelegate" | "claimRewardCompound";
744
+ fees?: string | undefined;
745
+ gas?: string | undefined;
746
+ memo?: string | undefined;
747
+ }, {
748
+ amount: string;
749
+ recipient: string;
750
+ family: "cosmos";
751
+ mode: "send" | "claimReward" | "delegate" | "undelegate" | "redelegate" | "claimRewardCompound";
752
+ fees?: string | undefined;
753
+ gas?: string | undefined;
754
+ memo?: string | undefined;
755
+ }>, z.ZodObject<{
756
+ amount: z.ZodString;
757
+ recipient: z.ZodString;
758
+ family: z.ZodLiteral<"crypto_org">;
759
+ mode: z.ZodString;
760
+ fees: z.ZodOptional<z.ZodString>;
761
+ }, "strip", z.ZodTypeAny, {
762
+ amount: string;
763
+ recipient: string;
764
+ family: "crypto_org";
765
+ mode: string;
766
+ fees?: string | undefined;
767
+ }, {
768
+ amount: string;
769
+ recipient: string;
770
+ family: "crypto_org";
771
+ mode: string;
772
+ fees?: string | undefined;
773
+ }>, z.ZodObject<{
774
+ amount: z.ZodString;
775
+ recipient: z.ZodString;
776
+ family: z.ZodLiteral<"ethereum">;
777
+ nonce: z.ZodOptional<z.ZodNumber>;
778
+ data: z.ZodOptional<z.ZodString>;
779
+ gasPrice: z.ZodOptional<z.ZodString>;
780
+ gasLimit: z.ZodOptional<z.ZodString>;
781
+ maxPriorityFeePerGas: z.ZodOptional<z.ZodString>;
782
+ maxFeePerGas: z.ZodOptional<z.ZodString>;
783
+ }, "strip", z.ZodTypeAny, {
784
+ amount: string;
785
+ recipient: string;
786
+ family: "ethereum";
787
+ nonce?: number | undefined;
788
+ data?: string | undefined;
789
+ gasPrice?: string | undefined;
790
+ gasLimit?: string | undefined;
791
+ maxPriorityFeePerGas?: string | undefined;
792
+ maxFeePerGas?: string | undefined;
793
+ }, {
794
+ amount: string;
795
+ recipient: string;
796
+ family: "ethereum";
797
+ nonce?: number | undefined;
798
+ data?: string | undefined;
799
+ gasPrice?: string | undefined;
800
+ gasLimit?: string | undefined;
801
+ maxPriorityFeePerGas?: string | undefined;
802
+ maxFeePerGas?: string | undefined;
803
+ }>, z.ZodObject<{
804
+ amount: z.ZodString;
805
+ recipient: z.ZodString;
806
+ family: z.ZodLiteral<"hedera">;
807
+ memo: z.ZodOptional<z.ZodString>;
808
+ }, "strip", z.ZodTypeAny, {
809
+ amount: string;
810
+ recipient: string;
811
+ family: "hedera";
812
+ memo?: string | undefined;
813
+ }, {
814
+ amount: string;
815
+ recipient: string;
816
+ family: "hedera";
817
+ memo?: string | undefined;
818
+ }>, z.ZodObject<{
819
+ amount: z.ZodString;
820
+ recipient: z.ZodString;
821
+ data: z.ZodOptional<z.ZodString>;
822
+ family: z.ZodLiteral<"filecoin">;
823
+ gasLimit: z.ZodNumber;
824
+ gasFeeCap: z.ZodString;
825
+ gasPremium: z.ZodString;
826
+ method: z.ZodNumber;
827
+ nonce: z.ZodNumber;
828
+ params: z.ZodOptional<z.ZodString>;
829
+ version: z.ZodNumber;
830
+ }, "strip", z.ZodTypeAny, {
831
+ method: number;
832
+ nonce: number;
833
+ amount: string;
834
+ recipient: string;
835
+ family: "filecoin";
836
+ gasLimit: number;
837
+ gasFeeCap: string;
838
+ gasPremium: string;
839
+ version: number;
840
+ data?: string | undefined;
841
+ params?: string | undefined;
842
+ }, {
843
+ method: number;
844
+ nonce: number;
845
+ amount: string;
846
+ recipient: string;
847
+ family: "filecoin";
848
+ gasLimit: number;
849
+ gasFeeCap: string;
850
+ gasPremium: string;
851
+ version: number;
852
+ data?: string | undefined;
853
+ params?: string | undefined;
854
+ }>, z.ZodObject<{
855
+ amount: z.ZodString;
856
+ recipient: z.ZodString;
857
+ family: z.ZodLiteral<"near">;
858
+ mode: z.ZodString;
859
+ fees: z.ZodOptional<z.ZodString>;
860
+ }, "strip", z.ZodTypeAny, {
861
+ amount: string;
862
+ recipient: string;
863
+ family: "near";
864
+ mode: string;
865
+ fees?: string | undefined;
866
+ }, {
867
+ amount: string;
868
+ recipient: string;
869
+ family: "near";
870
+ mode: string;
871
+ fees?: string | undefined;
872
+ }>, z.ZodObject<{
873
+ amount: z.ZodString;
874
+ recipient: z.ZodString;
875
+ family: z.ZodLiteral<"neo">;
876
+ }, "strip", z.ZodTypeAny, {
877
+ amount: string;
878
+ recipient: string;
879
+ family: "neo";
880
+ }, {
881
+ amount: string;
882
+ recipient: string;
883
+ family: "neo";
884
+ }>, z.ZodObject<{
885
+ amount: z.ZodString;
886
+ recipient: z.ZodString;
887
+ family: z.ZodLiteral<"polkadot">;
888
+ mode: z.ZodEnum<["send", "bond", "unbond", "rebond", "withdrawUnbonded", "setController", "nominate", "chill", "claimReward"]>;
889
+ fee: z.ZodOptional<z.ZodString>;
890
+ era: z.ZodOptional<z.ZodNumber>;
891
+ }, "strip", z.ZodTypeAny, {
892
+ amount: string;
893
+ recipient: string;
894
+ family: "polkadot";
895
+ mode: "send" | "claimReward" | "bond" | "unbond" | "rebond" | "withdrawUnbonded" | "setController" | "nominate" | "chill";
896
+ fee?: string | undefined;
897
+ era?: number | undefined;
898
+ }, {
899
+ amount: string;
900
+ recipient: string;
901
+ family: "polkadot";
902
+ mode: "send" | "claimReward" | "bond" | "unbond" | "rebond" | "withdrawUnbonded" | "setController" | "nominate" | "chill";
903
+ fee?: string | undefined;
904
+ era?: number | undefined;
905
+ }>, z.ZodObject<{
906
+ amount: z.ZodString;
907
+ recipient: z.ZodString;
908
+ family: z.ZodLiteral<"ripple">;
909
+ fee: z.ZodOptional<z.ZodString>;
910
+ tag: z.ZodNumber;
911
+ }, "strip", z.ZodTypeAny, {
912
+ amount: string;
913
+ recipient: string;
914
+ family: "ripple";
915
+ tag: number;
916
+ fee?: string | undefined;
917
+ }, {
918
+ amount: string;
919
+ recipient: string;
920
+ family: "ripple";
921
+ tag: number;
922
+ fee?: string | undefined;
923
+ }>, z.ZodObject<{
924
+ amount: z.ZodString;
925
+ recipient: z.ZodString;
926
+ family: z.ZodLiteral<"stellar">;
927
+ fees: z.ZodOptional<z.ZodString>;
928
+ memoType: z.ZodOptional<z.ZodEnum<["MEMO_TEXT", "MEMO_ID", "MEMO_HASH", "MEMO_RETURN"]>>;
929
+ memoValue: z.ZodOptional<z.ZodString>;
930
+ }, "strip", z.ZodTypeAny, {
931
+ amount: string;
932
+ recipient: string;
933
+ family: "stellar";
934
+ fees?: string | undefined;
935
+ memoType?: "MEMO_TEXT" | "MEMO_ID" | "MEMO_HASH" | "MEMO_RETURN" | undefined;
936
+ memoValue?: string | undefined;
937
+ }, {
938
+ amount: string;
939
+ recipient: string;
940
+ family: "stellar";
941
+ fees?: string | undefined;
942
+ memoType?: "MEMO_TEXT" | "MEMO_ID" | "MEMO_HASH" | "MEMO_RETURN" | undefined;
943
+ memoValue?: string | undefined;
944
+ }>, z.ZodObject<{
945
+ amount: z.ZodString;
946
+ recipient: z.ZodString;
947
+ family: z.ZodLiteral<"tezos">;
948
+ mode: z.ZodEnum<["send", "delegate", "undelegate"]>;
949
+ fees: z.ZodOptional<z.ZodString>;
950
+ gasLimit: z.ZodOptional<z.ZodString>;
951
+ }, "strip", z.ZodTypeAny, {
952
+ amount: string;
953
+ recipient: string;
954
+ family: "tezos";
955
+ mode: "send" | "delegate" | "undelegate";
956
+ fees?: string | undefined;
957
+ gasLimit?: string | undefined;
958
+ }, {
959
+ amount: string;
960
+ recipient: string;
961
+ family: "tezos";
962
+ mode: "send" | "delegate" | "undelegate";
963
+ fees?: string | undefined;
964
+ gasLimit?: string | undefined;
965
+ }>, z.ZodObject<{
966
+ amount: z.ZodString;
967
+ recipient: z.ZodString;
968
+ family: z.ZodLiteral<"tron">;
969
+ mode: z.ZodEnum<["send", "freeze", "unfreeze", "vote", "claimReward"]>;
970
+ resource: z.ZodOptional<z.ZodEnum<["BANDWIDTH", "ENERGY"]>>;
971
+ duration: z.ZodOptional<z.ZodNumber>;
972
+ }, "strip", z.ZodTypeAny, {
973
+ amount: string;
974
+ recipient: string;
975
+ family: "tron";
976
+ mode: "send" | "claimReward" | "vote" | "freeze" | "unfreeze";
977
+ resource?: "BANDWIDTH" | "ENERGY" | undefined;
978
+ duration?: number | undefined;
979
+ }, {
980
+ amount: string;
981
+ recipient: string;
982
+ family: "tron";
983
+ mode: "send" | "claimReward" | "vote" | "freeze" | "unfreeze";
984
+ resource?: "BANDWIDTH" | "ENERGY" | undefined;
985
+ duration?: number | undefined;
986
+ }>, z.ZodObject<{
987
+ amount: z.ZodString;
988
+ recipient: z.ZodString;
989
+ family: z.ZodLiteral<"elrond">;
990
+ mode: z.ZodUnion<[z.ZodLiteral<"send">, z.ZodLiteral<"delegate">, z.ZodLiteral<"reDelegateRewards">, z.ZodLiteral<"unDelegate">, z.ZodLiteral<"claimRewards">, z.ZodLiteral<"withdraw">]>;
991
+ fees: z.ZodOptional<z.ZodString>;
992
+ data: z.ZodOptional<z.ZodString>;
993
+ gasLimit: z.ZodNumber;
994
+ }, "strip", z.ZodTypeAny, {
995
+ amount: string;
996
+ recipient: string;
997
+ family: "elrond";
998
+ mode: "send" | "withdraw" | "delegate" | "reDelegateRewards" | "unDelegate" | "claimRewards";
999
+ gasLimit: number;
1000
+ fees?: string | undefined;
1001
+ data?: string | undefined;
1002
+ }, {
1003
+ amount: string;
1004
+ recipient: string;
1005
+ family: "elrond";
1006
+ mode: "send" | "withdraw" | "delegate" | "reDelegateRewards" | "unDelegate" | "claimRewards";
1007
+ gasLimit: number;
1008
+ fees?: string | undefined;
1009
+ data?: string | undefined;
1010
+ }>, z.ZodObject<{
1011
+ amount: z.ZodString;
1012
+ recipient: z.ZodString;
1013
+ family: z.ZodLiteral<"cardano">;
1014
+ fees: z.ZodOptional<z.ZodString>;
1015
+ mode: z.ZodString;
1016
+ memo: z.ZodOptional<z.ZodString>;
1017
+ }, "strip", z.ZodTypeAny, {
1018
+ amount: string;
1019
+ recipient: string;
1020
+ family: "cardano";
1021
+ mode: string;
1022
+ fees?: string | undefined;
1023
+ memo?: string | undefined;
1024
+ }, {
1025
+ amount: string;
1026
+ recipient: string;
1027
+ family: "cardano";
1028
+ mode: string;
1029
+ fees?: string | undefined;
1030
+ memo?: string | undefined;
1031
+ }>, z.ZodObject<{
1032
+ amount: z.ZodString;
1033
+ recipient: z.ZodString;
1034
+ family: z.ZodLiteral<"solana">;
1035
+ model: z.ZodString;
1036
+ }, "strip", z.ZodTypeAny, {
1037
+ amount: string;
1038
+ recipient: string;
1039
+ family: "solana";
1040
+ model: string;
1041
+ }, {
1042
+ amount: string;
1043
+ recipient: string;
1044
+ family: "solana";
1045
+ model: string;
1046
+ }>]>;
1047
+ options: z.ZodOptional<z.ZodObject<{
1048
+ hwAppId: z.ZodOptional<z.ZodString>;
1049
+ }, "strip", z.ZodTypeAny, {
1050
+ hwAppId?: string | undefined;
1051
+ }, {
1052
+ hwAppId?: string | undefined;
1053
+ }>>;
1054
+ meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1055
+ }, "strip", z.ZodTypeAny, {
1056
+ accountId: string;
1057
+ rawTransaction: {
1058
+ amount: string;
1059
+ recipient: string;
1060
+ family: "algorand";
1061
+ mode: "send" | "optIn" | "claimReward" | "optOut";
1062
+ fees?: string | undefined;
1063
+ assetId?: string | undefined;
1064
+ memo?: string | undefined;
1065
+ } | {
1066
+ amount: string;
1067
+ recipient: string;
1068
+ family: "bitcoin";
1069
+ feePerByte?: string | undefined;
1070
+ opReturnDataHex?: string | undefined;
1071
+ } | {
1072
+ amount: string;
1073
+ recipient: string;
1074
+ family: "celo";
1075
+ mode: "send" | "lock" | "unlock" | "withdraw" | "vote" | "revoke" | "activate" | "register";
1076
+ fees?: string | null | undefined;
1077
+ index?: number | null | undefined;
1078
+ } | {
1079
+ amount: string;
1080
+ recipient: string;
1081
+ family: "cosmos";
1082
+ mode: "send" | "claimReward" | "delegate" | "undelegate" | "redelegate" | "claimRewardCompound";
1083
+ fees?: string | undefined;
1084
+ gas?: string | undefined;
1085
+ memo?: string | undefined;
1086
+ } | {
1087
+ amount: string;
1088
+ recipient: string;
1089
+ family: "crypto_org";
1090
+ mode: string;
1091
+ fees?: string | undefined;
1092
+ } | {
1093
+ amount: string;
1094
+ recipient: string;
1095
+ family: "ethereum";
1096
+ nonce?: number | undefined;
1097
+ data?: string | undefined;
1098
+ gasPrice?: string | undefined;
1099
+ gasLimit?: string | undefined;
1100
+ maxPriorityFeePerGas?: string | undefined;
1101
+ maxFeePerGas?: string | undefined;
1102
+ } | {
1103
+ amount: string;
1104
+ recipient: string;
1105
+ family: "hedera";
1106
+ memo?: string | undefined;
1107
+ } | {
1108
+ method: number;
1109
+ nonce: number;
1110
+ amount: string;
1111
+ recipient: string;
1112
+ family: "filecoin";
1113
+ gasLimit: number;
1114
+ gasFeeCap: string;
1115
+ gasPremium: string;
1116
+ version: number;
1117
+ data?: string | undefined;
1118
+ params?: string | undefined;
1119
+ } | {
1120
+ amount: string;
1121
+ recipient: string;
1122
+ family: "near";
1123
+ mode: string;
1124
+ fees?: string | undefined;
1125
+ } | {
1126
+ amount: string;
1127
+ recipient: string;
1128
+ family: "neo";
1129
+ } | {
1130
+ amount: string;
1131
+ recipient: string;
1132
+ family: "polkadot";
1133
+ mode: "send" | "claimReward" | "bond" | "unbond" | "rebond" | "withdrawUnbonded" | "setController" | "nominate" | "chill";
1134
+ fee?: string | undefined;
1135
+ era?: number | undefined;
1136
+ } | {
1137
+ amount: string;
1138
+ recipient: string;
1139
+ family: "ripple";
1140
+ tag: number;
1141
+ fee?: string | undefined;
1142
+ } | {
1143
+ amount: string;
1144
+ recipient: string;
1145
+ family: "stellar";
1146
+ fees?: string | undefined;
1147
+ memoType?: "MEMO_TEXT" | "MEMO_ID" | "MEMO_HASH" | "MEMO_RETURN" | undefined;
1148
+ memoValue?: string | undefined;
1149
+ } | {
1150
+ amount: string;
1151
+ recipient: string;
1152
+ family: "tezos";
1153
+ mode: "send" | "delegate" | "undelegate";
1154
+ fees?: string | undefined;
1155
+ gasLimit?: string | undefined;
1156
+ } | {
1157
+ amount: string;
1158
+ recipient: string;
1159
+ family: "tron";
1160
+ mode: "send" | "claimReward" | "vote" | "freeze" | "unfreeze";
1161
+ resource?: "BANDWIDTH" | "ENERGY" | undefined;
1162
+ duration?: number | undefined;
1163
+ } | {
1164
+ amount: string;
1165
+ recipient: string;
1166
+ family: "elrond";
1167
+ mode: "send" | "withdraw" | "delegate" | "reDelegateRewards" | "unDelegate" | "claimRewards";
1168
+ gasLimit: number;
1169
+ fees?: string | undefined;
1170
+ data?: string | undefined;
1171
+ } | {
1172
+ amount: string;
1173
+ recipient: string;
1174
+ family: "cardano";
1175
+ mode: string;
1176
+ fees?: string | undefined;
1177
+ memo?: string | undefined;
1178
+ } | {
1179
+ amount: string;
1180
+ recipient: string;
1181
+ family: "solana";
1182
+ model: string;
1183
+ };
1184
+ options?: {
1185
+ hwAppId?: string | undefined;
1186
+ } | undefined;
1187
+ meta?: Record<string, unknown> | undefined;
1188
+ }, {
1189
+ accountId: string;
1190
+ rawTransaction: {
1191
+ amount: string;
1192
+ recipient: string;
1193
+ family: "algorand";
1194
+ mode: "send" | "optIn" | "claimReward" | "optOut";
1195
+ fees?: string | undefined;
1196
+ assetId?: string | undefined;
1197
+ memo?: string | undefined;
1198
+ } | {
1199
+ amount: string;
1200
+ recipient: string;
1201
+ family: "bitcoin";
1202
+ feePerByte?: string | undefined;
1203
+ opReturnDataHex?: string | undefined;
1204
+ } | {
1205
+ amount: string;
1206
+ recipient: string;
1207
+ family: "celo";
1208
+ mode: "send" | "lock" | "unlock" | "withdraw" | "vote" | "revoke" | "activate" | "register";
1209
+ fees?: string | null | undefined;
1210
+ index?: number | null | undefined;
1211
+ } | {
1212
+ amount: string;
1213
+ recipient: string;
1214
+ family: "cosmos";
1215
+ mode: "send" | "claimReward" | "delegate" | "undelegate" | "redelegate" | "claimRewardCompound";
1216
+ fees?: string | undefined;
1217
+ gas?: string | undefined;
1218
+ memo?: string | undefined;
1219
+ } | {
1220
+ amount: string;
1221
+ recipient: string;
1222
+ family: "crypto_org";
1223
+ mode: string;
1224
+ fees?: string | undefined;
1225
+ } | {
1226
+ amount: string;
1227
+ recipient: string;
1228
+ family: "ethereum";
1229
+ nonce?: number | undefined;
1230
+ data?: string | undefined;
1231
+ gasPrice?: string | undefined;
1232
+ gasLimit?: string | undefined;
1233
+ maxPriorityFeePerGas?: string | undefined;
1234
+ maxFeePerGas?: string | undefined;
1235
+ } | {
1236
+ amount: string;
1237
+ recipient: string;
1238
+ family: "hedera";
1239
+ memo?: string | undefined;
1240
+ } | {
1241
+ method: number;
1242
+ nonce: number;
1243
+ amount: string;
1244
+ recipient: string;
1245
+ family: "filecoin";
1246
+ gasLimit: number;
1247
+ gasFeeCap: string;
1248
+ gasPremium: string;
1249
+ version: number;
1250
+ data?: string | undefined;
1251
+ params?: string | undefined;
1252
+ } | {
1253
+ amount: string;
1254
+ recipient: string;
1255
+ family: "near";
1256
+ mode: string;
1257
+ fees?: string | undefined;
1258
+ } | {
1259
+ amount: string;
1260
+ recipient: string;
1261
+ family: "neo";
1262
+ } | {
1263
+ amount: string;
1264
+ recipient: string;
1265
+ family: "polkadot";
1266
+ mode: "send" | "claimReward" | "bond" | "unbond" | "rebond" | "withdrawUnbonded" | "setController" | "nominate" | "chill";
1267
+ fee?: string | undefined;
1268
+ era?: number | undefined;
1269
+ } | {
1270
+ amount: string;
1271
+ recipient: string;
1272
+ family: "ripple";
1273
+ tag: number;
1274
+ fee?: string | undefined;
1275
+ } | {
1276
+ amount: string;
1277
+ recipient: string;
1278
+ family: "stellar";
1279
+ fees?: string | undefined;
1280
+ memoType?: "MEMO_TEXT" | "MEMO_ID" | "MEMO_HASH" | "MEMO_RETURN" | undefined;
1281
+ memoValue?: string | undefined;
1282
+ } | {
1283
+ amount: string;
1284
+ recipient: string;
1285
+ family: "tezos";
1286
+ mode: "send" | "delegate" | "undelegate";
1287
+ fees?: string | undefined;
1288
+ gasLimit?: string | undefined;
1289
+ } | {
1290
+ amount: string;
1291
+ recipient: string;
1292
+ family: "tron";
1293
+ mode: "send" | "claimReward" | "vote" | "freeze" | "unfreeze";
1294
+ resource?: "BANDWIDTH" | "ENERGY" | undefined;
1295
+ duration?: number | undefined;
1296
+ } | {
1297
+ amount: string;
1298
+ recipient: string;
1299
+ family: "elrond";
1300
+ mode: "send" | "withdraw" | "delegate" | "reDelegateRewards" | "unDelegate" | "claimRewards";
1301
+ gasLimit: number;
1302
+ fees?: string | undefined;
1303
+ data?: string | undefined;
1304
+ } | {
1305
+ amount: string;
1306
+ recipient: string;
1307
+ family: "cardano";
1308
+ mode: string;
1309
+ fees?: string | undefined;
1310
+ memo?: string | undefined;
1311
+ } | {
1312
+ amount: string;
1313
+ recipient: string;
1314
+ family: "solana";
1315
+ model: string;
1316
+ };
1317
+ options?: {
1318
+ hwAppId?: string | undefined;
1319
+ } | undefined;
1320
+ meta?: Record<string, unknown> | undefined;
1321
+ }>;
1322
+ result: z.ZodObject<{
1323
+ transactionHash: z.ZodString;
1324
+ }, "strip", z.ZodTypeAny, {
1325
+ transactionHash: string;
1326
+ }, {
1327
+ transactionHash: string;
1328
+ }>;
1329
+ };
1330
+ export type TransactionSignAndBroadcast = {
1331
+ params: z.infer<typeof schemaTransactionSignAndBroadcastParams>;
1332
+ result: z.infer<typeof schemaTransactionSignAndBroadcastResults>;
1333
+ };
1334
+ export type TransactionSignAndBroadcastHandler = (params: TransactionSignAndBroadcast["params"]) => TransactionSignAndBroadcast["result"];
1335
+ export {};
1336
+ //# sourceMappingURL=TransactionSignAndBroadcast.d.ts.map