@hinkal/common 0.0.116 → 0.0.117

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 (1392) hide show
  1. package/@virtual_vite-plugin-virtual/constants.mjs +7 -0
  2. package/API/HinkalPointsCalls.mjs +20 -14
  3. package/API/callBeefyGraphAPI.mjs +16 -10
  4. package/API/callCurveAPI.mjs +35 -35
  5. package/API/callMonitor.mjs +16 -10
  6. package/API/callOdosAPI.mjs +18 -12
  7. package/API/callOneInchAPI.mjs +18 -12
  8. package/API/callRelayer.mjs +16 -10
  9. package/API/checkRisk.mjs +16 -10
  10. package/API/dataServerCalls.mjs +16 -10
  11. package/API/fetchCommitmentsCache.mjs +17 -11
  12. package/API/fetchNullifiers.mjs +16 -10
  13. package/API/getAxelarGasEstimate.mjs +16 -10
  14. package/API/getCoingeckoPrice.mjs +1 -1
  15. package/API/getConnextReceiveFee.mjs +16 -10
  16. package/API/getGasEstimates.mjs +16 -10
  17. package/API/getRelayerURL.mjs +18 -13
  18. package/API/getServerURL.mjs +17 -12
  19. package/API/getTokenPrice.mjs +20 -14
  20. package/API/kycCalls.mjs +1 -1
  21. package/API/passwordCalls.mjs +21 -15
  22. package/API/referralProgramCalls.mjs +38 -32
  23. package/API/relayCalls.mjs +16 -10
  24. package/API/restoreSnapshots.mjs +16 -10
  25. package/API/rewardsPointsCalls.mjs +25 -19
  26. package/API/userVerifyTransactions.mjs +26 -20
  27. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/artifacts/contracts/deposit-service/DepositReceiver.sol/DepositReceiver.json.mjs +42 -0
  28. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/artifacts/contracts/deposit-service/ReceiverImplementation.sol/ReceiverImplementation.json.mjs +191 -0
  29. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/assets/index.mjs +62 -0
  30. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/assets/types/index.mjs +5 -0
  31. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/chains/index.mjs +104 -0
  32. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/chains/supported-chains-list.mjs +119 -0
  33. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/chains/types/index.mjs +8 -0
  34. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/constants/EvmChain.mjs +6 -0
  35. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/constants/GasToken.mjs +64 -0
  36. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/constants/index.mjs +74 -0
  37. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/index.mjs +33 -0
  38. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/AxelarAssetTransfer.mjs +337 -0
  39. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/AxelarGateway.mjs +186 -0
  40. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/AxelarQueryAPI.mjs +418 -0
  41. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/AxelarQueryClient/index.mjs +52 -0
  42. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/AxelarQueryClient/types/index.mjs +27 -0
  43. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/AxelarSigningClient/const/index.mjs +16 -0
  44. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/AxelarSigningClient/index.mjs +93 -0
  45. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/AxelarSigningClient/types/AxelarnetTxTypes.mjs +22 -0
  46. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/AxelarSigningClient/types/EvmTxTypes.mjs +27 -0
  47. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/BigNumberUtils.mjs +27 -0
  48. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/GatewayTx.mjs +23 -0
  49. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/TransactionRecoveryApi/AxelarDepositRecoveryAPI.mjs +71 -0
  50. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/TransactionRecoveryApi/AxelarGMPRecoveryAPI.mjs +698 -0
  51. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/TransactionRecoveryApi/AxelarRecoveryApi.mjs +349 -0
  52. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/TransactionRecoveryApi/AxelarTransferAPI.mjs +80 -0
  53. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/TransactionRecoveryApi/client/AxelarRpcClient.mjs +28 -0
  54. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/TransactionRecoveryApi/client/EVMClient/index.mjs +59 -0
  55. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/TransactionRecoveryApi/client/helpers/cosmos.mjs +61 -0
  56. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/TransactionRecoveryApi/client/helpers/retryRpc.mjs +50 -0
  57. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/TransactionRecoveryApi/constants/chain/index.mjs +21 -0
  58. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/TransactionRecoveryApi/constants/chain/mainnet.mjs +123 -0
  59. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/TransactionRecoveryApi/constants/chain/testnet.mjs +132 -0
  60. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/TransactionRecoveryApi/constants/cosmosGasReceiverOptions.mjs +11 -0
  61. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/TransactionRecoveryApi/constants/error.mjs +100 -0
  62. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/TransactionRecoveryApi/constants/s3.mjs +8 -0
  63. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/TransactionRecoveryApi/helpers/axelarHelper.mjs +172 -0
  64. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/TransactionRecoveryApi/helpers/contractCallHelper.mjs +65 -0
  65. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/TransactionRecoveryApi/helpers/contractEventHelper.mjs +96 -0
  66. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/TransactionRecoveryApi/helpers/getCommandId.mjs +14 -0
  67. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/TransactionRecoveryApi/helpers/index.mjs +27 -0
  68. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/TransactionRecoveryApi/helpers/mappers.mjs +13 -0
  69. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/TransactionRecoveryApi/helpers/providerHelper.mjs +19 -0
  70. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/TransactionRecoveryApi/index.mjs +27 -0
  71. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/TransactionRecoveryApi/interface/index.mjs +6 -0
  72. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/abi/IAxelarExecutable.mjs +98 -0
  73. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/abi/erc20Abi.json.mjs +225 -0
  74. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/fee/getL1Fee.mjs +56 -0
  75. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/index.mjs +31 -0
  76. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/libs/types/index.mjs +21 -0
  77. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/services/RestService.mjs +83 -0
  78. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/services/SocketService.mjs +82 -0
  79. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/services/index.mjs +21 -0
  80. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/services/types/index.mjs +10 -0
  81. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/utils/index.mjs +27 -0
  82. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/utils/retry.mjs +47 -0
  83. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/utils/sleep.mjs +10 -0
  84. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/utils/validateChain.mjs +84 -0
  85. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/utils/validateDestinationAddress.mjs +68 -0
  86. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/dist/src/utils/wallet.mjs +27 -0
  87. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/node_modules/bech32/dist/index.mjs +137 -0
  88. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/node_modules/uuid/dist/esm-browser/index.mjs +20 -0
  89. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/node_modules/uuid/dist/esm-browser/md5.mjs +59 -0
  90. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/node_modules/uuid/dist/esm-browser/nil.mjs +4 -0
  91. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/node_modules/uuid/dist/esm-browser/parse.mjs +10 -0
  92. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/node_modules/uuid/dist/esm-browser/regex.mjs +4 -0
  93. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/node_modules/uuid/dist/esm-browser/rng.mjs +9 -0
  94. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/node_modules/uuid/dist/esm-browser/sha1.mjs +47 -0
  95. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/node_modules/uuid/dist/esm-browser/stringify.mjs +13 -0
  96. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/node_modules/uuid/dist/esm-browser/v1.mjs +26 -0
  97. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/node_modules/uuid/dist/esm-browser/v3.mjs +7 -0
  98. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/node_modules/uuid/dist/esm-browser/v35.mjs +33 -0
  99. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/node_modules/uuid/dist/esm-browser/v4.mjs +16 -0
  100. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/node_modules/uuid/dist/esm-browser/v5.mjs +7 -0
  101. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/node_modules/uuid/dist/esm-browser/validate.mjs +7 -0
  102. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-sdk/node_modules/uuid/dist/esm-browser/version.mjs +9 -0
  103. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/build/commonjs/axelar/axelarnet/v1beta1/query.mjs +140 -0
  104. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/build/commonjs/axelar/axelarnet/v1beta1/service.mjs +73 -0
  105. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/build/commonjs/axelar/axelarnet/v1beta1/tx.mjs +982 -0
  106. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/build/commonjs/axelar/axelarnet/v1beta1/types.mjs +314 -0
  107. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/build/commonjs/axelar/evm/v1beta1/query.mjs +1778 -0
  108. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/build/commonjs/axelar/evm/v1beta1/service.mjs +137 -0
  109. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/build/commonjs/axelar/evm/v1beta1/tx.mjs +1352 -0
  110. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/build/commonjs/axelar/evm/v1beta1/types.mjs +1554 -0
  111. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/build/commonjs/axelar/nexus/exported/v1beta1/types.mjs +546 -0
  112. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/build/commonjs/axelar/nexus/v1beta1/query.mjs +1166 -0
  113. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/build/commonjs/axelar/nexus/v1beta1/service.mjs +101 -0
  114. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/build/commonjs/axelar/nexus/v1beta1/tx.mjs +547 -0
  115. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/build/commonjs/axelar/nexus/v1beta1/types.mjs +313 -0
  116. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/build/commonjs/axelar/snapshot/exported/v1beta1/types.mjs +214 -0
  117. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/build/commonjs/axelar/tss/exported/v1beta1/types.mjs +305 -0
  118. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/build/commonjs/axelar/tss/tofnd/v1beta1/tofnd.mjs +758 -0
  119. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/build/commonjs/axelar/tss/v1beta1/service.mjs +31 -0
  120. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/build/commonjs/axelar/tss/v1beta1/tx.mjs +948 -0
  121. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/build/commonjs/axelar/tss/v1beta1/types.mjs +442 -0
  122. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/build/commonjs/axelar/utils/v1beta1/bitmap.mjs +113 -0
  123. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/build/commonjs/axelar/utils/v1beta1/threshold.mjs +60 -0
  124. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/build/commonjs/axelar/vote/exported/v1beta1/types.mjs +282 -0
  125. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/build/commonjs/cosmos/base/query/v1beta1/pagination.mjs +149 -0
  126. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/build/commonjs/cosmos/base/v1beta1/coin.mjs +183 -0
  127. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/build/commonjs/google/protobuf/any.mjs +92 -0
  128. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/build/commonjs/google/protobuf/duration.mjs +60 -0
  129. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/build/commonjs/google/protobuf/timestamp.mjs +60 -0
  130. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/node_modules/long/umd/index.mjs +323 -0
  131. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/node_modules/protobufjs/minimal.mjs +6 -0
  132. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/node_modules/protobufjs/src/index-minimal.mjs +17 -0
  133. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/node_modules/protobufjs/src/reader.mjs +185 -0
  134. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/node_modules/protobufjs/src/reader_buffer.mjs +19 -0
  135. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/node_modules/protobufjs/src/roots.mjs +4 -0
  136. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/node_modules/protobufjs/src/rpc/service.mjs +56 -0
  137. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/node_modules/protobufjs/src/rpc.mjs +6 -0
  138. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/node_modules/protobufjs/src/util/longbits.mjs +75 -0
  139. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/node_modules/protobufjs/src/util/minimal.mjs +141 -0
  140. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/node_modules/protobufjs/src/writer.mjs +133 -0
  141. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@axelar-network/axelarjs-types/node_modules/protobufjs/src/writer_buffer.mjs +35 -0
  142. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@confio/ics23/build/compress.mjs +79 -0
  143. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@confio/ics23/build/generated/codecimpl.mjs +1473 -0
  144. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@confio/ics23/build/ics23.mjs +65 -0
  145. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@confio/ics23/build/index.mjs +31 -0
  146. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@confio/ics23/build/ops.mjs +99 -0
  147. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@confio/ics23/build/proofs.mjs +152 -0
  148. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@confio/ics23/build/specs.mjs +80 -0
  149. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@confio/ics23/node_modules/@noble/hashes/_assert.mjs +46 -0
  150. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@confio/ics23/node_modules/@noble/hashes/_md.mjs +72 -0
  151. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@confio/ics23/node_modules/@noble/hashes/_u64.mjs +85 -0
  152. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@confio/ics23/node_modules/@noble/hashes/crypto.mjs +7 -0
  153. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@confio/ics23/node_modules/@noble/hashes/ripemd160.mjs +75 -0
  154. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@confio/ics23/node_modules/@noble/hashes/sha256.mjs +125 -0
  155. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@confio/ics23/node_modules/@noble/hashes/sha512.mjs +150 -0
  156. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@confio/ics23/node_modules/@noble/hashes/utils.mjs +138 -0
  157. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/amino/build/addresses.mjs +45 -0
  158. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/amino/build/coins.mjs +53 -0
  159. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/amino/build/encoding.mjs +142 -0
  160. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/amino/build/index.mjs +114 -0
  161. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/amino/build/multisig.mjs +35 -0
  162. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/amino/build/paths.mjs +19 -0
  163. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/amino/build/pubkeys.mjs +28 -0
  164. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/amino/build/secp256k1hdwallet.mjs +218 -0
  165. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/amino/build/secp256k1wallet.mjs +54 -0
  166. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/amino/build/signature.mjs +34 -0
  167. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/amino/build/signdoc.mjs +46 -0
  168. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/amino/build/stdtx.mjs +20 -0
  169. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/amino/build/wallet.mjs +50 -0
  170. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/crypto/build/bip39.mjs +2152 -0
  171. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/crypto/build/hmac.mjs +26 -0
  172. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/crypto/build/index.mjs +98 -0
  173. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/crypto/build/keccak.mjs +27 -0
  174. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/crypto/build/libsodium.mjs +94 -0
  175. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/crypto/build/pbkdf2.mjs +81 -0
  176. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/crypto/build/random.mjs +26 -0
  177. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/crypto/build/ripemd.mjs +27 -0
  178. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/crypto/build/secp256k1.mjs +116 -0
  179. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/crypto/build/secp256k1signature.mjs +122 -0
  180. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/crypto/build/sha.mjs +45 -0
  181. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/crypto/build/slip10.mjs +150 -0
  182. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/crypto/build/utils.mjs +10 -0
  183. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/crypto/node_modules/@noble/hashes/_assert.mjs +46 -0
  184. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/crypto/node_modules/@noble/hashes/_md.mjs +72 -0
  185. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/crypto/node_modules/@noble/hashes/_u64.mjs +85 -0
  186. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/crypto/node_modules/@noble/hashes/crypto.mjs +7 -0
  187. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/crypto/node_modules/@noble/hashes/hmac.mjs +47 -0
  188. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/crypto/node_modules/@noble/hashes/pbkdf2.mjs +55 -0
  189. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/crypto/node_modules/@noble/hashes/ripemd160.mjs +75 -0
  190. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/crypto/node_modules/@noble/hashes/sha256.mjs +125 -0
  191. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/crypto/node_modules/@noble/hashes/sha3.mjs +124 -0
  192. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/crypto/node_modules/@noble/hashes/sha512.mjs +150 -0
  193. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/crypto/node_modules/@noble/hashes/utils.mjs +138 -0
  194. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/encoding/build/ascii.mjs +24 -0
  195. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/encoding/build/base64.mjs +41 -0
  196. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/encoding/build/bech32.mjs +47 -0
  197. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/encoding/build/hex.mjs +26 -0
  198. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/encoding/build/index.mjs +54 -0
  199. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/encoding/build/rfc3339.mjs +26 -0
  200. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/encoding/build/utf8.mjs +15 -0
  201. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/math/build/decimal.mjs +175 -0
  202. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/math/build/index.mjs +22 -0
  203. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/math/build/integers.mjs +183 -0
  204. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/proto-signing/build/coins.mjs +18 -0
  205. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/proto-signing/build/decode.mjs +18 -0
  206. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/proto-signing/build/directsecp256k1hdwallet.mjs +214 -0
  207. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/proto-signing/build/directsecp256k1wallet.mjs +53 -0
  208. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/proto-signing/build/index.mjs +88 -0
  209. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/proto-signing/build/paths.mjs +19 -0
  210. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/proto-signing/build/pubkey.mjs +86 -0
  211. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/proto-signing/build/registry.mjs +136 -0
  212. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/proto-signing/build/signer.mjs +10 -0
  213. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/proto-signing/build/signing.mjs +60 -0
  214. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/proto-signing/build/wallet.mjs +50 -0
  215. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/socket/build/index.mjs +30 -0
  216. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/socket/build/queueingstreamingsocket.mjs +70 -0
  217. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/socket/build/reconnectingsocket.mjs +52 -0
  218. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/socket/build/socketwrapper.mjs +94 -0
  219. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/socket/build/streamingsocket.mjs +38 -0
  220. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/accounts.mjs +59 -0
  221. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/aminotypes.mjs +42 -0
  222. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/events.mjs +19 -0
  223. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/fee.mjs +53 -0
  224. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/index.mjs +226 -0
  225. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/logs.mjs +76 -0
  226. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/modules/auth/queries.mjs +23 -0
  227. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/modules/authz/aminomessages.mjs +14 -0
  228. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/modules/authz/messages.mjs +14 -0
  229. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/modules/authz/queries.mjs +33 -0
  230. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/modules/bank/aminomessages.mjs +55 -0
  231. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/modules/bank/messages.mjs +17 -0
  232. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/modules/bank/queries.mjs +47 -0
  233. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/modules/crisis/aminomessages.mjs +14 -0
  234. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/modules/distribution/aminomessages.mjs +69 -0
  235. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/modules/distribution/messages.mjs +19 -0
  236. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/modules/distribution/queries.mjs +51 -0
  237. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/modules/evidence/aminomessages.mjs +14 -0
  238. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/modules/feegrant/aminomessages.mjs +13 -0
  239. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/modules/feegrant/messages.mjs +13 -0
  240. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/modules/feegrant/queries.mjs +27 -0
  241. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/modules/gov/aminomessages.mjs +142 -0
  242. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/modules/gov/messages.mjs +31 -0
  243. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/modules/gov/queries.mjs +46 -0
  244. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/modules/ibc/aminomessages.mjs +59 -0
  245. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/modules/ibc/messages.mjs +40 -0
  246. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/modules/ibc/queries.mjs +311 -0
  247. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/modules/index.mjs +248 -0
  248. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/modules/mint/queries.mjs +40 -0
  249. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/modules/slashing/aminomessages.mjs +14 -0
  250. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/modules/slashing/queries.mjs +26 -0
  251. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/modules/staking/aminomessages.mjs +159 -0
  252. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/modules/staking/messages.mjs +36 -0
  253. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/modules/staking/queries.mjs +72 -0
  254. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/modules/tx/queries.mjs +58 -0
  255. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/modules/vesting/aminomessages.mjs +38 -0
  256. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/modules/vesting/messages.mjs +12 -0
  257. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/multisignature.mjs +66 -0
  258. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/queryclient/index.mjs +22 -0
  259. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/queryclient/queryclient.mjs +127 -0
  260. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/queryclient/utils.mjs +45 -0
  261. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/signingstargateclient.mjs +240 -0
  262. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stargate/build/stargateclient.mjs +251 -0
  263. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stream/build/concat.mjs +58 -0
  264. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stream/build/defaultvalueproducer.mjs +43 -0
  265. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stream/build/dropduplicates.mjs +13 -0
  266. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stream/build/index.mjs +53 -0
  267. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stream/build/promise.mjs +48 -0
  268. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stream/build/reducer.mjs +53 -0
  269. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/stream/build/valueandupdates.mjs +40 -0
  270. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/build/addresses.mjs +38 -0
  271. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/build/dates.mjs +47 -0
  272. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/build/index.mjs +100 -0
  273. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/build/inthelpers.mjs +25 -0
  274. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/build/jsonrpc.mjs +23 -0
  275. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/build/rpcclients/http.mjs +36 -0
  276. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/build/rpcclients/httpbatchclient.mjs +63 -0
  277. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/build/rpcclients/httpclient.mjs +27 -0
  278. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/build/rpcclients/index.mjs +28 -0
  279. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/build/rpcclients/rpcclient.mjs +14 -0
  280. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/build/rpcclients/websocketclient.mjs +125 -0
  281. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/build/tendermint34/adaptor/index.mjs +19 -0
  282. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/build/tendermint34/adaptor/requests.mjs +146 -0
  283. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/build/tendermint34/adaptor/responses.mjs +432 -0
  284. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/build/tendermint34/encodings.mjs +118 -0
  285. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/build/tendermint34/hasher.mjs +63 -0
  286. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/build/tendermint34/index.mjs +28 -0
  287. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/build/tendermint34/requests.mjs +13 -0
  288. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/build/tendermint34/responses.mjs +14 -0
  289. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/build/tendermint34/tendermint34client.mjs +283 -0
  290. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/build/tendermint37/adaptor/index.mjs +19 -0
  291. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/build/tendermint37/adaptor/requests.mjs +146 -0
  292. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/build/tendermint37/adaptor/responses.mjs +432 -0
  293. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/build/tendermint37/encodings.mjs +118 -0
  294. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/build/tendermint37/hasher.mjs +63 -0
  295. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/build/tendermint37/index.mjs +28 -0
  296. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/build/tendermint37/requests.mjs +13 -0
  297. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/build/tendermint37/responses.mjs +14 -0
  298. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/build/tendermint37/tendermint37client.mjs +283 -0
  299. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/build/tendermintclient.mjs +19 -0
  300. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/build/types.mjs +6 -0
  301. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/@cosmjs/json-rpc/build/compatibility.mjs +25 -0
  302. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/@cosmjs/json-rpc/build/id.mjs +11 -0
  303. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/@cosmjs/json-rpc/build/index.mjs +40 -0
  304. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/@cosmjs/json-rpc/build/jsonrpcclient.mjs +27 -0
  305. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/@cosmjs/json-rpc/build/parse.mjs +100 -0
  306. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/@cosmjs/json-rpc/build/types.mjs +26 -0
  307. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/axios/index.mjs +5 -0
  308. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/axios/lib/adapters/xhr.mjs +67 -0
  309. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/axios/lib/axios.mjs +35 -0
  310. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/axios/lib/cancel/Cancel.mjs +15 -0
  311. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/axios/lib/cancel/CancelToken.mjs +35 -0
  312. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/axios/lib/cancel/isCancel.mjs +9 -0
  313. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/axios/lib/core/Axios.mjs +79 -0
  314. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/axios/lib/core/InterceptorManager.mjs +25 -0
  315. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/axios/lib/core/buildFullPath.mjs +15 -0
  316. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/axios/lib/core/createError.mjs +15 -0
  317. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/axios/lib/core/dispatchRequest.mjs +44 -0
  318. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/axios/lib/core/enhanceError.mjs +23 -0
  319. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/axios/lib/core/mergeConfig.mjs +49 -0
  320. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/axios/lib/core/settle.mjs +21 -0
  321. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/axios/lib/core/transformData.mjs +11 -0
  322. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/axios/lib/defaults.mjs +73 -0
  323. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/axios/lib/helpers/bind.mjs +10 -0
  324. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/axios/lib/helpers/buildURL.mjs +30 -0
  325. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/axios/lib/helpers/combineURLs.mjs +9 -0
  326. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/axios/lib/helpers/cookies.mjs +42 -0
  327. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/axios/lib/helpers/isAbsoluteURL.mjs +9 -0
  328. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/axios/lib/helpers/isAxiosError.mjs +9 -0
  329. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/axios/lib/helpers/isURLSameOrigin.mjs +42 -0
  330. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/axios/lib/helpers/normalizeHeaderName.mjs +9 -0
  331. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/axios/lib/helpers/parseHeaders.mjs +40 -0
  332. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/axios/lib/helpers/spread.mjs +11 -0
  333. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/axios/lib/helpers/validator.mjs +56 -0
  334. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/axios/lib/utils.mjs +113 -0
  335. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/tendermint-rpc/node_modules/axios/package.json.mjs +105 -0
  336. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/utils/build/arrays.mjs +24 -0
  337. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/utils/build/assert.mjs +21 -0
  338. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/utils/build/index.mjs +38 -0
  339. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/utils/build/sleep.mjs +10 -0
  340. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@cosmjs/utils/build/typechecks.mjs +18 -0
  341. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/abi/lib.esm/_version.mjs +4 -0
  342. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/abi/lib.esm/abi-coder.mjs +79 -0
  343. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/abi/lib.esm/coders/abstract-coder.mjs +111 -0
  344. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/abi/lib.esm/coders/address.mjs +25 -0
  345. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/abi/lib.esm/coders/anonymous.mjs +18 -0
  346. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/abi/lib.esm/coders/array.mjs +131 -0
  347. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/abi/lib.esm/coders/boolean.mjs +18 -0
  348. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/abi/lib.esm/coders/bytes.mjs +30 -0
  349. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/abi/lib.esm/coders/fixed-bytes.mjs +21 -0
  350. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/abi/lib.esm/coders/null.mjs +18 -0
  351. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/abi/lib.esm/coders/number.mjs +28 -0
  352. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/abi/lib.esm/coders/string.mjs +19 -0
  353. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/abi/lib.esm/coders/tuple.mjs +36 -0
  354. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/abi/lib.esm/fragments.mjs +423 -0
  355. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/abi/lib.esm/index.mjs +20 -0
  356. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/abi/lib.esm/interface.mjs +382 -0
  357. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/abstract-provider/lib.esm/_version.mjs +4 -0
  358. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/abstract-provider/lib.esm/index.mjs +67 -0
  359. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/abstract-signer/lib.esm/_version.mjs +4 -0
  360. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/abstract-signer/lib.esm/index.mjs +223 -0
  361. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/address/lib.esm/_version.mjs +4 -0
  362. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/address/lib.esm/index.mjs +84 -0
  363. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/base64/lib.esm/base64.mjs +19 -0
  364. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/base64/lib.esm/index.mjs +5 -0
  365. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/basex/lib.esm/index.mjs +55 -0
  366. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/bignumber/lib.esm/_version.mjs +4 -0
  367. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/bignumber/lib.esm/bignumber.mjs +175 -0
  368. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/bignumber/lib.esm/fixednumber.mjs +196 -0
  369. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/bytes/lib.esm/_version.mjs +4 -0
  370. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/bytes/lib.esm/index.mjs +191 -0
  371. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/constants/lib.esm/addresses.mjs +4 -0
  372. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/constants/lib.esm/bignumbers.mjs +12 -0
  373. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/constants/lib.esm/hashes.mjs +4 -0
  374. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/constants/lib.esm/index.mjs +17 -0
  375. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/constants/lib.esm/strings.mjs +4 -0
  376. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/contracts/lib.esm/_version.mjs +4 -0
  377. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/contracts/lib.esm/index.mjs +535 -0
  378. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/hash/lib.esm/_version.mjs +4 -0
  379. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/hash/lib.esm/ens-normalize/decoder.mjs +177 -0
  380. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/hash/lib.esm/ens-normalize/include.mjs +8 -0
  381. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/hash/lib.esm/ens-normalize/lib.mjs +74 -0
  382. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/hash/lib.esm/id.mjs +8 -0
  383. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/hash/lib.esm/index.mjs +14 -0
  384. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/hash/lib.esm/message.mjs +16 -0
  385. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/hash/lib.esm/namehash.mjs +56 -0
  386. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/hash/lib.esm/typed-data.mjs +298 -0
  387. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/hdnode/lib.esm/_version.mjs +4 -0
  388. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/hdnode/lib.esm/index.mjs +204 -0
  389. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/json-wallets/lib.esm/_version.mjs +4 -0
  390. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/json-wallets/lib.esm/crowdsale.mjs +36 -0
  391. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/json-wallets/lib.esm/index.mjs +31 -0
  392. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/json-wallets/lib.esm/inspect.mjs +39 -0
  393. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/json-wallets/lib.esm/keystore.mjs +207 -0
  394. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/json-wallets/lib.esm/utils.mjs +48 -0
  395. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/keccak256/lib.esm/index.mjs +8 -0
  396. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/logger/lib.esm/_version.mjs +4 -0
  397. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/logger/lib.esm/index.mjs +192 -0
  398. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/networks/lib.esm/_version.mjs +4 -0
  399. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/networks/lib.esm/index.mjs +185 -0
  400. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/pbkdf2/lib.esm/pbkdf2.mjs +25 -0
  401. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/properties/lib.esm/_version.mjs +4 -0
  402. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/properties/lib.esm/index.mjs +122 -0
  403. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/providers/lib.esm/_version.mjs +4 -0
  404. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/providers/lib.esm/alchemy-provider.mjs +67 -0
  405. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/providers/lib.esm/ankr-provider.mjs +42 -0
  406. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/providers/lib.esm/base-provider.mjs +1240 -0
  407. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/providers/lib.esm/cloudflare-provider.mjs +58 -0
  408. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/providers/lib.esm/etherscan-provider.mjs +309 -0
  409. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/providers/lib.esm/fallback-provider.mjs +341 -0
  410. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/providers/lib.esm/formatter.mjs +302 -0
  411. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/providers/lib.esm/index.mjs +86 -0
  412. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/providers/lib.esm/infura-provider.mjs +83 -0
  413. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/providers/lib.esm/ipc-provider.mjs +4 -0
  414. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/providers/lib.esm/json-rpc-batch-provider.mjs +53 -0
  415. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/providers/lib.esm/json-rpc-provider.mjs +480 -0
  416. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/providers/lib.esm/nodesmith-provider.mjs +36 -0
  417. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/providers/lib.esm/pocket-provider.mjs +53 -0
  418. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/providers/lib.esm/url-json-rpc-provider.mjs +80 -0
  419. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/providers/lib.esm/web3-provider.mjs +84 -0
  420. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/providers/lib.esm/websocket-provider.mjs +204 -0
  421. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/providers/lib.esm/ws.mjs +17 -0
  422. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/random/lib.esm/_version.mjs +4 -0
  423. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/random/lib.esm/index.mjs +6 -0
  424. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/random/lib.esm/random.mjs +30 -0
  425. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/random/lib.esm/shuffle.mjs +11 -0
  426. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/rlp/lib.esm/_version.mjs +4 -0
  427. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/rlp/lib.esm/index.mjs +78 -0
  428. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/sha2/lib.esm/_version.mjs +4 -0
  429. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/sha2/lib.esm/index.mjs +9 -0
  430. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/sha2/lib.esm/sha2.mjs +27 -0
  431. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/sha2/lib.esm/types.mjs +7 -0
  432. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/signing-key/lib.esm/_version.mjs +4 -0
  433. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/signing-key/lib.esm/elliptic.mjs +1133 -0
  434. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/signing-key/lib.esm/index.mjs +60 -0
  435. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/solidity/lib.esm/_version.mjs +4 -0
  436. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/solidity/lib.esm/index.mjs +56 -0
  437. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/strings/lib.esm/_version.mjs +4 -0
  438. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/strings/lib.esm/bytes32.mjs +24 -0
  439. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/strings/lib.esm/idna.mjs +137 -0
  440. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/strings/lib.esm/index.mjs +15 -0
  441. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/strings/lib.esm/utf8.mjs +151 -0
  442. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/transactions/lib.esm/_version.mjs +4 -0
  443. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/transactions/lib.esm/index.mjs +246 -0
  444. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/units/lib.esm/_version.mjs +4 -0
  445. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/units/lib.esm/index.mjs +60 -0
  446. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/wallet/lib.esm/_version.mjs +4 -0
  447. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/wallet/lib.esm/index.mjs +149 -0
  448. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/web/lib.esm/_version.mjs +4 -0
  449. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/web/lib.esm/geturl.mjs +56 -0
  450. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/web/lib.esm/index.mjs +254 -0
  451. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/wordlists/lib.esm/_version.mjs +4 -0
  452. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/wordlists/lib.esm/lang-en.mjs +23 -0
  453. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/wordlists/lib.esm/wordlist.mjs +37 -0
  454. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@ethersproject/wordlists/lib.esm/wordlists.mjs +7 -0
  455. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@iden3/binfileutils/node_modules/ffjavascript/build/browser.esm.mjs +389 -0
  456. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@iden3/binfileutils/src/binfileutils.mjs +82 -0
  457. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@protobufjs/aspromise/index.mjs +25 -0
  458. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@protobufjs/base64/index.mjs +61 -0
  459. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@protobufjs/eventemitter/index.mjs +33 -0
  460. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@protobufjs/float/index.mjs +110 -0
  461. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@protobufjs/inquire/index.mjs +13 -0
  462. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@protobufjs/pool/index.mjs +14 -0
  463. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@protobufjs/utf8/index.mjs +20 -0
  464. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/@socket.io/component-emitter/index.mjs +54 -0
  465. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/aes-js/index.mjs +318 -0
  466. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/assert/build/assert.mjs +413 -0
  467. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/assert/build/internal/assert/assertion_error.mjs +341 -0
  468. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/assert/build/internal/errors.mjs +176 -0
  469. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/assert/build/internal/util/comparisons.mjs +389 -0
  470. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/async-mutex/index.mjs +153 -0
  471. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/available-typed-arrays/index.mjs +10 -0
  472. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/adapters/adapters.mjs +51 -0
  473. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/adapters/xhr.mjs +109 -0
  474. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/axios.mjs +46 -0
  475. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/cancel/CancelToken.mjs +73 -0
  476. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/cancel/CanceledError.mjs +11 -0
  477. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/cancel/isCancel.mjs +6 -0
  478. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/core/Axios.mjs +131 -0
  479. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/core/AxiosError.mjs +54 -0
  480. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/core/AxiosHeaders.mjs +165 -0
  481. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/core/InterceptorManager.mjs +58 -0
  482. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/core/buildFullPath.mjs +8 -0
  483. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/core/dispatchRequest.mjs +31 -0
  484. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/core/mergeConfig.mjs +72 -0
  485. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/core/settle.mjs +14 -0
  486. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/core/transformData.mjs +13 -0
  487. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/defaults/index.mjs +88 -0
  488. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/defaults/transitional.mjs +8 -0
  489. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/env/data.mjs +4 -0
  490. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/helpers/AxiosURLSearchParams.mjs +33 -0
  491. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/helpers/HttpStatusCode.mjs +72 -0
  492. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/helpers/bind.mjs +8 -0
  493. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/helpers/buildURL.mjs +19 -0
  494. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/helpers/combineURLs.mjs +6 -0
  495. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/helpers/cookies.mjs +32 -0
  496. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/helpers/formDataToJSON.mjs +32 -0
  497. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/helpers/isAbsoluteURL.mjs +6 -0
  498. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/helpers/isAxiosError.mjs +7 -0
  499. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/helpers/isURLSameOrigin.mjs +37 -0
  500. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/helpers/null.mjs +4 -0
  501. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/helpers/parseHeaders.mjs +30 -0
  502. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/helpers/parseProtocol.mjs +7 -0
  503. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/helpers/speedometer.mjs +19 -0
  504. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/helpers/spread.mjs +8 -0
  505. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/helpers/toFormData.mjs +84 -0
  506. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/helpers/toURLEncodedForm.mjs +13 -0
  507. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/helpers/validator.mjs +51 -0
  508. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/platform/browser/classes/Blob.mjs +4 -0
  509. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/platform/browser/classes/FormData.mjs +4 -0
  510. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/platform/browser/classes/URLSearchParams.mjs +5 -0
  511. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/platform/browser/index.mjs +15 -0
  512. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/platform/common/utils.mjs +7 -0
  513. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/platform/index.mjs +9 -0
  514. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/axios/lib/utils.mjs +224 -0
  515. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/b4a/browser.mjs +310 -0
  516. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/b4a/lib/ascii.mjs +24 -0
  517. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/b4a/lib/base64.mjs +38 -0
  518. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/b4a/lib/hex.mjs +39 -0
  519. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/b4a/lib/utf16le.mjs +27 -0
  520. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/b4a/lib/utf8.mjs +75 -0
  521. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/base64-js/index.mjs +51 -0
  522. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/bech32/index.mjs +135 -0
  523. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/bfj/src/datastream.mjs +9 -0
  524. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/bfj/src/eventify.mjs +4 -0
  525. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/bfj/src/events.mjs +14 -0
  526. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/bfj/src/jsonstream.mjs +9 -0
  527. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/bfj/src/stream.mjs +15 -0
  528. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/bfj/src/walk.mjs +4 -0
  529. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/blake-hash/lib/api/blake.mjs +2 -0
  530. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/blake-hash/lib/blake.mjs +218 -0
  531. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/blake-hash/lib/blake224.mjs +3 -0
  532. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/blake-hash/lib/blake256.mjs +3 -0
  533. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/blake-hash/lib/blake384.mjs +3 -0
  534. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/blake-hash/lib/blake512.mjs +3 -0
  535. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/blake2b/index.mjs +387 -0
  536. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/blake2b-wasm/blake2b.mjs +27 -0
  537. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/blake2b-wasm/index.mjs +55 -0
  538. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/bn.js/lib/bn.mjs +1162 -0
  539. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/brorand/index.mjs +44 -0
  540. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/buffer/index.mjs +981 -0
  541. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/call-bind/callBound.mjs +9 -0
  542. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/call-bind/index.mjs +27 -0
  543. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/check-types/src/check-types.mjs +447 -0
  544. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/circom_runtime/js/utils.mjs +35 -0
  545. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/circom_runtime/js/witness_calculator.mjs +236 -0
  546. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/circomlibjs/node_modules/ffjavascript/build/browser.esm.mjs +10170 -0
  547. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/circomlibjs/src/babyjub.mjs +74 -0
  548. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/circomlibjs/src/poseidon_constants.mjs +209 -0
  549. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/circomlibjs/src/poseidon_constants_opt.mjs +24809 -0
  550. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/circomlibjs/src/poseidon_gencontract.mjs +4 -0
  551. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/circomlibjs/src/poseidon_wasm.mjs +316 -0
  552. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/clone-deep/index.mjs +35 -0
  553. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/clone-deep/node_modules/is-plain-object/index.mjs +18 -0
  554. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/auth/v1beta1/auth.mjs +249 -0
  555. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/auth/v1beta1/query.mjs +872 -0
  556. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/authz/v1beta1/authz.mjs +219 -0
  557. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/authz/v1beta1/query.mjs +339 -0
  558. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/authz/v1beta1/tx.mjs +305 -0
  559. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/bank/v1beta1/bank.mjs +394 -0
  560. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/bank/v1beta1/query.mjs +1081 -0
  561. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/bank/v1beta1/tx.mjs +383 -0
  562. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/base/abci/v1beta1/abci.mjs +599 -0
  563. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/base/query/v1beta1/pagination.mjs +138 -0
  564. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/base/v1beta1/coin.mjs +203 -0
  565. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/crypto/ed25519/keys.mjs +113 -0
  566. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/crypto/multisig/keys.mjs +83 -0
  567. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/crypto/multisig/v1beta1/multisig.mjs +120 -0
  568. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/crypto/secp256k1/keys.mjs +113 -0
  569. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/distribution/v1beta1/distribution.mjs +611 -0
  570. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/distribution/v1beta1/query.mjs +922 -0
  571. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/distribution/v1beta1/tx.mjs +548 -0
  572. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/feegrant/v1beta1/feegrant.mjs +249 -0
  573. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/feegrant/v1beta1/query.mjs +322 -0
  574. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/feegrant/v1beta1/tx.mjs +204 -0
  575. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/gov/v1beta1/gov.mjs +612 -0
  576. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/gov/v1beta1/query.mjs +779 -0
  577. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/gov/v1beta1/tx.mjs +401 -0
  578. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/ics23/v1/proofs.mjs +848 -0
  579. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/mint/v1beta1/mint.mjs +143 -0
  580. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/mint/v1beta1/query.mjs +264 -0
  581. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/slashing/v1beta1/query.mjs +293 -0
  582. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/slashing/v1beta1/slashing.mjs +162 -0
  583. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/staking/v1beta1/query.mjs +1308 -0
  584. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/staking/v1beta1/staking.mjs +1233 -0
  585. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/staking/v1beta1/tx.mjs +688 -0
  586. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/tx/signing/v1beta1/signing.mjs +316 -0
  587. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/tx/v1beta1/service.mjs +963 -0
  588. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/tx/v1beta1/tx.mjs +726 -0
  589. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/upgrade/v1beta1/upgrade.mjs +235 -0
  590. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/vesting/v1beta1/tx.mjs +320 -0
  591. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/cosmos/vesting/v1beta1/vesting.mjs +328 -0
  592. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/google/protobuf/any.mjs +78 -0
  593. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/google/protobuf/duration.mjs +78 -0
  594. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/google/protobuf/timestamp.mjs +78 -0
  595. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/helpers.mjs +117 -0
  596. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/ibc/applications/transfer/v1/query.mjs +466 -0
  597. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/ibc/applications/transfer/v1/transfer.mjs +123 -0
  598. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/ibc/applications/transfer/v1/tx.mjs +160 -0
  599. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/ibc/core/channel/v1/channel.mjs +521 -0
  600. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/ibc/core/channel/v1/query.mjs +1422 -0
  601. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/ibc/core/channel/v1/tx.mjs +1086 -0
  602. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/ibc/core/client/v1/client.mjs +370 -0
  603. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/ibc/core/client/v1/query.mjs +840 -0
  604. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/ibc/core/client/v1/tx.mjs +394 -0
  605. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/ibc/core/commitment/v1/commitment.mjs +199 -0
  606. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/ibc/core/connection/v1/connection.mjs +433 -0
  607. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/ibc/core/connection/v1/query.mjs +611 -0
  608. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/ibc/core/connection/v1/tx.mjs +491 -0
  609. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/ibc/lightclients/tendermint/v1/tendermint.mjs +340 -0
  610. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/tendermint/abci/types.mjs +2787 -0
  611. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/tendermint/crypto/keys.mjs +78 -0
  612. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/tendermint/crypto/proof.mjs +276 -0
  613. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/tendermint/types/block.mjs +92 -0
  614. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/tendermint/types/evidence.mjs +247 -0
  615. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/tendermint/types/params.mjs +310 -0
  616. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/tendermint/types/types.mjs +861 -0
  617. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/tendermint/types/validator.mjs +185 -0
  618. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cosmjs-types/tendermint/version/types.mjs +123 -0
  619. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/cross-fetch/dist/browser-ponyfill.mjs +277 -0
  620. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/debug/node_modules/ms/index.mjs +86 -0
  621. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/debug/src/browser.mjs +139 -0
  622. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/debug/src/common.mjs +86 -0
  623. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/define-data-property/index.mjs +33 -0
  624. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/define-properties/index.mjs +25 -0
  625. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ejs/lib/ejs.mjs +310 -0
  626. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ejs/lib/utils.mjs +86 -0
  627. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ejs/package.json.mjs +62 -0
  628. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/elliptic/lib/elliptic/curve/base.mjs +201 -0
  629. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/elliptic/lib/elliptic/curve/edwards.mjs +145 -0
  630. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/elliptic/lib/elliptic/curve/index.mjs +9 -0
  631. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/elliptic/lib/elliptic/curve/mont.mjs +78 -0
  632. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/elliptic/lib/elliptic/curve/short.mjs +392 -0
  633. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/elliptic/lib/elliptic/curves.mjs +158 -0
  634. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/elliptic/lib/elliptic/ec/index.mjs +107 -0
  635. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/elliptic/lib/elliptic/ec/key.mjs +55 -0
  636. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/elliptic/lib/elliptic/ec/signature.mjs +81 -0
  637. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/elliptic/lib/elliptic/eddsa/index.mjs +60 -0
  638. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/elliptic/lib/elliptic/eddsa/key.mjs +50 -0
  639. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/elliptic/lib/elliptic/eddsa/signature.mjs +32 -0
  640. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/elliptic/lib/elliptic/precomputed/secp256k1.mjs +786 -0
  641. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/elliptic/lib/elliptic/utils.mjs +53 -0
  642. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/elliptic/lib/elliptic.mjs +15 -0
  643. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/elliptic/node_modules/bn.js/lib/bn.mjs +1186 -0
  644. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/elliptic/package.json.mjs +73 -0
  645. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/engine.io-client/build/cjs/contrib/has-cors.mjs +12 -0
  646. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/engine.io-client/build/cjs/contrib/parseqs.mjs +22 -0
  647. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/engine.io-client/build/cjs/contrib/parseuri.mjs +43 -0
  648. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/engine.io-client/build/cjs/contrib/yeast.mjs +30 -0
  649. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/engine.io-client/build/cjs/globalThis.browser.mjs +7 -0
  650. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/engine.io-client/build/cjs/index.mjs +42 -0
  651. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/engine.io-client/build/cjs/socket.mjs +338 -0
  652. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/engine.io-client/build/cjs/transport.mjs +124 -0
  653. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/engine.io-client/build/cjs/transports/index.mjs +18 -0
  654. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/engine.io-client/build/cjs/transports/polling.mjs +284 -0
  655. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/engine.io-client/build/cjs/transports/websocket-constructor.browser.mjs +13 -0
  656. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/engine.io-client/build/cjs/transports/websocket.mjs +102 -0
  657. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/engine.io-client/build/cjs/transports/webtransport.mjs +65 -0
  658. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/engine.io-client/build/cjs/transports/xmlhttprequest.browser.mjs +28 -0
  659. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/engine.io-client/build/cjs/util.mjs +29 -0
  660. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/engine.io-parser/build/cjs/commons.mjs +22 -0
  661. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/engine.io-parser/build/cjs/contrib/base64-arraybuffer.mjs +25 -0
  662. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/engine.io-parser/build/cjs/decodePacket.browser.mjs +43 -0
  663. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/engine.io-parser/build/cjs/encodePacket.browser.mjs +31 -0
  664. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/engine.io-parser/build/cjs/index.mjs +115 -0
  665. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/es-define-property/index.mjs +12 -0
  666. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/es-errors/eval.mjs +4 -0
  667. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/es-errors/index.mjs +4 -0
  668. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/es-errors/range.mjs +4 -0
  669. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/es-errors/ref.mjs +4 -0
  670. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/es-errors/syntax.mjs +4 -0
  671. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/es-errors/type.mjs +4 -0
  672. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/es-errors/uri.mjs +4 -0
  673. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ethers/lib/utils.mjs +285 -0
  674. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ethers/lib.esm/_version.mjs +4 -0
  675. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ethers/lib.esm/ethers.mjs +34 -0
  676. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ethers/lib.esm/index.mjs +40 -0
  677. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ethers/lib.esm/utils.mjs +132 -0
  678. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/events/events.mjs +229 -0
  679. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/fastfile/src/bigmemfile.mjs +111 -0
  680. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/fastfile/src/fastfile.mjs +47 -0
  681. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/fastfile/src/memfile.mjs +89 -0
  682. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/fastfile/src/osfile.mjs +229 -0
  683. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ffjavascript/main.mjs +12 -0
  684. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ffjavascript/src/bigbuffer.mjs +40 -0
  685. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ffjavascript/src/bls12381.mjs +29 -0
  686. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ffjavascript/src/bn128.mjs +28 -0
  687. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ffjavascript/src/chacha.mjs +50 -0
  688. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ffjavascript/src/curves.mjs +7 -0
  689. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ffjavascript/src/engine.mjs +27 -0
  690. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ffjavascript/src/engine_applykey.mjs +58 -0
  691. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ffjavascript/src/engine_batchconvert.mjs +37 -0
  692. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ffjavascript/src/engine_fft.mjs +307 -0
  693. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ffjavascript/src/engine_multiexp.mjs +122 -0
  694. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ffjavascript/src/engine_pairing.mjs +70 -0
  695. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ffjavascript/src/f1field.mjs +230 -0
  696. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ffjavascript/src/fft.mjs +65 -0
  697. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ffjavascript/src/fsqrt.mjs +103 -0
  698. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ffjavascript/src/futils.mjs +15 -0
  699. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ffjavascript/src/random.mjs +29 -0
  700. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ffjavascript/src/scalar.mjs +216 -0
  701. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ffjavascript/src/threadman.mjs +124 -0
  702. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ffjavascript/src/threadman_thread.mjs +87 -0
  703. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ffjavascript/src/utils.mjs +154 -0
  704. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ffjavascript/src/wasm_curve.mjs +234 -0
  705. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ffjavascript/src/wasm_field1.mjs +171 -0
  706. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ffjavascript/src/wasm_field2.mjs +104 -0
  707. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ffjavascript/src/wasm_field3.mjs +104 -0
  708. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/for-each/index.mjs +19 -0
  709. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/function-bind/implementation.mjs +42 -0
  710. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/function-bind/index.mjs +5 -0
  711. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/get-intrinsic/index.mjs +240 -0
  712. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/globalthis/implementation.browser.mjs +6 -0
  713. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/globalthis/index.mjs +16 -0
  714. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/globalthis/polyfill.mjs +8 -0
  715. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/globalthis/shim.mjs +19 -0
  716. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/gopd/index.mjs +12 -0
  717. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/has-property-descriptors/index.mjs +17 -0
  718. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/has-proto/index.mjs +9 -0
  719. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/has-symbols/index.mjs +7 -0
  720. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/has-symbols/shams.mjs +27 -0
  721. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/has-tostringtag/shams.mjs +7 -0
  722. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/hash.js/lib/hash/common.mjs +39 -0
  723. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/hash.js/lib/hash/hmac.mjs +29 -0
  724. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/hash.js/lib/hash/ripemd.mjs +376 -0
  725. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/hash.js/lib/hash/sha/1.mjs +47 -0
  726. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/hash.js/lib/hash/sha/224.mjs +30 -0
  727. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/hash.js/lib/hash/sha/256.mjs +111 -0
  728. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/hash.js/lib/hash/sha/384.mjs +38 -0
  729. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/hash.js/lib/hash/sha/512.mjs +309 -0
  730. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/hash.js/lib/hash/sha/common.mjs +44 -0
  731. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/hash.js/lib/hash/sha.mjs +14 -0
  732. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/hash.js/lib/hash/utils.mjs +160 -0
  733. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/hash.js/lib/hash.mjs +19 -0
  734. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/hasown/index.mjs +5 -0
  735. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/hmac-drbg/lib/hmac-drbg.mjs +49 -0
  736. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/hoopy/index.mjs +48 -0
  737. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ieee754/index.mjs +28 -0
  738. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/inherits/inherits_browser.mjs +22 -0
  739. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/is-arguments/index.mjs +14 -0
  740. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/is-callable/index.mjs +70 -0
  741. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/is-generator-function/index.mjs +28 -0
  742. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/is-nan/implementation.mjs +9 -0
  743. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/is-nan/index.mjs +20 -0
  744. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/is-nan/polyfill.mjs +14 -0
  745. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/is-nan/shim.mjs +20 -0
  746. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/is-typed-array/index.mjs +7 -0
  747. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/isobject/index.mjs +12 -0
  748. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/isomorphic-ws/browser.mjs +7 -0
  749. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/js-sha3/src/sha3.mjs +271 -0
  750. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/jsonpath/jsonpath.mjs +3171 -0
  751. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/kind-of/index.mjs +113 -0
  752. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/libsodium/dist/modules/libsodium.mjs +2748 -0
  753. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/libsodium-sumo/dist/modules-sumo/libsodium-sumo.mjs +4588 -0
  754. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/libsodium-wrappers/dist/modules/libsodium-wrappers.mjs +2585 -0
  755. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/libsodium-wrappers-sumo/dist/modules-sumo/libsodium-wrappers.mjs +2581 -0
  756. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/long/src/long.mjs +673 -0
  757. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/minimalistic-assert/index.mjs +12 -0
  758. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/minimalistic-crypto-utils/lib/utils.mjs +39 -0
  759. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/nanoassert/index.mjs +13 -0
  760. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/object-is/implementation.mjs +8 -0
  761. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/object-is/index.mjs +20 -0
  762. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/object-is/polyfill.mjs +7 -0
  763. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/object-is/shim.mjs +20 -0
  764. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/object-keys/implementation.mjs +93 -0
  765. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/object-keys/index.mjs +22 -0
  766. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/object-keys/isArguments.mjs +7 -0
  767. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/object.assign/implementation.mjs +29 -0
  768. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/object.assign/polyfill.mjs +26 -0
  769. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/possible-typed-array-names/index.mjs +16 -0
  770. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/protobufjs/minimal.mjs +6 -0
  771. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/protobufjs/src/index-minimal.mjs +17 -0
  772. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/protobufjs/src/reader.mjs +179 -0
  773. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/protobufjs/src/reader_buffer.mjs +19 -0
  774. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/protobufjs/src/roots.mjs +4 -0
  775. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/protobufjs/src/rpc/service.mjs +56 -0
  776. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/protobufjs/src/rpc.mjs +6 -0
  777. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/protobufjs/src/util/longbits.mjs +75 -0
  778. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/protobufjs/src/util/minimal.mjs +118 -0
  779. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/protobufjs/src/writer.mjs +133 -0
  780. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/protobufjs/src/writer_buffer.mjs +35 -0
  781. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/readable-stream/errors-browser.mjs +72 -0
  782. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/readable-stream/lib/_stream_duplex.mjs +73 -0
  783. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/readable-stream/lib/_stream_passthrough.mjs +15 -0
  784. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/readable-stream/lib/_stream_readable.mjs +366 -0
  785. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/readable-stream/lib/_stream_transform.mjs +68 -0
  786. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/readable-stream/lib/_stream_writable.mjs +246 -0
  787. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/readable-stream/lib/internal/streams/async_iterator.mjs +133 -0
  788. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/readable-stream/lib/internal/streams/buffer_list.mjs +177 -0
  789. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/readable-stream/lib/internal/streams/destroy.mjs +30 -0
  790. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/readable-stream/lib/internal/streams/end-of-stream.mjs +48 -0
  791. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/readable-stream/lib/internal/streams/from-browser.mjs +9 -0
  792. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/readable-stream/lib/internal/streams/pipeline.mjs +69 -0
  793. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/readable-stream/lib/internal/streams/state.mjs +23 -0
  794. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/readable-stream/lib/internal/streams/stream-browser.mjs +5 -0
  795. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/readable-stream/readable-browser.mjs +15 -0
  796. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/safe-buffer/index.mjs +39 -0
  797. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/scrypt-js/scrypt.mjs +298 -0
  798. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/set-function-length/index.mjs +32 -0
  799. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/shallow-clone/index.mjs +66 -0
  800. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/snarkjs/src/curves.mjs +19 -0
  801. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/snarkjs/src/fflonk.mjs +4 -0
  802. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/snarkjs/src/groth16_exportsoliditycalldata.mjs +19 -0
  803. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/snarkjs/src/groth16_fullprove.mjs +13 -0
  804. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/snarkjs/src/groth16_prove.mjs +96 -0
  805. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/snarkjs/src/misc.mjs +12 -0
  806. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/snarkjs/src/r1cs_info.mjs +6 -0
  807. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/snarkjs/src/wtns_calculate.mjs +21 -0
  808. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/snarkjs/src/wtns_utils.mjs +18 -0
  809. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/snarkjs/src/zkey_constants.mjs +6 -0
  810. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/snarkjs/src/zkey_utils.mjs +56 -0
  811. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/socket.io-client/build/cjs/contrib/backo2.mjs +30 -0
  812. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/socket.io-client/build/cjs/index.mjs +46 -0
  813. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/socket.io-client/build/cjs/manager.mjs +273 -0
  814. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/socket.io-client/build/cjs/on.mjs +12 -0
  815. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/socket.io-client/build/cjs/socket.mjs +627 -0
  816. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/socket.io-client/build/cjs/url.mjs +21 -0
  817. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/socket.io-parser/build/cjs/binary.mjs +52 -0
  818. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/socket.io-parser/build/cjs/index.mjs +207 -0
  819. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/socket.io-parser/build/cjs/is-binary.mjs +30 -0
  820. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/standard-error/index.mjs +14 -0
  821. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/standard-http-error/codes.json.mjs +66 -0
  822. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/standard-http-error/index.mjs +53 -0
  823. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/string-similarity-js/dist/string-similarity.mjs +18 -0
  824. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/string_decoder/lib/string_decoder.mjs +172 -0
  825. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/tryer/src/tryer.mjs +81 -0
  826. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/ua-parser-js/src/ua-parser.mjs +1168 -0
  827. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/util/support/isBufferBrowser.mjs +6 -0
  828. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/util/support/types.mjs +189 -0
  829. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/util/util.mjs +399 -0
  830. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/util-deprecate/browser.mjs +29 -0
  831. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/uuid/dist/esm-browser/native.mjs +6 -0
  832. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/uuid/dist/esm-browser/rng.mjs +10 -0
  833. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/uuid/dist/esm-browser/stringify.mjs +9 -0
  834. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/uuid/dist/esm-browser/v4.mjs +19 -0
  835. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/wasmbuilder/src/codebuilder.mjs +319 -0
  836. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/wasmbuilder/src/functionbuilder.mjs +73 -0
  837. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/wasmbuilder/src/modulebuilder.mjs +217 -0
  838. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/wasmbuilder/src/utils.mjs +100 -0
  839. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/wasmcurves/index.mjs +9 -0
  840. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/wasmcurves/src/bigint.mjs +106 -0
  841. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/wasmcurves/src/bls12381/build_bls12381.mjs +917 -0
  842. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/wasmcurves/src/bn128/build_bn128.mjs +836 -0
  843. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/wasmcurves/src/build_applykey.mjs +40 -0
  844. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/wasmcurves/src/build_batchconvertion.mjs +59 -0
  845. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/wasmcurves/src/build_batchinverse.mjs +111 -0
  846. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/wasmcurves/src/build_batchop.mjs +75 -0
  847. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/wasmcurves/src/build_curve_jacobian_a0.mjs +925 -0
  848. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/wasmcurves/src/build_f1.mjs +43 -0
  849. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/wasmcurves/src/build_f1m.mjs +680 -0
  850. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/wasmcurves/src/build_f2m.mjs +314 -0
  851. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/wasmcurves/src/build_f3m.mjs +273 -0
  852. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/wasmcurves/src/build_fft.mjs +1031 -0
  853. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/wasmcurves/src/build_int.mjs +730 -0
  854. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/wasmcurves/src/build_multiexp.mjs +395 -0
  855. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/wasmcurves/src/build_pol.mjs +97 -0
  856. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/wasmcurves/src/build_qap.mjs +274 -0
  857. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/wasmcurves/src/build_timesscalar.mjs +52 -0
  858. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/wasmcurves/src/build_timesscalarnaf.mjs +187 -0
  859. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/wasmcurves/src/utils.mjs +21 -0
  860. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/web-worker/browser.mjs +4 -0
  861. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/which-typed-array/index.mjs +71 -0
  862. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/xstream/index.mjs +765 -0
  863. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/xstream/node_modules/symbol-observable/lib/ponyfill.mjs +22 -0
  864. package/Users/nkoreli/Documents/GitHub/Hinkal-Protocol/node_modules/xstream/node_modules/symbol-observable/ponyfill.mjs +6 -0
  865. package/_virtual/AxelarAssetTransfer.mjs +4 -0
  866. package/_virtual/AxelarDepositRecoveryAPI.mjs +4 -0
  867. package/_virtual/AxelarGMPRecoveryAPI.mjs +4 -0
  868. package/_virtual/AxelarGateway.mjs +4 -0
  869. package/_virtual/AxelarQueryAPI.mjs +4 -0
  870. package/_virtual/AxelarRecoveryApi.mjs +4 -0
  871. package/_virtual/AxelarRpcClient.mjs +4 -0
  872. package/_virtual/AxelarTransferAPI.mjs +4 -0
  873. package/_virtual/AxelarnetTxTypes.mjs +4 -0
  874. package/_virtual/BigNumberUtils.mjs +4 -0
  875. package/_virtual/EvmChain.mjs +4 -0
  876. package/_virtual/EvmTxTypes.mjs +4 -0
  877. package/_virtual/GasToken.mjs +4 -0
  878. package/_virtual/GatewayTx.mjs +4 -0
  879. package/_virtual/IAxelarExecutable.mjs +4 -0
  880. package/_virtual/RestService.mjs +4 -0
  881. package/_virtual/SocketService.mjs +4 -0
  882. package/_virtual/___vite-browser-external.mjs +6 -0
  883. package/_virtual/__vite-browser-external.mjs +4 -0
  884. package/_virtual/_assert.mjs +4 -0
  885. package/_virtual/_assert2.mjs +4 -0
  886. package/_virtual/_commonjs-dynamic-modules.mjs +6 -0
  887. package/_virtual/_commonjsHelpers.mjs +30 -0
  888. package/_virtual/_md.mjs +4 -0
  889. package/_virtual/_md2.mjs +4 -0
  890. package/_virtual/_u64.mjs +4 -0
  891. package/_virtual/_u642.mjs +4 -0
  892. package/_virtual/abci.mjs +4 -0
  893. package/_virtual/accounts.mjs +4 -0
  894. package/_virtual/addresses.mjs +4 -0
  895. package/_virtual/addresses2.mjs +4 -0
  896. package/_virtual/aminomessages.mjs +4 -0
  897. package/_virtual/aminomessages10.mjs +4 -0
  898. package/_virtual/aminomessages11.mjs +4 -0
  899. package/_virtual/aminomessages2.mjs +4 -0
  900. package/_virtual/aminomessages3.mjs +4 -0
  901. package/_virtual/aminomessages4.mjs +4 -0
  902. package/_virtual/aminomessages5.mjs +4 -0
  903. package/_virtual/aminomessages6.mjs +4 -0
  904. package/_virtual/aminomessages7.mjs +4 -0
  905. package/_virtual/aminomessages8.mjs +4 -0
  906. package/_virtual/aminomessages9.mjs +4 -0
  907. package/_virtual/aminotypes.mjs +4 -0
  908. package/_virtual/any.mjs +4 -0
  909. package/_virtual/any2.mjs +4 -0
  910. package/_virtual/arrays.mjs +4 -0
  911. package/_virtual/ascii.mjs +4 -0
  912. package/_virtual/assert.mjs +2 -0
  913. package/_virtual/assert2.mjs +4 -0
  914. package/_virtual/assert3.mjs +4 -0
  915. package/_virtual/auth.mjs +4 -0
  916. package/_virtual/authz.mjs +4 -0
  917. package/_virtual/axelarHelper.mjs +4 -0
  918. package/_virtual/axios.mjs +4 -0
  919. package/_virtual/backo2.mjs +4 -0
  920. package/_virtual/bank.mjs +4 -0
  921. package/_virtual/base64-arraybuffer.mjs +4 -0
  922. package/_virtual/base64.mjs +4 -0
  923. package/_virtual/bech32.mjs +4 -0
  924. package/_virtual/bigint.mjs +4 -0
  925. package/_virtual/binary.mjs +4 -0
  926. package/_virtual/bip39.mjs +4 -0
  927. package/_virtual/bitmap.mjs +4 -0
  928. package/_virtual/block.mjs +4 -0
  929. package/_virtual/bn.mjs +4 -0
  930. package/_virtual/bn2.mjs +4 -0
  931. package/_virtual/browser-ponyfill.mjs +4 -0
  932. package/_virtual/browser.mjs +4 -0
  933. package/_virtual/browser2.mjs +4 -0
  934. package/_virtual/channel.mjs +4 -0
  935. package/_virtual/check-types.mjs +4 -0
  936. package/_virtual/client.mjs +4 -0
  937. package/_virtual/coin.mjs +4 -0
  938. package/_virtual/coin2.mjs +4 -0
  939. package/_virtual/coins.mjs +4 -0
  940. package/_virtual/coins2.mjs +4 -0
  941. package/_virtual/commitment.mjs +4 -0
  942. package/_virtual/common.mjs +4 -0
  943. package/_virtual/common2.mjs +4 -0
  944. package/_virtual/commons.mjs +4 -0
  945. package/_virtual/compatibility.mjs +4 -0
  946. package/_virtual/compress.mjs +4 -0
  947. package/_virtual/concat.mjs +4 -0
  948. package/_virtual/connection.mjs +4 -0
  949. package/_virtual/contractCallHelper.mjs +4 -0
  950. package/_virtual/contractEventHelper.mjs +4 -0
  951. package/_virtual/cosmos.mjs +4 -0
  952. package/_virtual/cosmosGasReceiverOptions.mjs +4 -0
  953. package/_virtual/crypto.mjs +4 -0
  954. package/_virtual/crypto2.mjs +4 -0
  955. package/_virtual/curves.mjs +4 -0
  956. package/_virtual/dates.mjs +4 -0
  957. package/_virtual/decimal.mjs +4 -0
  958. package/_virtual/decode.mjs +4 -0
  959. package/_virtual/decodePacket.browser.mjs +4 -0
  960. package/_virtual/defaultvalueproducer.mjs +4 -0
  961. package/_virtual/directsecp256k1hdwallet.mjs +4 -0
  962. package/_virtual/directsecp256k1wallet.mjs +4 -0
  963. package/_virtual/distribution.mjs +4 -0
  964. package/_virtual/dropduplicates.mjs +4 -0
  965. package/_virtual/duration.mjs +4 -0
  966. package/_virtual/duration2.mjs +4 -0
  967. package/_virtual/ejs.mjs +4 -0
  968. package/_virtual/elliptic.mjs +4 -0
  969. package/_virtual/encodePacket.browser.mjs +4 -0
  970. package/_virtual/encoding.mjs +4 -0
  971. package/_virtual/encodings.mjs +4 -0
  972. package/_virtual/encodings2.mjs +4 -0
  973. package/_virtual/error.mjs +4 -0
  974. package/_virtual/errors-browser.mjs +4 -0
  975. package/_virtual/errors.mjs +4 -0
  976. package/_virtual/events.mjs +4 -0
  977. package/_virtual/events2.mjs +4 -0
  978. package/_virtual/events3.mjs +4 -0
  979. package/_virtual/evidence.mjs +4 -0
  980. package/_virtual/fee.mjs +4 -0
  981. package/_virtual/feegrant.mjs +4 -0
  982. package/_virtual/getCommandId.mjs +4 -0
  983. package/_virtual/getL1Fee.mjs +4 -0
  984. package/_virtual/globalThis.browser.mjs +4 -0
  985. package/_virtual/gov.mjs +4 -0
  986. package/_virtual/has-cors.mjs +4 -0
  987. package/_virtual/hash.mjs +4 -0
  988. package/_virtual/hasher.mjs +4 -0
  989. package/_virtual/hasher2.mjs +4 -0
  990. package/_virtual/helpers.mjs +4 -0
  991. package/_virtual/hex.mjs +4 -0
  992. package/_virtual/hmac.mjs +4 -0
  993. package/_virtual/hmac2.mjs +4 -0
  994. package/_virtual/http.mjs +4 -0
  995. package/_virtual/httpbatchclient.mjs +4 -0
  996. package/_virtual/httpclient.mjs +4 -0
  997. package/_virtual/ics23.mjs +4 -0
  998. package/_virtual/id.mjs +4 -0
  999. package/_virtual/implementation.browser.mjs +4 -0
  1000. package/_virtual/index-minimal.mjs +4 -0
  1001. package/_virtual/index-minimal2.mjs +4 -0
  1002. package/_virtual/index.mjs +4 -0
  1003. package/_virtual/index10.mjs +4 -0
  1004. package/_virtual/index11.mjs +4 -0
  1005. package/_virtual/index12.mjs +4 -0
  1006. package/_virtual/index13.mjs +6 -0
  1007. package/_virtual/index14.mjs +6 -0
  1008. package/_virtual/index15.mjs +4 -0
  1009. package/_virtual/index16.mjs +4 -0
  1010. package/_virtual/index17.mjs +4 -0
  1011. package/_virtual/index18.mjs +4 -0
  1012. package/_virtual/index19.mjs +4 -0
  1013. package/_virtual/index2.mjs +4 -0
  1014. package/_virtual/index20.mjs +4 -0
  1015. package/_virtual/index21.mjs +6 -0
  1016. package/_virtual/index22.mjs +6 -0
  1017. package/_virtual/index23.mjs +6 -0
  1018. package/_virtual/index24.mjs +6 -0
  1019. package/_virtual/index25.mjs +6 -0
  1020. package/_virtual/index26.mjs +6 -0
  1021. package/_virtual/index27.mjs +6 -0
  1022. package/_virtual/index28.mjs +6 -0
  1023. package/_virtual/index29.mjs +6 -0
  1024. package/_virtual/index3.mjs +4 -0
  1025. package/_virtual/index30.mjs +6 -0
  1026. package/_virtual/index31.mjs +6 -0
  1027. package/_virtual/index32.mjs +6 -0
  1028. package/_virtual/index33.mjs +6 -0
  1029. package/_virtual/index34.mjs +6 -0
  1030. package/_virtual/index35.mjs +6 -0
  1031. package/_virtual/index36.mjs +6 -0
  1032. package/_virtual/index37.mjs +6 -0
  1033. package/_virtual/index38.mjs +6 -0
  1034. package/_virtual/index39.mjs +6 -0
  1035. package/_virtual/index4.mjs +4 -0
  1036. package/_virtual/index40.mjs +6 -0
  1037. package/_virtual/index41.mjs +6 -0
  1038. package/_virtual/index42.mjs +4 -0
  1039. package/_virtual/index43.mjs +4 -0
  1040. package/_virtual/index44.mjs +4 -0
  1041. package/_virtual/index45.mjs +4 -0
  1042. package/_virtual/index46.mjs +4 -0
  1043. package/_virtual/index47.mjs +4 -0
  1044. package/_virtual/index48.mjs +4 -0
  1045. package/_virtual/index49.mjs +4 -0
  1046. package/_virtual/index5.mjs +4 -0
  1047. package/_virtual/index50.mjs +4 -0
  1048. package/_virtual/index51.mjs +4 -0
  1049. package/_virtual/index52.mjs +4 -0
  1050. package/_virtual/index53.mjs +4 -0
  1051. package/_virtual/index54.mjs +4 -0
  1052. package/_virtual/index55.mjs +4 -0
  1053. package/_virtual/index56.mjs +4 -0
  1054. package/_virtual/index57.mjs +4 -0
  1055. package/_virtual/index58.mjs +4 -0
  1056. package/_virtual/index59.mjs +4 -0
  1057. package/_virtual/index6.mjs +4 -0
  1058. package/_virtual/index60.mjs +4 -0
  1059. package/_virtual/index61.mjs +4 -0
  1060. package/_virtual/index62.mjs +4 -0
  1061. package/_virtual/index63.mjs +4 -0
  1062. package/_virtual/index64.mjs +4 -0
  1063. package/_virtual/index65.mjs +4 -0
  1064. package/_virtual/index66.mjs +4 -0
  1065. package/_virtual/index67.mjs +4 -0
  1066. package/_virtual/index68.mjs +4 -0
  1067. package/_virtual/index69.mjs +4 -0
  1068. package/_virtual/index7.mjs +4 -0
  1069. package/_virtual/index70.mjs +4 -0
  1070. package/_virtual/index71.mjs +6 -0
  1071. package/_virtual/index72.mjs +4 -0
  1072. package/_virtual/index73.mjs +4 -0
  1073. package/_virtual/index74.mjs +4 -0
  1074. package/_virtual/index75.mjs +4 -0
  1075. package/_virtual/index76.mjs +4 -0
  1076. package/_virtual/index77.mjs +4 -0
  1077. package/_virtual/index78.mjs +4 -0
  1078. package/_virtual/index79.mjs +4 -0
  1079. package/_virtual/index8.mjs +4 -0
  1080. package/_virtual/index80.mjs +4 -0
  1081. package/_virtual/index81.mjs +4 -0
  1082. package/_virtual/index82.mjs +4 -0
  1083. package/_virtual/index83.mjs +4 -0
  1084. package/_virtual/index84.mjs +4 -0
  1085. package/_virtual/index9.mjs +4 -0
  1086. package/_virtual/inherits_browser.mjs +4 -0
  1087. package/_virtual/integers.mjs +4 -0
  1088. package/_virtual/inthelpers.mjs +4 -0
  1089. package/_virtual/is-binary.mjs +4 -0
  1090. package/_virtual/jsonpath.mjs +4 -0
  1091. package/_virtual/jsonrpc.mjs +4 -0
  1092. package/_virtual/jsonrpcclient.mjs +4 -0
  1093. package/_virtual/keccak.mjs +4 -0
  1094. package/_virtual/keys.mjs +4 -0
  1095. package/_virtual/keys2.mjs +4 -0
  1096. package/_virtual/keys3.mjs +4 -0
  1097. package/_virtual/keys4.mjs +4 -0
  1098. package/_virtual/libsodium-sumo.mjs +4 -0
  1099. package/_virtual/libsodium-wrappers.mjs +4 -0
  1100. package/_virtual/libsodium-wrappers2.mjs +4 -0
  1101. package/_virtual/libsodium.mjs +4 -0
  1102. package/_virtual/libsodium2.mjs +4 -0
  1103. package/_virtual/logs.mjs +4 -0
  1104. package/_virtual/mainnet.mjs +4 -0
  1105. package/_virtual/manager.mjs +4 -0
  1106. package/_virtual/mappers.mjs +4 -0
  1107. package/_virtual/messages.mjs +4 -0
  1108. package/_virtual/messages2.mjs +4 -0
  1109. package/_virtual/messages3.mjs +4 -0
  1110. package/_virtual/messages4.mjs +4 -0
  1111. package/_virtual/messages5.mjs +4 -0
  1112. package/_virtual/messages6.mjs +4 -0
  1113. package/_virtual/messages7.mjs +4 -0
  1114. package/_virtual/messages8.mjs +4 -0
  1115. package/_virtual/minimal.mjs +4 -0
  1116. package/_virtual/minimal2.mjs +4 -0
  1117. package/_virtual/mint.mjs +4 -0
  1118. package/_virtual/multisig.mjs +4 -0
  1119. package/_virtual/multisig2.mjs +4 -0
  1120. package/_virtual/multisignature.mjs +4 -0
  1121. package/_virtual/on.mjs +4 -0
  1122. package/_virtual/ops.mjs +4 -0
  1123. package/_virtual/pagination.mjs +4 -0
  1124. package/_virtual/pagination2.mjs +4 -0
  1125. package/_virtual/params.mjs +4 -0
  1126. package/_virtual/parse.mjs +4 -0
  1127. package/_virtual/parseqs.mjs +4 -0
  1128. package/_virtual/parseuri.mjs +4 -0
  1129. package/_virtual/paths.mjs +4 -0
  1130. package/_virtual/paths2.mjs +4 -0
  1131. package/_virtual/pbkdf2.mjs +4 -0
  1132. package/_virtual/pbkdf22.mjs +4 -0
  1133. package/_virtual/polling.mjs +4 -0
  1134. package/_virtual/ponyfill.mjs +4 -0
  1135. package/_virtual/promise.mjs +4 -0
  1136. package/_virtual/proof.mjs +4 -0
  1137. package/_virtual/proofs.mjs +4 -0
  1138. package/_virtual/proofs2.mjs +4 -0
  1139. package/_virtual/providerHelper.mjs +4 -0
  1140. package/_virtual/pubkey.mjs +4 -0
  1141. package/_virtual/pubkeys.mjs +4 -0
  1142. package/_virtual/queries.mjs +4 -0
  1143. package/_virtual/queries10.mjs +4 -0
  1144. package/_virtual/queries11.mjs +4 -0
  1145. package/_virtual/queries2.mjs +4 -0
  1146. package/_virtual/queries3.mjs +4 -0
  1147. package/_virtual/queries4.mjs +4 -0
  1148. package/_virtual/queries5.mjs +4 -0
  1149. package/_virtual/queries6.mjs +4 -0
  1150. package/_virtual/queries7.mjs +4 -0
  1151. package/_virtual/queries8.mjs +4 -0
  1152. package/_virtual/queries9.mjs +4 -0
  1153. package/_virtual/query.mjs +4 -0
  1154. package/_virtual/query10.mjs +4 -0
  1155. package/_virtual/query11.mjs +4 -0
  1156. package/_virtual/query12.mjs +4 -0
  1157. package/_virtual/query13.mjs +4 -0
  1158. package/_virtual/query14.mjs +4 -0
  1159. package/_virtual/query15.mjs +4 -0
  1160. package/_virtual/query16.mjs +4 -0
  1161. package/_virtual/query2.mjs +4 -0
  1162. package/_virtual/query3.mjs +4 -0
  1163. package/_virtual/query4.mjs +4 -0
  1164. package/_virtual/query5.mjs +4 -0
  1165. package/_virtual/query6.mjs +4 -0
  1166. package/_virtual/query7.mjs +4 -0
  1167. package/_virtual/query8.mjs +4 -0
  1168. package/_virtual/query9.mjs +4 -0
  1169. package/_virtual/queryclient.mjs +4 -0
  1170. package/_virtual/queueingstreamingsocket.mjs +4 -0
  1171. package/_virtual/random.mjs +4 -0
  1172. package/_virtual/readable-browser.mjs +4 -0
  1173. package/_virtual/reconnectingsocket.mjs +4 -0
  1174. package/_virtual/reducer.mjs +4 -0
  1175. package/_virtual/registry.mjs +4 -0
  1176. package/_virtual/requests.mjs +4 -0
  1177. package/_virtual/requests2.mjs +4 -0
  1178. package/_virtual/requests3.mjs +4 -0
  1179. package/_virtual/requests4.mjs +4 -0
  1180. package/_virtual/responses.mjs +4 -0
  1181. package/_virtual/responses2.mjs +4 -0
  1182. package/_virtual/responses3.mjs +4 -0
  1183. package/_virtual/responses4.mjs +4 -0
  1184. package/_virtual/retry.mjs +4 -0
  1185. package/_virtual/retryRpc.mjs +4 -0
  1186. package/_virtual/rfc3339.mjs +4 -0
  1187. package/_virtual/ripemd.mjs +4 -0
  1188. package/_virtual/ripemd160.mjs +4 -0
  1189. package/_virtual/ripemd1602.mjs +4 -0
  1190. package/_virtual/ripemd2.mjs +4 -0
  1191. package/_virtual/rpc.mjs +4 -0
  1192. package/_virtual/rpc2.mjs +4 -0
  1193. package/_virtual/rpcclient.mjs +4 -0
  1194. package/_virtual/s3.mjs +4 -0
  1195. package/_virtual/scrypt.mjs +4 -0
  1196. package/_virtual/secp256k1.mjs +4 -0
  1197. package/_virtual/secp256k1hdwallet.mjs +4 -0
  1198. package/_virtual/secp256k1signature.mjs +4 -0
  1199. package/_virtual/secp256k1wallet.mjs +4 -0
  1200. package/_virtual/service.mjs +4 -0
  1201. package/_virtual/service2.mjs +4 -0
  1202. package/_virtual/service3.mjs +4 -0
  1203. package/_virtual/service4.mjs +4 -0
  1204. package/_virtual/service5.mjs +4 -0
  1205. package/_virtual/sha.mjs +4 -0
  1206. package/_virtual/sha2.mjs +4 -0
  1207. package/_virtual/sha256.mjs +4 -0
  1208. package/_virtual/sha2562.mjs +4 -0
  1209. package/_virtual/sha3.mjs +4 -0
  1210. package/_virtual/sha32.mjs +4 -0
  1211. package/_virtual/sha512.mjs +4 -0
  1212. package/_virtual/sha5122.mjs +4 -0
  1213. package/_virtual/signature.mjs +4 -0
  1214. package/_virtual/signdoc.mjs +4 -0
  1215. package/_virtual/signer.mjs +4 -0
  1216. package/_virtual/signing.mjs +4 -0
  1217. package/_virtual/signing2.mjs +4 -0
  1218. package/_virtual/signingstargateclient.mjs +4 -0
  1219. package/_virtual/slashing.mjs +4 -0
  1220. package/_virtual/sleep.mjs +4 -0
  1221. package/_virtual/sleep2.mjs +4 -0
  1222. package/_virtual/slip10.mjs +4 -0
  1223. package/_virtual/socket.mjs +4 -0
  1224. package/_virtual/socket2.mjs +4 -0
  1225. package/_virtual/socketwrapper.mjs +4 -0
  1226. package/_virtual/specs.mjs +4 -0
  1227. package/_virtual/staking.mjs +4 -0
  1228. package/_virtual/stargateclient.mjs +4 -0
  1229. package/_virtual/stdtx.mjs +4 -0
  1230. package/_virtual/streamingsocket.mjs +4 -0
  1231. package/_virtual/string-similarity.mjs +4 -0
  1232. package/_virtual/string_decoder.mjs +4 -0
  1233. package/_virtual/supported-chains-list.mjs +4 -0
  1234. package/_virtual/tendermint.mjs +4 -0
  1235. package/_virtual/tendermint34client.mjs +4 -0
  1236. package/_virtual/tendermint37client.mjs +4 -0
  1237. package/_virtual/tendermintclient.mjs +4 -0
  1238. package/_virtual/testnet.mjs +4 -0
  1239. package/_virtual/threshold.mjs +4 -0
  1240. package/_virtual/timestamp.mjs +4 -0
  1241. package/_virtual/timestamp2.mjs +4 -0
  1242. package/_virtual/tofnd.mjs +4 -0
  1243. package/_virtual/transfer.mjs +4 -0
  1244. package/_virtual/transport.mjs +4 -0
  1245. package/_virtual/tryer.mjs +4 -0
  1246. package/_virtual/tx.mjs +4 -0
  1247. package/_virtual/tx10.mjs +4 -0
  1248. package/_virtual/tx11.mjs +4 -0
  1249. package/_virtual/tx12.mjs +4 -0
  1250. package/_virtual/tx13.mjs +4 -0
  1251. package/_virtual/tx14.mjs +4 -0
  1252. package/_virtual/tx15.mjs +4 -0
  1253. package/_virtual/tx16.mjs +4 -0
  1254. package/_virtual/tx2.mjs +4 -0
  1255. package/_virtual/tx3.mjs +4 -0
  1256. package/_virtual/tx4.mjs +4 -0
  1257. package/_virtual/tx5.mjs +4 -0
  1258. package/_virtual/tx6.mjs +4 -0
  1259. package/_virtual/tx7.mjs +4 -0
  1260. package/_virtual/tx8.mjs +4 -0
  1261. package/_virtual/tx9.mjs +4 -0
  1262. package/_virtual/typechecks.mjs +4 -0
  1263. package/_virtual/types.mjs +4 -0
  1264. package/_virtual/types10.mjs +4 -0
  1265. package/_virtual/types11.mjs +4 -0
  1266. package/_virtual/types12.mjs +4 -0
  1267. package/_virtual/types13.mjs +4 -0
  1268. package/_virtual/types14.mjs +4 -0
  1269. package/_virtual/types2.mjs +4 -0
  1270. package/_virtual/types3.mjs +4 -0
  1271. package/_virtual/types4.mjs +4 -0
  1272. package/_virtual/types5.mjs +4 -0
  1273. package/_virtual/types6.mjs +4 -0
  1274. package/_virtual/types7.mjs +4 -0
  1275. package/_virtual/types8.mjs +4 -0
  1276. package/_virtual/types9.mjs +4 -0
  1277. package/_virtual/ua-parser.mjs +4 -0
  1278. package/_virtual/upgrade.mjs +4 -0
  1279. package/_virtual/url.mjs +4 -0
  1280. package/_virtual/utf8.mjs +4 -0
  1281. package/_virtual/util.mjs +4 -0
  1282. package/_virtual/util2.mjs +4 -0
  1283. package/_virtual/utils.mjs +4 -0
  1284. package/_virtual/utils10.mjs +4 -0
  1285. package/_virtual/utils2.mjs +4 -0
  1286. package/_virtual/utils3.mjs +4 -0
  1287. package/_virtual/utils4.mjs +4 -0
  1288. package/_virtual/utils5.mjs +4 -0
  1289. package/_virtual/utils6.mjs +4 -0
  1290. package/_virtual/utils7.mjs +4 -0
  1291. package/_virtual/utils8.mjs +4 -0
  1292. package/_virtual/utils9.mjs +4 -0
  1293. package/_virtual/validateChain.mjs +4 -0
  1294. package/_virtual/validateDestinationAddress.mjs +4 -0
  1295. package/_virtual/validator.mjs +4 -0
  1296. package/_virtual/valueandupdates.mjs +4 -0
  1297. package/_virtual/vesting.mjs +4 -0
  1298. package/_virtual/wallet.mjs +4 -0
  1299. package/_virtual/wallet2.mjs +4 -0
  1300. package/_virtual/wallet3.mjs +4 -0
  1301. package/_virtual/websocket-constructor.browser.mjs +4 -0
  1302. package/_virtual/websocket.mjs +4 -0
  1303. package/_virtual/websocketclient.mjs +4 -0
  1304. package/_virtual/webtransport.mjs +4 -0
  1305. package/_virtual/xmlhttprequest.browser.mjs +4 -0
  1306. package/_virtual/yeast.mjs +4 -0
  1307. package/constants/axelar.constants.mjs +32 -31
  1308. package/constants/contracts.constants.mjs +84 -84
  1309. package/constants/fees.constants.mjs +29 -24
  1310. package/crypto/babyJub.mjs +15 -6
  1311. package/crypto/poseidon.mjs +24 -15
  1312. package/data-structures/Hinkal/Hinkal.mjs +30 -24
  1313. package/data-structures/Hinkal/hinkalActionBeefy.mjs +43 -36
  1314. package/data-structures/Hinkal/hinkalActionConvex.mjs +37 -30
  1315. package/data-structures/Hinkal/hinkalActionCurve.mjs +37 -30
  1316. package/data-structures/Hinkal/hinkalActionLidoEth.mjs +44 -37
  1317. package/data-structures/Hinkal/hinkalActionPendle.mjs +36 -29
  1318. package/data-structures/Hinkal/hinkalActionPendleLP.mjs +41 -34
  1319. package/data-structures/Hinkal/hinkalActionStake.mjs +23 -17
  1320. package/data-structures/Hinkal/hinkalActionVolatile.mjs +30 -24
  1321. package/data-structures/Hinkal/hinkalDeposit.mjs +23 -17
  1322. package/data-structures/Hinkal/hinkalGetZkMeProvider.mjs +15 -10
  1323. package/data-structures/Hinkal/hinkalPrivateWallet.mjs +18 -12
  1324. package/data-structures/Hinkal/hinkalSwap.mjs +32 -26
  1325. package/data-structures/Hinkal/hinkalWithdraw.mjs +19 -13
  1326. package/data-structures/Hinkal/resetMerkleTrees.mjs +19 -14
  1327. package/data-structures/MultiThreadedUtxoUtils/MultiThreadedUtxoUtils.mjs +16 -11
  1328. package/data-structures/crypto-keys/decodeUTXO.mjs +8 -8
  1329. package/data-structures/crypto-keys/encryptDecryptUtxo.mjs +32 -32
  1330. package/data-structures/crypto-keys/keys.mjs +26 -24
  1331. package/data-structures/event-service/AbstractAccessTokenSnapshotService.mjs +21 -16
  1332. package/data-structures/event-service/AbstractCommitmentsSnapshotService.mjs +14 -9
  1333. package/data-structures/event-service/AbstractEventService.mjs +22 -17
  1334. package/data-structures/merkle-tree/MerkleTree.mjs +15 -10
  1335. package/data-structures/snapshot/ClientAccessTokenSnapshotService.mjs +18 -13
  1336. package/data-structures/snapshot/ClientCommitmentsSnapshotService.mjs +15 -10
  1337. package/data-structures/snapshot/ClientNullifierSnapshotService.mjs +15 -10
  1338. package/data-structures/token-price-fetcher/TokenPriceFetcher.mjs +63 -55
  1339. package/data-structures/transactions-manager/TransactionsManager.mjs +91 -86
  1340. package/data-structures/transactions-manager/history/getBeefyData.mjs +24 -18
  1341. package/data-structures/transactions-manager/history/getConvexData.mjs +29 -23
  1342. package/data-structures/transactions-manager/history/getCurveData.mjs +41 -35
  1343. package/data-structures/transactions-manager/history/getDepositData.mjs +15 -10
  1344. package/data-structures/transactions-manager/history/getLidoData.mjs +26 -20
  1345. package/data-structures/transactions-manager/history/getPendleData.mjs +20 -15
  1346. package/data-structures/transactions-manager/history/getSwapData.mjs +15 -10
  1347. package/data-structures/transactions-manager/history/getTxDetails.mjs +29 -24
  1348. package/data-structures/transactions-manager/history/getVolatileData.mjs +14 -9
  1349. package/data-structures/transactions-manager/history/history.types.mjs +14 -9
  1350. package/data-structures/utxo/Utxo.mjs +22 -22
  1351. package/data-structures/volatile-helper/VolatileHelper.mjs +47 -38
  1352. package/error-handling/handleErrorRestore.mjs +13 -8
  1353. package/functions/kyc/authentoHelper.mjs +23 -18
  1354. package/functions/kyc/passportHelper.mjs +15 -10
  1355. package/functions/kyc/zkMeHelper.mjs +19 -19
  1356. package/functions/pre-transaction/getFlatFees.mjs +25 -20
  1357. package/functions/pre-transaction/outputUtxoProcessing.mjs +15 -10
  1358. package/functions/pre-transaction/process-gas-estimates.mjs +15 -10
  1359. package/functions/pre-transaction/processAmountChanges.mjs +99 -94
  1360. package/functions/private-wallet/emporium.helpers.mjs +13 -11
  1361. package/functions/private-wallet/opProducer.mjs +5 -5
  1362. package/functions/protocols/convex.protocols.mjs +15 -10
  1363. package/functions/protocols/curve.protocols.mjs +15 -10
  1364. package/functions/protocols/pendle.helpers.mjs +26 -21
  1365. package/functions/snarkjs/common.snarkjs.mjs +44 -43
  1366. package/functions/snarkjs/constant.mjs +17 -12
  1367. package/functions/snarkjs/constructGeneralZkProof.mjs +39 -34
  1368. package/functions/snarkjs/generateCircomData.mjs +23 -18
  1369. package/functions/snarkjs/getZKFiles.mjs +16 -11
  1370. package/functions/staking/index.mjs +33 -24
  1371. package/functions/utils/axelar.utils.mjs +15 -10
  1372. package/functions/utils/cacheFunctions.mjs +19 -14
  1373. package/functions/utils/create-provider.mjs +2 -2
  1374. package/functions/utils/evmNetworkFunctions.mjs +16 -11
  1375. package/functions/utils/external-action.utils.mjs +19 -17
  1376. package/functions/utils/getDataFromTransaction.mjs +44 -38
  1377. package/functions/utils/userAgent.mjs +3 -3
  1378. package/functions/utils/volatile-patcher.utils.mjs +15 -10
  1379. package/functions/web3/etherFunctions.mjs +30 -28
  1380. package/functions/web3/events/getShieldedBalance.mjs +31 -25
  1381. package/functions/web3/functionCalls/accessTokenCalls.mjs +26 -21
  1382. package/functions/web3/functionCalls/approveToken.mjs +52 -45
  1383. package/functions/web3/functionCalls/transactCallDirect.mjs +15 -10
  1384. package/functions/web3/functionCalls/transactCallRelayer.mjs +14 -9
  1385. package/functions/web3/odosAPI.mjs +19 -14
  1386. package/functions/web3/oneInchAPI.mjs +21 -16
  1387. package/functions/web3/runContractFunction.mjs +15 -10
  1388. package/functions/web3/uniswapAPI.mjs +37 -31
  1389. package/package.json +1 -1
  1390. package/types/transactions.types.mjs +1 -1
  1391. package/webworker/performTaskWithWorker.mjs +18 -13
  1392. package/webworker/snarkjsWorker/snarkjsWorkerLogic.mjs +45 -22
@@ -0,0 +1,1473 @@
1
+ import { m as d } from "../../../../protobufjs/minimal.mjs";
2
+ var h = d, l = h.Reader, y = h.Writer, c = h.util, o = h.roots.default || (h.roots.default = {});
3
+ o.ics23 = function() {
4
+ var p = {};
5
+ return p.HashOp = function() {
6
+ var i = {}, r = Object.create(i);
7
+ return r[i[0] = "NO_HASH"] = 0, r[i[1] = "SHA256"] = 1, r[i[2] = "SHA512"] = 2, r[i[3] = "KECCAK"] = 3, r[i[4] = "RIPEMD160"] = 4, r[i[5] = "BITCOIN"] = 5, r[i[6] = "SHA512_256"] = 6, r;
8
+ }(), p.LengthOp = function() {
9
+ var i = {}, r = Object.create(i);
10
+ return r[i[0] = "NO_PREFIX"] = 0, r[i[1] = "VAR_PROTO"] = 1, r[i[2] = "VAR_RLP"] = 2, r[i[3] = "FIXED32_BIG"] = 3, r[i[4] = "FIXED32_LITTLE"] = 4, r[i[5] = "FIXED64_BIG"] = 5, r[i[6] = "FIXED64_LITTLE"] = 6, r[i[7] = "REQUIRE_32_BYTES"] = 7, r[i[8] = "REQUIRE_64_BYTES"] = 8, r;
11
+ }(), p.ExistenceProof = function() {
12
+ function i(r) {
13
+ if (this.path = [], r)
14
+ for (var e = Object.keys(r), t = 0; t < e.length; ++t)
15
+ r[e[t]] != null && (this[e[t]] = r[e[t]]);
16
+ }
17
+ return i.prototype.key = c.newBuffer([]), i.prototype.value = c.newBuffer([]), i.prototype.leaf = null, i.prototype.path = c.emptyArray, i.create = function(e) {
18
+ return new i(e);
19
+ }, i.encode = function(e, t) {
20
+ if (t || (t = y.create()), e.key != null && e.hasOwnProperty("key") && t.uint32(
21
+ /* id 1, wireType 2 =*/
22
+ 10
23
+ ).bytes(e.key), e.value != null && e.hasOwnProperty("value") && t.uint32(
24
+ /* id 2, wireType 2 =*/
25
+ 18
26
+ ).bytes(e.value), e.leaf != null && e.hasOwnProperty("leaf") && o.ics23.LeafOp.encode(e.leaf, t.uint32(
27
+ /* id 3, wireType 2 =*/
28
+ 26
29
+ ).fork()).ldelim(), e.path != null && e.path.length)
30
+ for (var n = 0; n < e.path.length; ++n)
31
+ o.ics23.InnerOp.encode(e.path[n], t.uint32(
32
+ /* id 4, wireType 2 =*/
33
+ 34
34
+ ).fork()).ldelim();
35
+ return t;
36
+ }, i.encodeDelimited = function(e, t) {
37
+ return this.encode(e, t).ldelim();
38
+ }, i.decode = function(e, t) {
39
+ e instanceof l || (e = l.create(e));
40
+ for (var n = t === void 0 ? e.len : e.pos + t, f = new o.ics23.ExistenceProof(); e.pos < n; ) {
41
+ var u = e.uint32();
42
+ switch (u >>> 3) {
43
+ case 1:
44
+ f.key = e.bytes();
45
+ break;
46
+ case 2:
47
+ f.value = e.bytes();
48
+ break;
49
+ case 3:
50
+ f.leaf = o.ics23.LeafOp.decode(e, e.uint32());
51
+ break;
52
+ case 4:
53
+ f.path && f.path.length || (f.path = []), f.path.push(o.ics23.InnerOp.decode(e, e.uint32()));
54
+ break;
55
+ default:
56
+ e.skipType(u & 7);
57
+ break;
58
+ }
59
+ }
60
+ return f;
61
+ }, i.decodeDelimited = function(e) {
62
+ return e instanceof l || (e = new l(e)), this.decode(e, e.uint32());
63
+ }, i.verify = function(e) {
64
+ if (typeof e != "object" || e === null)
65
+ return "object expected";
66
+ if (e.key != null && e.hasOwnProperty("key") && !(e.key && typeof e.key.length == "number" || c.isString(e.key)))
67
+ return "key: buffer expected";
68
+ if (e.value != null && e.hasOwnProperty("value") && !(e.value && typeof e.value.length == "number" || c.isString(e.value)))
69
+ return "value: buffer expected";
70
+ if (e.leaf != null && e.hasOwnProperty("leaf")) {
71
+ var t = o.ics23.LeafOp.verify(e.leaf);
72
+ if (t)
73
+ return "leaf." + t;
74
+ }
75
+ if (e.path != null && e.hasOwnProperty("path")) {
76
+ if (!Array.isArray(e.path))
77
+ return "path: array expected";
78
+ for (var n = 0; n < e.path.length; ++n) {
79
+ var t = o.ics23.InnerOp.verify(e.path[n]);
80
+ if (t)
81
+ return "path." + t;
82
+ }
83
+ }
84
+ return null;
85
+ }, i.fromObject = function(e) {
86
+ if (e instanceof o.ics23.ExistenceProof)
87
+ return e;
88
+ var t = new o.ics23.ExistenceProof();
89
+ if (e.key != null && (typeof e.key == "string" ? c.base64.decode(e.key, t.key = c.newBuffer(c.base64.length(e.key)), 0) : e.key.length && (t.key = e.key)), e.value != null && (typeof e.value == "string" ? c.base64.decode(e.value, t.value = c.newBuffer(c.base64.length(e.value)), 0) : e.value.length && (t.value = e.value)), e.leaf != null) {
90
+ if (typeof e.leaf != "object")
91
+ throw TypeError(".ics23.ExistenceProof.leaf: object expected");
92
+ t.leaf = o.ics23.LeafOp.fromObject(e.leaf);
93
+ }
94
+ if (e.path) {
95
+ if (!Array.isArray(e.path))
96
+ throw TypeError(".ics23.ExistenceProof.path: array expected");
97
+ t.path = [];
98
+ for (var n = 0; n < e.path.length; ++n) {
99
+ if (typeof e.path[n] != "object")
100
+ throw TypeError(".ics23.ExistenceProof.path: object expected");
101
+ t.path[n] = o.ics23.InnerOp.fromObject(e.path[n]);
102
+ }
103
+ }
104
+ return t;
105
+ }, i.toObject = function(e, t) {
106
+ t || (t = {});
107
+ var n = {};
108
+ if ((t.arrays || t.defaults) && (n.path = []), t.defaults && (t.bytes === String ? n.key = "" : (n.key = [], t.bytes !== Array && (n.key = c.newBuffer(n.key))), t.bytes === String ? n.value = "" : (n.value = [], t.bytes !== Array && (n.value = c.newBuffer(n.value))), n.leaf = null), e.key != null && e.hasOwnProperty("key") && (n.key = t.bytes === String ? c.base64.encode(e.key, 0, e.key.length) : t.bytes === Array ? Array.prototype.slice.call(e.key) : e.key), e.value != null && e.hasOwnProperty("value") && (n.value = t.bytes === String ? c.base64.encode(e.value, 0, e.value.length) : t.bytes === Array ? Array.prototype.slice.call(e.value) : e.value), e.leaf != null && e.hasOwnProperty("leaf") && (n.leaf = o.ics23.LeafOp.toObject(e.leaf, t)), e.path && e.path.length) {
109
+ n.path = [];
110
+ for (var f = 0; f < e.path.length; ++f)
111
+ n.path[f] = o.ics23.InnerOp.toObject(e.path[f], t);
112
+ }
113
+ return n;
114
+ }, i.prototype.toJSON = function() {
115
+ return this.constructor.toObject(this, h.util.toJSONOptions);
116
+ }, i;
117
+ }(), p.NonExistenceProof = function() {
118
+ function i(r) {
119
+ if (r)
120
+ for (var e = Object.keys(r), t = 0; t < e.length; ++t)
121
+ r[e[t]] != null && (this[e[t]] = r[e[t]]);
122
+ }
123
+ return i.prototype.key = c.newBuffer([]), i.prototype.left = null, i.prototype.right = null, i.create = function(e) {
124
+ return new i(e);
125
+ }, i.encode = function(e, t) {
126
+ return t || (t = y.create()), e.key != null && e.hasOwnProperty("key") && t.uint32(
127
+ /* id 1, wireType 2 =*/
128
+ 10
129
+ ).bytes(e.key), e.left != null && e.hasOwnProperty("left") && o.ics23.ExistenceProof.encode(e.left, t.uint32(
130
+ /* id 2, wireType 2 =*/
131
+ 18
132
+ ).fork()).ldelim(), e.right != null && e.hasOwnProperty("right") && o.ics23.ExistenceProof.encode(e.right, t.uint32(
133
+ /* id 3, wireType 2 =*/
134
+ 26
135
+ ).fork()).ldelim(), t;
136
+ }, i.encodeDelimited = function(e, t) {
137
+ return this.encode(e, t).ldelim();
138
+ }, i.decode = function(e, t) {
139
+ e instanceof l || (e = l.create(e));
140
+ for (var n = t === void 0 ? e.len : e.pos + t, f = new o.ics23.NonExistenceProof(); e.pos < n; ) {
141
+ var u = e.uint32();
142
+ switch (u >>> 3) {
143
+ case 1:
144
+ f.key = e.bytes();
145
+ break;
146
+ case 2:
147
+ f.left = o.ics23.ExistenceProof.decode(e, e.uint32());
148
+ break;
149
+ case 3:
150
+ f.right = o.ics23.ExistenceProof.decode(e, e.uint32());
151
+ break;
152
+ default:
153
+ e.skipType(u & 7);
154
+ break;
155
+ }
156
+ }
157
+ return f;
158
+ }, i.decodeDelimited = function(e) {
159
+ return e instanceof l || (e = new l(e)), this.decode(e, e.uint32());
160
+ }, i.verify = function(e) {
161
+ if (typeof e != "object" || e === null)
162
+ return "object expected";
163
+ if (e.key != null && e.hasOwnProperty("key") && !(e.key && typeof e.key.length == "number" || c.isString(e.key)))
164
+ return "key: buffer expected";
165
+ if (e.left != null && e.hasOwnProperty("left")) {
166
+ var t = o.ics23.ExistenceProof.verify(e.left);
167
+ if (t)
168
+ return "left." + t;
169
+ }
170
+ if (e.right != null && e.hasOwnProperty("right")) {
171
+ var t = o.ics23.ExistenceProof.verify(e.right);
172
+ if (t)
173
+ return "right." + t;
174
+ }
175
+ return null;
176
+ }, i.fromObject = function(e) {
177
+ if (e instanceof o.ics23.NonExistenceProof)
178
+ return e;
179
+ var t = new o.ics23.NonExistenceProof();
180
+ if (e.key != null && (typeof e.key == "string" ? c.base64.decode(e.key, t.key = c.newBuffer(c.base64.length(e.key)), 0) : e.key.length && (t.key = e.key)), e.left != null) {
181
+ if (typeof e.left != "object")
182
+ throw TypeError(".ics23.NonExistenceProof.left: object expected");
183
+ t.left = o.ics23.ExistenceProof.fromObject(e.left);
184
+ }
185
+ if (e.right != null) {
186
+ if (typeof e.right != "object")
187
+ throw TypeError(".ics23.NonExistenceProof.right: object expected");
188
+ t.right = o.ics23.ExistenceProof.fromObject(e.right);
189
+ }
190
+ return t;
191
+ }, i.toObject = function(e, t) {
192
+ t || (t = {});
193
+ var n = {};
194
+ return t.defaults && (t.bytes === String ? n.key = "" : (n.key = [], t.bytes !== Array && (n.key = c.newBuffer(n.key))), n.left = null, n.right = null), e.key != null && e.hasOwnProperty("key") && (n.key = t.bytes === String ? c.base64.encode(e.key, 0, e.key.length) : t.bytes === Array ? Array.prototype.slice.call(e.key) : e.key), e.left != null && e.hasOwnProperty("left") && (n.left = o.ics23.ExistenceProof.toObject(e.left, t)), e.right != null && e.hasOwnProperty("right") && (n.right = o.ics23.ExistenceProof.toObject(e.right, t)), n;
195
+ }, i.prototype.toJSON = function() {
196
+ return this.constructor.toObject(this, h.util.toJSONOptions);
197
+ }, i;
198
+ }(), p.CommitmentProof = function() {
199
+ function i(e) {
200
+ if (e)
201
+ for (var t = Object.keys(e), n = 0; n < t.length; ++n)
202
+ e[t[n]] != null && (this[t[n]] = e[t[n]]);
203
+ }
204
+ i.prototype.exist = null, i.prototype.nonexist = null, i.prototype.batch = null, i.prototype.compressed = null;
205
+ var r;
206
+ return Object.defineProperty(i.prototype, "proof", {
207
+ get: c.oneOfGetter(r = ["exist", "nonexist", "batch", "compressed"]),
208
+ set: c.oneOfSetter(r)
209
+ }), i.create = function(t) {
210
+ return new i(t);
211
+ }, i.encode = function(t, n) {
212
+ return n || (n = y.create()), t.exist != null && t.hasOwnProperty("exist") && o.ics23.ExistenceProof.encode(t.exist, n.uint32(
213
+ /* id 1, wireType 2 =*/
214
+ 10
215
+ ).fork()).ldelim(), t.nonexist != null && t.hasOwnProperty("nonexist") && o.ics23.NonExistenceProof.encode(t.nonexist, n.uint32(
216
+ /* id 2, wireType 2 =*/
217
+ 18
218
+ ).fork()).ldelim(), t.batch != null && t.hasOwnProperty("batch") && o.ics23.BatchProof.encode(t.batch, n.uint32(
219
+ /* id 3, wireType 2 =*/
220
+ 26
221
+ ).fork()).ldelim(), t.compressed != null && t.hasOwnProperty("compressed") && o.ics23.CompressedBatchProof.encode(t.compressed, n.uint32(
222
+ /* id 4, wireType 2 =*/
223
+ 34
224
+ ).fork()).ldelim(), n;
225
+ }, i.encodeDelimited = function(t, n) {
226
+ return this.encode(t, n).ldelim();
227
+ }, i.decode = function(t, n) {
228
+ t instanceof l || (t = l.create(t));
229
+ for (var f = n === void 0 ? t.len : t.pos + n, u = new o.ics23.CommitmentProof(); t.pos < f; ) {
230
+ var a = t.uint32();
231
+ switch (a >>> 3) {
232
+ case 1:
233
+ u.exist = o.ics23.ExistenceProof.decode(t, t.uint32());
234
+ break;
235
+ case 2:
236
+ u.nonexist = o.ics23.NonExistenceProof.decode(t, t.uint32());
237
+ break;
238
+ case 3:
239
+ u.batch = o.ics23.BatchProof.decode(t, t.uint32());
240
+ break;
241
+ case 4:
242
+ u.compressed = o.ics23.CompressedBatchProof.decode(t, t.uint32());
243
+ break;
244
+ default:
245
+ t.skipType(a & 7);
246
+ break;
247
+ }
248
+ }
249
+ return u;
250
+ }, i.decodeDelimited = function(t) {
251
+ return t instanceof l || (t = new l(t)), this.decode(t, t.uint32());
252
+ }, i.verify = function(t) {
253
+ if (typeof t != "object" || t === null)
254
+ return "object expected";
255
+ var n = {};
256
+ if (t.exist != null && t.hasOwnProperty("exist")) {
257
+ n.proof = 1;
258
+ {
259
+ var f = o.ics23.ExistenceProof.verify(t.exist);
260
+ if (f)
261
+ return "exist." + f;
262
+ }
263
+ }
264
+ if (t.nonexist != null && t.hasOwnProperty("nonexist")) {
265
+ if (n.proof === 1)
266
+ return "proof: multiple values";
267
+ n.proof = 1;
268
+ {
269
+ var f = o.ics23.NonExistenceProof.verify(t.nonexist);
270
+ if (f)
271
+ return "nonexist." + f;
272
+ }
273
+ }
274
+ if (t.batch != null && t.hasOwnProperty("batch")) {
275
+ if (n.proof === 1)
276
+ return "proof: multiple values";
277
+ n.proof = 1;
278
+ {
279
+ var f = o.ics23.BatchProof.verify(t.batch);
280
+ if (f)
281
+ return "batch." + f;
282
+ }
283
+ }
284
+ if (t.compressed != null && t.hasOwnProperty("compressed")) {
285
+ if (n.proof === 1)
286
+ return "proof: multiple values";
287
+ n.proof = 1;
288
+ {
289
+ var f = o.ics23.CompressedBatchProof.verify(t.compressed);
290
+ if (f)
291
+ return "compressed." + f;
292
+ }
293
+ }
294
+ return null;
295
+ }, i.fromObject = function(t) {
296
+ if (t instanceof o.ics23.CommitmentProof)
297
+ return t;
298
+ var n = new o.ics23.CommitmentProof();
299
+ if (t.exist != null) {
300
+ if (typeof t.exist != "object")
301
+ throw TypeError(".ics23.CommitmentProof.exist: object expected");
302
+ n.exist = o.ics23.ExistenceProof.fromObject(t.exist);
303
+ }
304
+ if (t.nonexist != null) {
305
+ if (typeof t.nonexist != "object")
306
+ throw TypeError(".ics23.CommitmentProof.nonexist: object expected");
307
+ n.nonexist = o.ics23.NonExistenceProof.fromObject(t.nonexist);
308
+ }
309
+ if (t.batch != null) {
310
+ if (typeof t.batch != "object")
311
+ throw TypeError(".ics23.CommitmentProof.batch: object expected");
312
+ n.batch = o.ics23.BatchProof.fromObject(t.batch);
313
+ }
314
+ if (t.compressed != null) {
315
+ if (typeof t.compressed != "object")
316
+ throw TypeError(".ics23.CommitmentProof.compressed: object expected");
317
+ n.compressed = o.ics23.CompressedBatchProof.fromObject(t.compressed);
318
+ }
319
+ return n;
320
+ }, i.toObject = function(t, n) {
321
+ n || (n = {});
322
+ var f = {};
323
+ return t.exist != null && t.hasOwnProperty("exist") && (f.exist = o.ics23.ExistenceProof.toObject(t.exist, n), n.oneofs && (f.proof = "exist")), t.nonexist != null && t.hasOwnProperty("nonexist") && (f.nonexist = o.ics23.NonExistenceProof.toObject(t.nonexist, n), n.oneofs && (f.proof = "nonexist")), t.batch != null && t.hasOwnProperty("batch") && (f.batch = o.ics23.BatchProof.toObject(t.batch, n), n.oneofs && (f.proof = "batch")), t.compressed != null && t.hasOwnProperty("compressed") && (f.compressed = o.ics23.CompressedBatchProof.toObject(t.compressed, n), n.oneofs && (f.proof = "compressed")), f;
324
+ }, i.prototype.toJSON = function() {
325
+ return this.constructor.toObject(this, h.util.toJSONOptions);
326
+ }, i;
327
+ }(), p.LeafOp = function() {
328
+ function i(r) {
329
+ if (r)
330
+ for (var e = Object.keys(r), t = 0; t < e.length; ++t)
331
+ r[e[t]] != null && (this[e[t]] = r[e[t]]);
332
+ }
333
+ return i.prototype.hash = 0, i.prototype.prehashKey = 0, i.prototype.prehashValue = 0, i.prototype.length = 0, i.prototype.prefix = c.newBuffer([]), i.create = function(e) {
334
+ return new i(e);
335
+ }, i.encode = function(e, t) {
336
+ return t || (t = y.create()), e.hash != null && e.hasOwnProperty("hash") && t.uint32(
337
+ /* id 1, wireType 0 =*/
338
+ 8
339
+ ).int32(e.hash), e.prehashKey != null && e.hasOwnProperty("prehashKey") && t.uint32(
340
+ /* id 2, wireType 0 =*/
341
+ 16
342
+ ).int32(e.prehashKey), e.prehashValue != null && e.hasOwnProperty("prehashValue") && t.uint32(
343
+ /* id 3, wireType 0 =*/
344
+ 24
345
+ ).int32(e.prehashValue), e.length != null && e.hasOwnProperty("length") && t.uint32(
346
+ /* id 4, wireType 0 =*/
347
+ 32
348
+ ).int32(e.length), e.prefix != null && e.hasOwnProperty("prefix") && t.uint32(
349
+ /* id 5, wireType 2 =*/
350
+ 42
351
+ ).bytes(e.prefix), t;
352
+ }, i.encodeDelimited = function(e, t) {
353
+ return this.encode(e, t).ldelim();
354
+ }, i.decode = function(e, t) {
355
+ e instanceof l || (e = l.create(e));
356
+ for (var n = t === void 0 ? e.len : e.pos + t, f = new o.ics23.LeafOp(); e.pos < n; ) {
357
+ var u = e.uint32();
358
+ switch (u >>> 3) {
359
+ case 1:
360
+ f.hash = e.int32();
361
+ break;
362
+ case 2:
363
+ f.prehashKey = e.int32();
364
+ break;
365
+ case 3:
366
+ f.prehashValue = e.int32();
367
+ break;
368
+ case 4:
369
+ f.length = e.int32();
370
+ break;
371
+ case 5:
372
+ f.prefix = e.bytes();
373
+ break;
374
+ default:
375
+ e.skipType(u & 7);
376
+ break;
377
+ }
378
+ }
379
+ return f;
380
+ }, i.decodeDelimited = function(e) {
381
+ return e instanceof l || (e = new l(e)), this.decode(e, e.uint32());
382
+ }, i.verify = function(e) {
383
+ if (typeof e != "object" || e === null)
384
+ return "object expected";
385
+ if (e.hash != null && e.hasOwnProperty("hash"))
386
+ switch (e.hash) {
387
+ default:
388
+ return "hash: enum value expected";
389
+ case 0:
390
+ case 1:
391
+ case 2:
392
+ case 3:
393
+ case 4:
394
+ case 5:
395
+ case 6:
396
+ break;
397
+ }
398
+ if (e.prehashKey != null && e.hasOwnProperty("prehashKey"))
399
+ switch (e.prehashKey) {
400
+ default:
401
+ return "prehashKey: enum value expected";
402
+ case 0:
403
+ case 1:
404
+ case 2:
405
+ case 3:
406
+ case 4:
407
+ case 5:
408
+ case 6:
409
+ break;
410
+ }
411
+ if (e.prehashValue != null && e.hasOwnProperty("prehashValue"))
412
+ switch (e.prehashValue) {
413
+ default:
414
+ return "prehashValue: enum value expected";
415
+ case 0:
416
+ case 1:
417
+ case 2:
418
+ case 3:
419
+ case 4:
420
+ case 5:
421
+ case 6:
422
+ break;
423
+ }
424
+ if (e.length != null && e.hasOwnProperty("length"))
425
+ switch (e.length) {
426
+ default:
427
+ return "length: enum value expected";
428
+ case 0:
429
+ case 1:
430
+ case 2:
431
+ case 3:
432
+ case 4:
433
+ case 5:
434
+ case 6:
435
+ case 7:
436
+ case 8:
437
+ break;
438
+ }
439
+ return e.prefix != null && e.hasOwnProperty("prefix") && !(e.prefix && typeof e.prefix.length == "number" || c.isString(e.prefix)) ? "prefix: buffer expected" : null;
440
+ }, i.fromObject = function(e) {
441
+ if (e instanceof o.ics23.LeafOp)
442
+ return e;
443
+ var t = new o.ics23.LeafOp();
444
+ switch (e.hash) {
445
+ case "NO_HASH":
446
+ case 0:
447
+ t.hash = 0;
448
+ break;
449
+ case "SHA256":
450
+ case 1:
451
+ t.hash = 1;
452
+ break;
453
+ case "SHA512":
454
+ case 2:
455
+ t.hash = 2;
456
+ break;
457
+ case "KECCAK":
458
+ case 3:
459
+ t.hash = 3;
460
+ break;
461
+ case "RIPEMD160":
462
+ case 4:
463
+ t.hash = 4;
464
+ break;
465
+ case "BITCOIN":
466
+ case 5:
467
+ t.hash = 5;
468
+ break;
469
+ case "SHA512_256":
470
+ case 6:
471
+ t.hash = 6;
472
+ break;
473
+ }
474
+ switch (e.prehashKey) {
475
+ case "NO_HASH":
476
+ case 0:
477
+ t.prehashKey = 0;
478
+ break;
479
+ case "SHA256":
480
+ case 1:
481
+ t.prehashKey = 1;
482
+ break;
483
+ case "SHA512":
484
+ case 2:
485
+ t.prehashKey = 2;
486
+ break;
487
+ case "KECCAK":
488
+ case 3:
489
+ t.prehashKey = 3;
490
+ break;
491
+ case "RIPEMD160":
492
+ case 4:
493
+ t.prehashKey = 4;
494
+ break;
495
+ case "BITCOIN":
496
+ case 5:
497
+ t.prehashKey = 5;
498
+ break;
499
+ case "SHA512_256":
500
+ case 6:
501
+ t.prehashKey = 6;
502
+ break;
503
+ }
504
+ switch (e.prehashValue) {
505
+ case "NO_HASH":
506
+ case 0:
507
+ t.prehashValue = 0;
508
+ break;
509
+ case "SHA256":
510
+ case 1:
511
+ t.prehashValue = 1;
512
+ break;
513
+ case "SHA512":
514
+ case 2:
515
+ t.prehashValue = 2;
516
+ break;
517
+ case "KECCAK":
518
+ case 3:
519
+ t.prehashValue = 3;
520
+ break;
521
+ case "RIPEMD160":
522
+ case 4:
523
+ t.prehashValue = 4;
524
+ break;
525
+ case "BITCOIN":
526
+ case 5:
527
+ t.prehashValue = 5;
528
+ break;
529
+ case "SHA512_256":
530
+ case 6:
531
+ t.prehashValue = 6;
532
+ break;
533
+ }
534
+ switch (e.length) {
535
+ case "NO_PREFIX":
536
+ case 0:
537
+ t.length = 0;
538
+ break;
539
+ case "VAR_PROTO":
540
+ case 1:
541
+ t.length = 1;
542
+ break;
543
+ case "VAR_RLP":
544
+ case 2:
545
+ t.length = 2;
546
+ break;
547
+ case "FIXED32_BIG":
548
+ case 3:
549
+ t.length = 3;
550
+ break;
551
+ case "FIXED32_LITTLE":
552
+ case 4:
553
+ t.length = 4;
554
+ break;
555
+ case "FIXED64_BIG":
556
+ case 5:
557
+ t.length = 5;
558
+ break;
559
+ case "FIXED64_LITTLE":
560
+ case 6:
561
+ t.length = 6;
562
+ break;
563
+ case "REQUIRE_32_BYTES":
564
+ case 7:
565
+ t.length = 7;
566
+ break;
567
+ case "REQUIRE_64_BYTES":
568
+ case 8:
569
+ t.length = 8;
570
+ break;
571
+ }
572
+ return e.prefix != null && (typeof e.prefix == "string" ? c.base64.decode(e.prefix, t.prefix = c.newBuffer(c.base64.length(e.prefix)), 0) : e.prefix.length && (t.prefix = e.prefix)), t;
573
+ }, i.toObject = function(e, t) {
574
+ t || (t = {});
575
+ var n = {};
576
+ return t.defaults && (n.hash = t.enums === String ? "NO_HASH" : 0, n.prehashKey = t.enums === String ? "NO_HASH" : 0, n.prehashValue = t.enums === String ? "NO_HASH" : 0, n.length = t.enums === String ? "NO_PREFIX" : 0, t.bytes === String ? n.prefix = "" : (n.prefix = [], t.bytes !== Array && (n.prefix = c.newBuffer(n.prefix)))), e.hash != null && e.hasOwnProperty("hash") && (n.hash = t.enums === String ? o.ics23.HashOp[e.hash] : e.hash), e.prehashKey != null && e.hasOwnProperty("prehashKey") && (n.prehashKey = t.enums === String ? o.ics23.HashOp[e.prehashKey] : e.prehashKey), e.prehashValue != null && e.hasOwnProperty("prehashValue") && (n.prehashValue = t.enums === String ? o.ics23.HashOp[e.prehashValue] : e.prehashValue), e.length != null && e.hasOwnProperty("length") && (n.length = t.enums === String ? o.ics23.LengthOp[e.length] : e.length), e.prefix != null && e.hasOwnProperty("prefix") && (n.prefix = t.bytes === String ? c.base64.encode(e.prefix, 0, e.prefix.length) : t.bytes === Array ? Array.prototype.slice.call(e.prefix) : e.prefix), n;
577
+ }, i.prototype.toJSON = function() {
578
+ return this.constructor.toObject(this, h.util.toJSONOptions);
579
+ }, i;
580
+ }(), p.InnerOp = function() {
581
+ function i(r) {
582
+ if (r)
583
+ for (var e = Object.keys(r), t = 0; t < e.length; ++t)
584
+ r[e[t]] != null && (this[e[t]] = r[e[t]]);
585
+ }
586
+ return i.prototype.hash = 0, i.prototype.prefix = c.newBuffer([]), i.prototype.suffix = c.newBuffer([]), i.create = function(e) {
587
+ return new i(e);
588
+ }, i.encode = function(e, t) {
589
+ return t || (t = y.create()), e.hash != null && e.hasOwnProperty("hash") && t.uint32(
590
+ /* id 1, wireType 0 =*/
591
+ 8
592
+ ).int32(e.hash), e.prefix != null && e.hasOwnProperty("prefix") && t.uint32(
593
+ /* id 2, wireType 2 =*/
594
+ 18
595
+ ).bytes(e.prefix), e.suffix != null && e.hasOwnProperty("suffix") && t.uint32(
596
+ /* id 3, wireType 2 =*/
597
+ 26
598
+ ).bytes(e.suffix), t;
599
+ }, i.encodeDelimited = function(e, t) {
600
+ return this.encode(e, t).ldelim();
601
+ }, i.decode = function(e, t) {
602
+ e instanceof l || (e = l.create(e));
603
+ for (var n = t === void 0 ? e.len : e.pos + t, f = new o.ics23.InnerOp(); e.pos < n; ) {
604
+ var u = e.uint32();
605
+ switch (u >>> 3) {
606
+ case 1:
607
+ f.hash = e.int32();
608
+ break;
609
+ case 2:
610
+ f.prefix = e.bytes();
611
+ break;
612
+ case 3:
613
+ f.suffix = e.bytes();
614
+ break;
615
+ default:
616
+ e.skipType(u & 7);
617
+ break;
618
+ }
619
+ }
620
+ return f;
621
+ }, i.decodeDelimited = function(e) {
622
+ return e instanceof l || (e = new l(e)), this.decode(e, e.uint32());
623
+ }, i.verify = function(e) {
624
+ if (typeof e != "object" || e === null)
625
+ return "object expected";
626
+ if (e.hash != null && e.hasOwnProperty("hash"))
627
+ switch (e.hash) {
628
+ default:
629
+ return "hash: enum value expected";
630
+ case 0:
631
+ case 1:
632
+ case 2:
633
+ case 3:
634
+ case 4:
635
+ case 5:
636
+ case 6:
637
+ break;
638
+ }
639
+ return e.prefix != null && e.hasOwnProperty("prefix") && !(e.prefix && typeof e.prefix.length == "number" || c.isString(e.prefix)) ? "prefix: buffer expected" : e.suffix != null && e.hasOwnProperty("suffix") && !(e.suffix && typeof e.suffix.length == "number" || c.isString(e.suffix)) ? "suffix: buffer expected" : null;
640
+ }, i.fromObject = function(e) {
641
+ if (e instanceof o.ics23.InnerOp)
642
+ return e;
643
+ var t = new o.ics23.InnerOp();
644
+ switch (e.hash) {
645
+ case "NO_HASH":
646
+ case 0:
647
+ t.hash = 0;
648
+ break;
649
+ case "SHA256":
650
+ case 1:
651
+ t.hash = 1;
652
+ break;
653
+ case "SHA512":
654
+ case 2:
655
+ t.hash = 2;
656
+ break;
657
+ case "KECCAK":
658
+ case 3:
659
+ t.hash = 3;
660
+ break;
661
+ case "RIPEMD160":
662
+ case 4:
663
+ t.hash = 4;
664
+ break;
665
+ case "BITCOIN":
666
+ case 5:
667
+ t.hash = 5;
668
+ break;
669
+ case "SHA512_256":
670
+ case 6:
671
+ t.hash = 6;
672
+ break;
673
+ }
674
+ return e.prefix != null && (typeof e.prefix == "string" ? c.base64.decode(e.prefix, t.prefix = c.newBuffer(c.base64.length(e.prefix)), 0) : e.prefix.length && (t.prefix = e.prefix)), e.suffix != null && (typeof e.suffix == "string" ? c.base64.decode(e.suffix, t.suffix = c.newBuffer(c.base64.length(e.suffix)), 0) : e.suffix.length && (t.suffix = e.suffix)), t;
675
+ }, i.toObject = function(e, t) {
676
+ t || (t = {});
677
+ var n = {};
678
+ return t.defaults && (n.hash = t.enums === String ? "NO_HASH" : 0, t.bytes === String ? n.prefix = "" : (n.prefix = [], t.bytes !== Array && (n.prefix = c.newBuffer(n.prefix))), t.bytes === String ? n.suffix = "" : (n.suffix = [], t.bytes !== Array && (n.suffix = c.newBuffer(n.suffix)))), e.hash != null && e.hasOwnProperty("hash") && (n.hash = t.enums === String ? o.ics23.HashOp[e.hash] : e.hash), e.prefix != null && e.hasOwnProperty("prefix") && (n.prefix = t.bytes === String ? c.base64.encode(e.prefix, 0, e.prefix.length) : t.bytes === Array ? Array.prototype.slice.call(e.prefix) : e.prefix), e.suffix != null && e.hasOwnProperty("suffix") && (n.suffix = t.bytes === String ? c.base64.encode(e.suffix, 0, e.suffix.length) : t.bytes === Array ? Array.prototype.slice.call(e.suffix) : e.suffix), n;
679
+ }, i.prototype.toJSON = function() {
680
+ return this.constructor.toObject(this, h.util.toJSONOptions);
681
+ }, i;
682
+ }(), p.ProofSpec = function() {
683
+ function i(r) {
684
+ if (r)
685
+ for (var e = Object.keys(r), t = 0; t < e.length; ++t)
686
+ r[e[t]] != null && (this[e[t]] = r[e[t]]);
687
+ }
688
+ return i.prototype.leafSpec = null, i.prototype.innerSpec = null, i.prototype.maxDepth = 0, i.prototype.minDepth = 0, i.create = function(e) {
689
+ return new i(e);
690
+ }, i.encode = function(e, t) {
691
+ return t || (t = y.create()), e.leafSpec != null && e.hasOwnProperty("leafSpec") && o.ics23.LeafOp.encode(e.leafSpec, t.uint32(
692
+ /* id 1, wireType 2 =*/
693
+ 10
694
+ ).fork()).ldelim(), e.innerSpec != null && e.hasOwnProperty("innerSpec") && o.ics23.InnerSpec.encode(e.innerSpec, t.uint32(
695
+ /* id 2, wireType 2 =*/
696
+ 18
697
+ ).fork()).ldelim(), e.maxDepth != null && e.hasOwnProperty("maxDepth") && t.uint32(
698
+ /* id 3, wireType 0 =*/
699
+ 24
700
+ ).int32(e.maxDepth), e.minDepth != null && e.hasOwnProperty("minDepth") && t.uint32(
701
+ /* id 4, wireType 0 =*/
702
+ 32
703
+ ).int32(e.minDepth), t;
704
+ }, i.encodeDelimited = function(e, t) {
705
+ return this.encode(e, t).ldelim();
706
+ }, i.decode = function(e, t) {
707
+ e instanceof l || (e = l.create(e));
708
+ for (var n = t === void 0 ? e.len : e.pos + t, f = new o.ics23.ProofSpec(); e.pos < n; ) {
709
+ var u = e.uint32();
710
+ switch (u >>> 3) {
711
+ case 1:
712
+ f.leafSpec = o.ics23.LeafOp.decode(e, e.uint32());
713
+ break;
714
+ case 2:
715
+ f.innerSpec = o.ics23.InnerSpec.decode(e, e.uint32());
716
+ break;
717
+ case 3:
718
+ f.maxDepth = e.int32();
719
+ break;
720
+ case 4:
721
+ f.minDepth = e.int32();
722
+ break;
723
+ default:
724
+ e.skipType(u & 7);
725
+ break;
726
+ }
727
+ }
728
+ return f;
729
+ }, i.decodeDelimited = function(e) {
730
+ return e instanceof l || (e = new l(e)), this.decode(e, e.uint32());
731
+ }, i.verify = function(e) {
732
+ if (typeof e != "object" || e === null)
733
+ return "object expected";
734
+ if (e.leafSpec != null && e.hasOwnProperty("leafSpec")) {
735
+ var t = o.ics23.LeafOp.verify(e.leafSpec);
736
+ if (t)
737
+ return "leafSpec." + t;
738
+ }
739
+ if (e.innerSpec != null && e.hasOwnProperty("innerSpec")) {
740
+ var t = o.ics23.InnerSpec.verify(e.innerSpec);
741
+ if (t)
742
+ return "innerSpec." + t;
743
+ }
744
+ return e.maxDepth != null && e.hasOwnProperty("maxDepth") && !c.isInteger(e.maxDepth) ? "maxDepth: integer expected" : e.minDepth != null && e.hasOwnProperty("minDepth") && !c.isInteger(e.minDepth) ? "minDepth: integer expected" : null;
745
+ }, i.fromObject = function(e) {
746
+ if (e instanceof o.ics23.ProofSpec)
747
+ return e;
748
+ var t = new o.ics23.ProofSpec();
749
+ if (e.leafSpec != null) {
750
+ if (typeof e.leafSpec != "object")
751
+ throw TypeError(".ics23.ProofSpec.leafSpec: object expected");
752
+ t.leafSpec = o.ics23.LeafOp.fromObject(e.leafSpec);
753
+ }
754
+ if (e.innerSpec != null) {
755
+ if (typeof e.innerSpec != "object")
756
+ throw TypeError(".ics23.ProofSpec.innerSpec: object expected");
757
+ t.innerSpec = o.ics23.InnerSpec.fromObject(e.innerSpec);
758
+ }
759
+ return e.maxDepth != null && (t.maxDepth = e.maxDepth | 0), e.minDepth != null && (t.minDepth = e.minDepth | 0), t;
760
+ }, i.toObject = function(e, t) {
761
+ t || (t = {});
762
+ var n = {};
763
+ return t.defaults && (n.leafSpec = null, n.innerSpec = null, n.maxDepth = 0, n.minDepth = 0), e.leafSpec != null && e.hasOwnProperty("leafSpec") && (n.leafSpec = o.ics23.LeafOp.toObject(e.leafSpec, t)), e.innerSpec != null && e.hasOwnProperty("innerSpec") && (n.innerSpec = o.ics23.InnerSpec.toObject(e.innerSpec, t)), e.maxDepth != null && e.hasOwnProperty("maxDepth") && (n.maxDepth = e.maxDepth), e.minDepth != null && e.hasOwnProperty("minDepth") && (n.minDepth = e.minDepth), n;
764
+ }, i.prototype.toJSON = function() {
765
+ return this.constructor.toObject(this, h.util.toJSONOptions);
766
+ }, i;
767
+ }(), p.InnerSpec = function() {
768
+ function i(r) {
769
+ if (this.childOrder = [], r)
770
+ for (var e = Object.keys(r), t = 0; t < e.length; ++t)
771
+ r[e[t]] != null && (this[e[t]] = r[e[t]]);
772
+ }
773
+ return i.prototype.childOrder = c.emptyArray, i.prototype.childSize = 0, i.prototype.minPrefixLength = 0, i.prototype.maxPrefixLength = 0, i.prototype.emptyChild = c.newBuffer([]), i.prototype.hash = 0, i.create = function(e) {
774
+ return new i(e);
775
+ }, i.encode = function(e, t) {
776
+ if (t || (t = y.create()), e.childOrder != null && e.childOrder.length) {
777
+ t.uint32(
778
+ /* id 1, wireType 2 =*/
779
+ 10
780
+ ).fork();
781
+ for (var n = 0; n < e.childOrder.length; ++n)
782
+ t.int32(e.childOrder[n]);
783
+ t.ldelim();
784
+ }
785
+ return e.childSize != null && e.hasOwnProperty("childSize") && t.uint32(
786
+ /* id 2, wireType 0 =*/
787
+ 16
788
+ ).int32(e.childSize), e.minPrefixLength != null && e.hasOwnProperty("minPrefixLength") && t.uint32(
789
+ /* id 3, wireType 0 =*/
790
+ 24
791
+ ).int32(e.minPrefixLength), e.maxPrefixLength != null && e.hasOwnProperty("maxPrefixLength") && t.uint32(
792
+ /* id 4, wireType 0 =*/
793
+ 32
794
+ ).int32(e.maxPrefixLength), e.emptyChild != null && e.hasOwnProperty("emptyChild") && t.uint32(
795
+ /* id 5, wireType 2 =*/
796
+ 42
797
+ ).bytes(e.emptyChild), e.hash != null && e.hasOwnProperty("hash") && t.uint32(
798
+ /* id 6, wireType 0 =*/
799
+ 48
800
+ ).int32(e.hash), t;
801
+ }, i.encodeDelimited = function(e, t) {
802
+ return this.encode(e, t).ldelim();
803
+ }, i.decode = function(e, t) {
804
+ e instanceof l || (e = l.create(e));
805
+ for (var n = t === void 0 ? e.len : e.pos + t, f = new o.ics23.InnerSpec(); e.pos < n; ) {
806
+ var u = e.uint32();
807
+ switch (u >>> 3) {
808
+ case 1:
809
+ if (f.childOrder && f.childOrder.length || (f.childOrder = []), (u & 7) === 2)
810
+ for (var a = e.uint32() + e.pos; e.pos < a; )
811
+ f.childOrder.push(e.int32());
812
+ else
813
+ f.childOrder.push(e.int32());
814
+ break;
815
+ case 2:
816
+ f.childSize = e.int32();
817
+ break;
818
+ case 3:
819
+ f.minPrefixLength = e.int32();
820
+ break;
821
+ case 4:
822
+ f.maxPrefixLength = e.int32();
823
+ break;
824
+ case 5:
825
+ f.emptyChild = e.bytes();
826
+ break;
827
+ case 6:
828
+ f.hash = e.int32();
829
+ break;
830
+ default:
831
+ e.skipType(u & 7);
832
+ break;
833
+ }
834
+ }
835
+ return f;
836
+ }, i.decodeDelimited = function(e) {
837
+ return e instanceof l || (e = new l(e)), this.decode(e, e.uint32());
838
+ }, i.verify = function(e) {
839
+ if (typeof e != "object" || e === null)
840
+ return "object expected";
841
+ if (e.childOrder != null && e.hasOwnProperty("childOrder")) {
842
+ if (!Array.isArray(e.childOrder))
843
+ return "childOrder: array expected";
844
+ for (var t = 0; t < e.childOrder.length; ++t)
845
+ if (!c.isInteger(e.childOrder[t]))
846
+ return "childOrder: integer[] expected";
847
+ }
848
+ if (e.childSize != null && e.hasOwnProperty("childSize") && !c.isInteger(e.childSize))
849
+ return "childSize: integer expected";
850
+ if (e.minPrefixLength != null && e.hasOwnProperty("minPrefixLength") && !c.isInteger(e.minPrefixLength))
851
+ return "minPrefixLength: integer expected";
852
+ if (e.maxPrefixLength != null && e.hasOwnProperty("maxPrefixLength") && !c.isInteger(e.maxPrefixLength))
853
+ return "maxPrefixLength: integer expected";
854
+ if (e.emptyChild != null && e.hasOwnProperty("emptyChild") && !(e.emptyChild && typeof e.emptyChild.length == "number" || c.isString(e.emptyChild)))
855
+ return "emptyChild: buffer expected";
856
+ if (e.hash != null && e.hasOwnProperty("hash"))
857
+ switch (e.hash) {
858
+ default:
859
+ return "hash: enum value expected";
860
+ case 0:
861
+ case 1:
862
+ case 2:
863
+ case 3:
864
+ case 4:
865
+ case 5:
866
+ case 6:
867
+ break;
868
+ }
869
+ return null;
870
+ }, i.fromObject = function(e) {
871
+ if (e instanceof o.ics23.InnerSpec)
872
+ return e;
873
+ var t = new o.ics23.InnerSpec();
874
+ if (e.childOrder) {
875
+ if (!Array.isArray(e.childOrder))
876
+ throw TypeError(".ics23.InnerSpec.childOrder: array expected");
877
+ t.childOrder = [];
878
+ for (var n = 0; n < e.childOrder.length; ++n)
879
+ t.childOrder[n] = e.childOrder[n] | 0;
880
+ }
881
+ switch (e.childSize != null && (t.childSize = e.childSize | 0), e.minPrefixLength != null && (t.minPrefixLength = e.minPrefixLength | 0), e.maxPrefixLength != null && (t.maxPrefixLength = e.maxPrefixLength | 0), e.emptyChild != null && (typeof e.emptyChild == "string" ? c.base64.decode(e.emptyChild, t.emptyChild = c.newBuffer(c.base64.length(e.emptyChild)), 0) : e.emptyChild.length && (t.emptyChild = e.emptyChild)), e.hash) {
882
+ case "NO_HASH":
883
+ case 0:
884
+ t.hash = 0;
885
+ break;
886
+ case "SHA256":
887
+ case 1:
888
+ t.hash = 1;
889
+ break;
890
+ case "SHA512":
891
+ case 2:
892
+ t.hash = 2;
893
+ break;
894
+ case "KECCAK":
895
+ case 3:
896
+ t.hash = 3;
897
+ break;
898
+ case "RIPEMD160":
899
+ case 4:
900
+ t.hash = 4;
901
+ break;
902
+ case "BITCOIN":
903
+ case 5:
904
+ t.hash = 5;
905
+ break;
906
+ case "SHA512_256":
907
+ case 6:
908
+ t.hash = 6;
909
+ break;
910
+ }
911
+ return t;
912
+ }, i.toObject = function(e, t) {
913
+ t || (t = {});
914
+ var n = {};
915
+ if ((t.arrays || t.defaults) && (n.childOrder = []), t.defaults && (n.childSize = 0, n.minPrefixLength = 0, n.maxPrefixLength = 0, t.bytes === String ? n.emptyChild = "" : (n.emptyChild = [], t.bytes !== Array && (n.emptyChild = c.newBuffer(n.emptyChild))), n.hash = t.enums === String ? "NO_HASH" : 0), e.childOrder && e.childOrder.length) {
916
+ n.childOrder = [];
917
+ for (var f = 0; f < e.childOrder.length; ++f)
918
+ n.childOrder[f] = e.childOrder[f];
919
+ }
920
+ return e.childSize != null && e.hasOwnProperty("childSize") && (n.childSize = e.childSize), e.minPrefixLength != null && e.hasOwnProperty("minPrefixLength") && (n.minPrefixLength = e.minPrefixLength), e.maxPrefixLength != null && e.hasOwnProperty("maxPrefixLength") && (n.maxPrefixLength = e.maxPrefixLength), e.emptyChild != null && e.hasOwnProperty("emptyChild") && (n.emptyChild = t.bytes === String ? c.base64.encode(e.emptyChild, 0, e.emptyChild.length) : t.bytes === Array ? Array.prototype.slice.call(e.emptyChild) : e.emptyChild), e.hash != null && e.hasOwnProperty("hash") && (n.hash = t.enums === String ? o.ics23.HashOp[e.hash] : e.hash), n;
921
+ }, i.prototype.toJSON = function() {
922
+ return this.constructor.toObject(this, h.util.toJSONOptions);
923
+ }, i;
924
+ }(), p.BatchProof = function() {
925
+ function i(r) {
926
+ if (this.entries = [], r)
927
+ for (var e = Object.keys(r), t = 0; t < e.length; ++t)
928
+ r[e[t]] != null && (this[e[t]] = r[e[t]]);
929
+ }
930
+ return i.prototype.entries = c.emptyArray, i.create = function(e) {
931
+ return new i(e);
932
+ }, i.encode = function(e, t) {
933
+ if (t || (t = y.create()), e.entries != null && e.entries.length)
934
+ for (var n = 0; n < e.entries.length; ++n)
935
+ o.ics23.BatchEntry.encode(e.entries[n], t.uint32(
936
+ /* id 1, wireType 2 =*/
937
+ 10
938
+ ).fork()).ldelim();
939
+ return t;
940
+ }, i.encodeDelimited = function(e, t) {
941
+ return this.encode(e, t).ldelim();
942
+ }, i.decode = function(e, t) {
943
+ e instanceof l || (e = l.create(e));
944
+ for (var n = t === void 0 ? e.len : e.pos + t, f = new o.ics23.BatchProof(); e.pos < n; ) {
945
+ var u = e.uint32();
946
+ switch (u >>> 3) {
947
+ case 1:
948
+ f.entries && f.entries.length || (f.entries = []), f.entries.push(o.ics23.BatchEntry.decode(e, e.uint32()));
949
+ break;
950
+ default:
951
+ e.skipType(u & 7);
952
+ break;
953
+ }
954
+ }
955
+ return f;
956
+ }, i.decodeDelimited = function(e) {
957
+ return e instanceof l || (e = new l(e)), this.decode(e, e.uint32());
958
+ }, i.verify = function(e) {
959
+ if (typeof e != "object" || e === null)
960
+ return "object expected";
961
+ if (e.entries != null && e.hasOwnProperty("entries")) {
962
+ if (!Array.isArray(e.entries))
963
+ return "entries: array expected";
964
+ for (var t = 0; t < e.entries.length; ++t) {
965
+ var n = o.ics23.BatchEntry.verify(e.entries[t]);
966
+ if (n)
967
+ return "entries." + n;
968
+ }
969
+ }
970
+ return null;
971
+ }, i.fromObject = function(e) {
972
+ if (e instanceof o.ics23.BatchProof)
973
+ return e;
974
+ var t = new o.ics23.BatchProof();
975
+ if (e.entries) {
976
+ if (!Array.isArray(e.entries))
977
+ throw TypeError(".ics23.BatchProof.entries: array expected");
978
+ t.entries = [];
979
+ for (var n = 0; n < e.entries.length; ++n) {
980
+ if (typeof e.entries[n] != "object")
981
+ throw TypeError(".ics23.BatchProof.entries: object expected");
982
+ t.entries[n] = o.ics23.BatchEntry.fromObject(e.entries[n]);
983
+ }
984
+ }
985
+ return t;
986
+ }, i.toObject = function(e, t) {
987
+ t || (t = {});
988
+ var n = {};
989
+ if ((t.arrays || t.defaults) && (n.entries = []), e.entries && e.entries.length) {
990
+ n.entries = [];
991
+ for (var f = 0; f < e.entries.length; ++f)
992
+ n.entries[f] = o.ics23.BatchEntry.toObject(e.entries[f], t);
993
+ }
994
+ return n;
995
+ }, i.prototype.toJSON = function() {
996
+ return this.constructor.toObject(this, h.util.toJSONOptions);
997
+ }, i;
998
+ }(), p.BatchEntry = function() {
999
+ function i(e) {
1000
+ if (e)
1001
+ for (var t = Object.keys(e), n = 0; n < t.length; ++n)
1002
+ e[t[n]] != null && (this[t[n]] = e[t[n]]);
1003
+ }
1004
+ i.prototype.exist = null, i.prototype.nonexist = null;
1005
+ var r;
1006
+ return Object.defineProperty(i.prototype, "proof", {
1007
+ get: c.oneOfGetter(r = ["exist", "nonexist"]),
1008
+ set: c.oneOfSetter(r)
1009
+ }), i.create = function(t) {
1010
+ return new i(t);
1011
+ }, i.encode = function(t, n) {
1012
+ return n || (n = y.create()), t.exist != null && t.hasOwnProperty("exist") && o.ics23.ExistenceProof.encode(t.exist, n.uint32(
1013
+ /* id 1, wireType 2 =*/
1014
+ 10
1015
+ ).fork()).ldelim(), t.nonexist != null && t.hasOwnProperty("nonexist") && o.ics23.NonExistenceProof.encode(t.nonexist, n.uint32(
1016
+ /* id 2, wireType 2 =*/
1017
+ 18
1018
+ ).fork()).ldelim(), n;
1019
+ }, i.encodeDelimited = function(t, n) {
1020
+ return this.encode(t, n).ldelim();
1021
+ }, i.decode = function(t, n) {
1022
+ t instanceof l || (t = l.create(t));
1023
+ for (var f = n === void 0 ? t.len : t.pos + n, u = new o.ics23.BatchEntry(); t.pos < f; ) {
1024
+ var a = t.uint32();
1025
+ switch (a >>> 3) {
1026
+ case 1:
1027
+ u.exist = o.ics23.ExistenceProof.decode(t, t.uint32());
1028
+ break;
1029
+ case 2:
1030
+ u.nonexist = o.ics23.NonExistenceProof.decode(t, t.uint32());
1031
+ break;
1032
+ default:
1033
+ t.skipType(a & 7);
1034
+ break;
1035
+ }
1036
+ }
1037
+ return u;
1038
+ }, i.decodeDelimited = function(t) {
1039
+ return t instanceof l || (t = new l(t)), this.decode(t, t.uint32());
1040
+ }, i.verify = function(t) {
1041
+ if (typeof t != "object" || t === null)
1042
+ return "object expected";
1043
+ var n = {};
1044
+ if (t.exist != null && t.hasOwnProperty("exist")) {
1045
+ n.proof = 1;
1046
+ {
1047
+ var f = o.ics23.ExistenceProof.verify(t.exist);
1048
+ if (f)
1049
+ return "exist." + f;
1050
+ }
1051
+ }
1052
+ if (t.nonexist != null && t.hasOwnProperty("nonexist")) {
1053
+ if (n.proof === 1)
1054
+ return "proof: multiple values";
1055
+ n.proof = 1;
1056
+ {
1057
+ var f = o.ics23.NonExistenceProof.verify(t.nonexist);
1058
+ if (f)
1059
+ return "nonexist." + f;
1060
+ }
1061
+ }
1062
+ return null;
1063
+ }, i.fromObject = function(t) {
1064
+ if (t instanceof o.ics23.BatchEntry)
1065
+ return t;
1066
+ var n = new o.ics23.BatchEntry();
1067
+ if (t.exist != null) {
1068
+ if (typeof t.exist != "object")
1069
+ throw TypeError(".ics23.BatchEntry.exist: object expected");
1070
+ n.exist = o.ics23.ExistenceProof.fromObject(t.exist);
1071
+ }
1072
+ if (t.nonexist != null) {
1073
+ if (typeof t.nonexist != "object")
1074
+ throw TypeError(".ics23.BatchEntry.nonexist: object expected");
1075
+ n.nonexist = o.ics23.NonExistenceProof.fromObject(t.nonexist);
1076
+ }
1077
+ return n;
1078
+ }, i.toObject = function(t, n) {
1079
+ n || (n = {});
1080
+ var f = {};
1081
+ return t.exist != null && t.hasOwnProperty("exist") && (f.exist = o.ics23.ExistenceProof.toObject(t.exist, n), n.oneofs && (f.proof = "exist")), t.nonexist != null && t.hasOwnProperty("nonexist") && (f.nonexist = o.ics23.NonExistenceProof.toObject(t.nonexist, n), n.oneofs && (f.proof = "nonexist")), f;
1082
+ }, i.prototype.toJSON = function() {
1083
+ return this.constructor.toObject(this, h.util.toJSONOptions);
1084
+ }, i;
1085
+ }(), p.CompressedBatchProof = function() {
1086
+ function i(r) {
1087
+ if (this.entries = [], this.lookupInners = [], r)
1088
+ for (var e = Object.keys(r), t = 0; t < e.length; ++t)
1089
+ r[e[t]] != null && (this[e[t]] = r[e[t]]);
1090
+ }
1091
+ return i.prototype.entries = c.emptyArray, i.prototype.lookupInners = c.emptyArray, i.create = function(e) {
1092
+ return new i(e);
1093
+ }, i.encode = function(e, t) {
1094
+ if (t || (t = y.create()), e.entries != null && e.entries.length)
1095
+ for (var n = 0; n < e.entries.length; ++n)
1096
+ o.ics23.CompressedBatchEntry.encode(e.entries[n], t.uint32(
1097
+ /* id 1, wireType 2 =*/
1098
+ 10
1099
+ ).fork()).ldelim();
1100
+ if (e.lookupInners != null && e.lookupInners.length)
1101
+ for (var n = 0; n < e.lookupInners.length; ++n)
1102
+ o.ics23.InnerOp.encode(e.lookupInners[n], t.uint32(
1103
+ /* id 2, wireType 2 =*/
1104
+ 18
1105
+ ).fork()).ldelim();
1106
+ return t;
1107
+ }, i.encodeDelimited = function(e, t) {
1108
+ return this.encode(e, t).ldelim();
1109
+ }, i.decode = function(e, t) {
1110
+ e instanceof l || (e = l.create(e));
1111
+ for (var n = t === void 0 ? e.len : e.pos + t, f = new o.ics23.CompressedBatchProof(); e.pos < n; ) {
1112
+ var u = e.uint32();
1113
+ switch (u >>> 3) {
1114
+ case 1:
1115
+ f.entries && f.entries.length || (f.entries = []), f.entries.push(o.ics23.CompressedBatchEntry.decode(e, e.uint32()));
1116
+ break;
1117
+ case 2:
1118
+ f.lookupInners && f.lookupInners.length || (f.lookupInners = []), f.lookupInners.push(o.ics23.InnerOp.decode(e, e.uint32()));
1119
+ break;
1120
+ default:
1121
+ e.skipType(u & 7);
1122
+ break;
1123
+ }
1124
+ }
1125
+ return f;
1126
+ }, i.decodeDelimited = function(e) {
1127
+ return e instanceof l || (e = new l(e)), this.decode(e, e.uint32());
1128
+ }, i.verify = function(e) {
1129
+ if (typeof e != "object" || e === null)
1130
+ return "object expected";
1131
+ if (e.entries != null && e.hasOwnProperty("entries")) {
1132
+ if (!Array.isArray(e.entries))
1133
+ return "entries: array expected";
1134
+ for (var t = 0; t < e.entries.length; ++t) {
1135
+ var n = o.ics23.CompressedBatchEntry.verify(e.entries[t]);
1136
+ if (n)
1137
+ return "entries." + n;
1138
+ }
1139
+ }
1140
+ if (e.lookupInners != null && e.hasOwnProperty("lookupInners")) {
1141
+ if (!Array.isArray(e.lookupInners))
1142
+ return "lookupInners: array expected";
1143
+ for (var t = 0; t < e.lookupInners.length; ++t) {
1144
+ var n = o.ics23.InnerOp.verify(e.lookupInners[t]);
1145
+ if (n)
1146
+ return "lookupInners." + n;
1147
+ }
1148
+ }
1149
+ return null;
1150
+ }, i.fromObject = function(e) {
1151
+ if (e instanceof o.ics23.CompressedBatchProof)
1152
+ return e;
1153
+ var t = new o.ics23.CompressedBatchProof();
1154
+ if (e.entries) {
1155
+ if (!Array.isArray(e.entries))
1156
+ throw TypeError(".ics23.CompressedBatchProof.entries: array expected");
1157
+ t.entries = [];
1158
+ for (var n = 0; n < e.entries.length; ++n) {
1159
+ if (typeof e.entries[n] != "object")
1160
+ throw TypeError(".ics23.CompressedBatchProof.entries: object expected");
1161
+ t.entries[n] = o.ics23.CompressedBatchEntry.fromObject(e.entries[n]);
1162
+ }
1163
+ }
1164
+ if (e.lookupInners) {
1165
+ if (!Array.isArray(e.lookupInners))
1166
+ throw TypeError(".ics23.CompressedBatchProof.lookupInners: array expected");
1167
+ t.lookupInners = [];
1168
+ for (var n = 0; n < e.lookupInners.length; ++n) {
1169
+ if (typeof e.lookupInners[n] != "object")
1170
+ throw TypeError(".ics23.CompressedBatchProof.lookupInners: object expected");
1171
+ t.lookupInners[n] = o.ics23.InnerOp.fromObject(e.lookupInners[n]);
1172
+ }
1173
+ }
1174
+ return t;
1175
+ }, i.toObject = function(e, t) {
1176
+ t || (t = {});
1177
+ var n = {};
1178
+ if ((t.arrays || t.defaults) && (n.entries = [], n.lookupInners = []), e.entries && e.entries.length) {
1179
+ n.entries = [];
1180
+ for (var f = 0; f < e.entries.length; ++f)
1181
+ n.entries[f] = o.ics23.CompressedBatchEntry.toObject(e.entries[f], t);
1182
+ }
1183
+ if (e.lookupInners && e.lookupInners.length) {
1184
+ n.lookupInners = [];
1185
+ for (var f = 0; f < e.lookupInners.length; ++f)
1186
+ n.lookupInners[f] = o.ics23.InnerOp.toObject(e.lookupInners[f], t);
1187
+ }
1188
+ return n;
1189
+ }, i.prototype.toJSON = function() {
1190
+ return this.constructor.toObject(this, h.util.toJSONOptions);
1191
+ }, i;
1192
+ }(), p.CompressedBatchEntry = function() {
1193
+ function i(e) {
1194
+ if (e)
1195
+ for (var t = Object.keys(e), n = 0; n < t.length; ++n)
1196
+ e[t[n]] != null && (this[t[n]] = e[t[n]]);
1197
+ }
1198
+ i.prototype.exist = null, i.prototype.nonexist = null;
1199
+ var r;
1200
+ return Object.defineProperty(i.prototype, "proof", {
1201
+ get: c.oneOfGetter(r = ["exist", "nonexist"]),
1202
+ set: c.oneOfSetter(r)
1203
+ }), i.create = function(t) {
1204
+ return new i(t);
1205
+ }, i.encode = function(t, n) {
1206
+ return n || (n = y.create()), t.exist != null && t.hasOwnProperty("exist") && o.ics23.CompressedExistenceProof.encode(t.exist, n.uint32(
1207
+ /* id 1, wireType 2 =*/
1208
+ 10
1209
+ ).fork()).ldelim(), t.nonexist != null && t.hasOwnProperty("nonexist") && o.ics23.CompressedNonExistenceProof.encode(t.nonexist, n.uint32(
1210
+ /* id 2, wireType 2 =*/
1211
+ 18
1212
+ ).fork()).ldelim(), n;
1213
+ }, i.encodeDelimited = function(t, n) {
1214
+ return this.encode(t, n).ldelim();
1215
+ }, i.decode = function(t, n) {
1216
+ t instanceof l || (t = l.create(t));
1217
+ for (var f = n === void 0 ? t.len : t.pos + n, u = new o.ics23.CompressedBatchEntry(); t.pos < f; ) {
1218
+ var a = t.uint32();
1219
+ switch (a >>> 3) {
1220
+ case 1:
1221
+ u.exist = o.ics23.CompressedExistenceProof.decode(t, t.uint32());
1222
+ break;
1223
+ case 2:
1224
+ u.nonexist = o.ics23.CompressedNonExistenceProof.decode(t, t.uint32());
1225
+ break;
1226
+ default:
1227
+ t.skipType(a & 7);
1228
+ break;
1229
+ }
1230
+ }
1231
+ return u;
1232
+ }, i.decodeDelimited = function(t) {
1233
+ return t instanceof l || (t = new l(t)), this.decode(t, t.uint32());
1234
+ }, i.verify = function(t) {
1235
+ if (typeof t != "object" || t === null)
1236
+ return "object expected";
1237
+ var n = {};
1238
+ if (t.exist != null && t.hasOwnProperty("exist")) {
1239
+ n.proof = 1;
1240
+ {
1241
+ var f = o.ics23.CompressedExistenceProof.verify(t.exist);
1242
+ if (f)
1243
+ return "exist." + f;
1244
+ }
1245
+ }
1246
+ if (t.nonexist != null && t.hasOwnProperty("nonexist")) {
1247
+ if (n.proof === 1)
1248
+ return "proof: multiple values";
1249
+ n.proof = 1;
1250
+ {
1251
+ var f = o.ics23.CompressedNonExistenceProof.verify(t.nonexist);
1252
+ if (f)
1253
+ return "nonexist." + f;
1254
+ }
1255
+ }
1256
+ return null;
1257
+ }, i.fromObject = function(t) {
1258
+ if (t instanceof o.ics23.CompressedBatchEntry)
1259
+ return t;
1260
+ var n = new o.ics23.CompressedBatchEntry();
1261
+ if (t.exist != null) {
1262
+ if (typeof t.exist != "object")
1263
+ throw TypeError(".ics23.CompressedBatchEntry.exist: object expected");
1264
+ n.exist = o.ics23.CompressedExistenceProof.fromObject(t.exist);
1265
+ }
1266
+ if (t.nonexist != null) {
1267
+ if (typeof t.nonexist != "object")
1268
+ throw TypeError(".ics23.CompressedBatchEntry.nonexist: object expected");
1269
+ n.nonexist = o.ics23.CompressedNonExistenceProof.fromObject(t.nonexist);
1270
+ }
1271
+ return n;
1272
+ }, i.toObject = function(t, n) {
1273
+ n || (n = {});
1274
+ var f = {};
1275
+ return t.exist != null && t.hasOwnProperty("exist") && (f.exist = o.ics23.CompressedExistenceProof.toObject(t.exist, n), n.oneofs && (f.proof = "exist")), t.nonexist != null && t.hasOwnProperty("nonexist") && (f.nonexist = o.ics23.CompressedNonExistenceProof.toObject(t.nonexist, n), n.oneofs && (f.proof = "nonexist")), f;
1276
+ }, i.prototype.toJSON = function() {
1277
+ return this.constructor.toObject(this, h.util.toJSONOptions);
1278
+ }, i;
1279
+ }(), p.CompressedExistenceProof = function() {
1280
+ function i(r) {
1281
+ if (this.path = [], r)
1282
+ for (var e = Object.keys(r), t = 0; t < e.length; ++t)
1283
+ r[e[t]] != null && (this[e[t]] = r[e[t]]);
1284
+ }
1285
+ return i.prototype.key = c.newBuffer([]), i.prototype.value = c.newBuffer([]), i.prototype.leaf = null, i.prototype.path = c.emptyArray, i.create = function(e) {
1286
+ return new i(e);
1287
+ }, i.encode = function(e, t) {
1288
+ if (t || (t = y.create()), e.key != null && e.hasOwnProperty("key") && t.uint32(
1289
+ /* id 1, wireType 2 =*/
1290
+ 10
1291
+ ).bytes(e.key), e.value != null && e.hasOwnProperty("value") && t.uint32(
1292
+ /* id 2, wireType 2 =*/
1293
+ 18
1294
+ ).bytes(e.value), e.leaf != null && e.hasOwnProperty("leaf") && o.ics23.LeafOp.encode(e.leaf, t.uint32(
1295
+ /* id 3, wireType 2 =*/
1296
+ 26
1297
+ ).fork()).ldelim(), e.path != null && e.path.length) {
1298
+ t.uint32(
1299
+ /* id 4, wireType 2 =*/
1300
+ 34
1301
+ ).fork();
1302
+ for (var n = 0; n < e.path.length; ++n)
1303
+ t.int32(e.path[n]);
1304
+ t.ldelim();
1305
+ }
1306
+ return t;
1307
+ }, i.encodeDelimited = function(e, t) {
1308
+ return this.encode(e, t).ldelim();
1309
+ }, i.decode = function(e, t) {
1310
+ e instanceof l || (e = l.create(e));
1311
+ for (var n = t === void 0 ? e.len : e.pos + t, f = new o.ics23.CompressedExistenceProof(); e.pos < n; ) {
1312
+ var u = e.uint32();
1313
+ switch (u >>> 3) {
1314
+ case 1:
1315
+ f.key = e.bytes();
1316
+ break;
1317
+ case 2:
1318
+ f.value = e.bytes();
1319
+ break;
1320
+ case 3:
1321
+ f.leaf = o.ics23.LeafOp.decode(e, e.uint32());
1322
+ break;
1323
+ case 4:
1324
+ if (f.path && f.path.length || (f.path = []), (u & 7) === 2)
1325
+ for (var a = e.uint32() + e.pos; e.pos < a; )
1326
+ f.path.push(e.int32());
1327
+ else
1328
+ f.path.push(e.int32());
1329
+ break;
1330
+ default:
1331
+ e.skipType(u & 7);
1332
+ break;
1333
+ }
1334
+ }
1335
+ return f;
1336
+ }, i.decodeDelimited = function(e) {
1337
+ return e instanceof l || (e = new l(e)), this.decode(e, e.uint32());
1338
+ }, i.verify = function(e) {
1339
+ if (typeof e != "object" || e === null)
1340
+ return "object expected";
1341
+ if (e.key != null && e.hasOwnProperty("key") && !(e.key && typeof e.key.length == "number" || c.isString(e.key)))
1342
+ return "key: buffer expected";
1343
+ if (e.value != null && e.hasOwnProperty("value") && !(e.value && typeof e.value.length == "number" || c.isString(e.value)))
1344
+ return "value: buffer expected";
1345
+ if (e.leaf != null && e.hasOwnProperty("leaf")) {
1346
+ var t = o.ics23.LeafOp.verify(e.leaf);
1347
+ if (t)
1348
+ return "leaf." + t;
1349
+ }
1350
+ if (e.path != null && e.hasOwnProperty("path")) {
1351
+ if (!Array.isArray(e.path))
1352
+ return "path: array expected";
1353
+ for (var n = 0; n < e.path.length; ++n)
1354
+ if (!c.isInteger(e.path[n]))
1355
+ return "path: integer[] expected";
1356
+ }
1357
+ return null;
1358
+ }, i.fromObject = function(e) {
1359
+ if (e instanceof o.ics23.CompressedExistenceProof)
1360
+ return e;
1361
+ var t = new o.ics23.CompressedExistenceProof();
1362
+ if (e.key != null && (typeof e.key == "string" ? c.base64.decode(e.key, t.key = c.newBuffer(c.base64.length(e.key)), 0) : e.key.length && (t.key = e.key)), e.value != null && (typeof e.value == "string" ? c.base64.decode(e.value, t.value = c.newBuffer(c.base64.length(e.value)), 0) : e.value.length && (t.value = e.value)), e.leaf != null) {
1363
+ if (typeof e.leaf != "object")
1364
+ throw TypeError(".ics23.CompressedExistenceProof.leaf: object expected");
1365
+ t.leaf = o.ics23.LeafOp.fromObject(e.leaf);
1366
+ }
1367
+ if (e.path) {
1368
+ if (!Array.isArray(e.path))
1369
+ throw TypeError(".ics23.CompressedExistenceProof.path: array expected");
1370
+ t.path = [];
1371
+ for (var n = 0; n < e.path.length; ++n)
1372
+ t.path[n] = e.path[n] | 0;
1373
+ }
1374
+ return t;
1375
+ }, i.toObject = function(e, t) {
1376
+ t || (t = {});
1377
+ var n = {};
1378
+ if ((t.arrays || t.defaults) && (n.path = []), t.defaults && (t.bytes === String ? n.key = "" : (n.key = [], t.bytes !== Array && (n.key = c.newBuffer(n.key))), t.bytes === String ? n.value = "" : (n.value = [], t.bytes !== Array && (n.value = c.newBuffer(n.value))), n.leaf = null), e.key != null && e.hasOwnProperty("key") && (n.key = t.bytes === String ? c.base64.encode(e.key, 0, e.key.length) : t.bytes === Array ? Array.prototype.slice.call(e.key) : e.key), e.value != null && e.hasOwnProperty("value") && (n.value = t.bytes === String ? c.base64.encode(e.value, 0, e.value.length) : t.bytes === Array ? Array.prototype.slice.call(e.value) : e.value), e.leaf != null && e.hasOwnProperty("leaf") && (n.leaf = o.ics23.LeafOp.toObject(e.leaf, t)), e.path && e.path.length) {
1379
+ n.path = [];
1380
+ for (var f = 0; f < e.path.length; ++f)
1381
+ n.path[f] = e.path[f];
1382
+ }
1383
+ return n;
1384
+ }, i.prototype.toJSON = function() {
1385
+ return this.constructor.toObject(this, h.util.toJSONOptions);
1386
+ }, i;
1387
+ }(), p.CompressedNonExistenceProof = function() {
1388
+ function i(r) {
1389
+ if (r)
1390
+ for (var e = Object.keys(r), t = 0; t < e.length; ++t)
1391
+ r[e[t]] != null && (this[e[t]] = r[e[t]]);
1392
+ }
1393
+ return i.prototype.key = c.newBuffer([]), i.prototype.left = null, i.prototype.right = null, i.create = function(e) {
1394
+ return new i(e);
1395
+ }, i.encode = function(e, t) {
1396
+ return t || (t = y.create()), e.key != null && e.hasOwnProperty("key") && t.uint32(
1397
+ /* id 1, wireType 2 =*/
1398
+ 10
1399
+ ).bytes(e.key), e.left != null && e.hasOwnProperty("left") && o.ics23.CompressedExistenceProof.encode(e.left, t.uint32(
1400
+ /* id 2, wireType 2 =*/
1401
+ 18
1402
+ ).fork()).ldelim(), e.right != null && e.hasOwnProperty("right") && o.ics23.CompressedExistenceProof.encode(e.right, t.uint32(
1403
+ /* id 3, wireType 2 =*/
1404
+ 26
1405
+ ).fork()).ldelim(), t;
1406
+ }, i.encodeDelimited = function(e, t) {
1407
+ return this.encode(e, t).ldelim();
1408
+ }, i.decode = function(e, t) {
1409
+ e instanceof l || (e = l.create(e));
1410
+ for (var n = t === void 0 ? e.len : e.pos + t, f = new o.ics23.CompressedNonExistenceProof(); e.pos < n; ) {
1411
+ var u = e.uint32();
1412
+ switch (u >>> 3) {
1413
+ case 1:
1414
+ f.key = e.bytes();
1415
+ break;
1416
+ case 2:
1417
+ f.left = o.ics23.CompressedExistenceProof.decode(e, e.uint32());
1418
+ break;
1419
+ case 3:
1420
+ f.right = o.ics23.CompressedExistenceProof.decode(e, e.uint32());
1421
+ break;
1422
+ default:
1423
+ e.skipType(u & 7);
1424
+ break;
1425
+ }
1426
+ }
1427
+ return f;
1428
+ }, i.decodeDelimited = function(e) {
1429
+ return e instanceof l || (e = new l(e)), this.decode(e, e.uint32());
1430
+ }, i.verify = function(e) {
1431
+ if (typeof e != "object" || e === null)
1432
+ return "object expected";
1433
+ if (e.key != null && e.hasOwnProperty("key") && !(e.key && typeof e.key.length == "number" || c.isString(e.key)))
1434
+ return "key: buffer expected";
1435
+ if (e.left != null && e.hasOwnProperty("left")) {
1436
+ var t = o.ics23.CompressedExistenceProof.verify(e.left);
1437
+ if (t)
1438
+ return "left." + t;
1439
+ }
1440
+ if (e.right != null && e.hasOwnProperty("right")) {
1441
+ var t = o.ics23.CompressedExistenceProof.verify(e.right);
1442
+ if (t)
1443
+ return "right." + t;
1444
+ }
1445
+ return null;
1446
+ }, i.fromObject = function(e) {
1447
+ if (e instanceof o.ics23.CompressedNonExistenceProof)
1448
+ return e;
1449
+ var t = new o.ics23.CompressedNonExistenceProof();
1450
+ if (e.key != null && (typeof e.key == "string" ? c.base64.decode(e.key, t.key = c.newBuffer(c.base64.length(e.key)), 0) : e.key.length && (t.key = e.key)), e.left != null) {
1451
+ if (typeof e.left != "object")
1452
+ throw TypeError(".ics23.CompressedNonExistenceProof.left: object expected");
1453
+ t.left = o.ics23.CompressedExistenceProof.fromObject(e.left);
1454
+ }
1455
+ if (e.right != null) {
1456
+ if (typeof e.right != "object")
1457
+ throw TypeError(".ics23.CompressedNonExistenceProof.right: object expected");
1458
+ t.right = o.ics23.CompressedExistenceProof.fromObject(e.right);
1459
+ }
1460
+ return t;
1461
+ }, i.toObject = function(e, t) {
1462
+ t || (t = {});
1463
+ var n = {};
1464
+ return t.defaults && (t.bytes === String ? n.key = "" : (n.key = [], t.bytes !== Array && (n.key = c.newBuffer(n.key))), n.left = null, n.right = null), e.key != null && e.hasOwnProperty("key") && (n.key = t.bytes === String ? c.base64.encode(e.key, 0, e.key.length) : t.bytes === Array ? Array.prototype.slice.call(e.key) : e.key), e.left != null && e.hasOwnProperty("left") && (n.left = o.ics23.CompressedExistenceProof.toObject(e.left, t)), e.right != null && e.hasOwnProperty("right") && (n.right = o.ics23.CompressedExistenceProof.toObject(e.right, t)), n;
1465
+ }, i.prototype.toJSON = function() {
1466
+ return this.constructor.toObject(this, h.util.toJSONOptions);
1467
+ }, i;
1468
+ }(), p;
1469
+ }();
1470
+ var x = o;
1471
+ export {
1472
+ x as c
1473
+ };