@waku/rln 0.0.1 → 0.0.2-ce9a6ae.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +12 -108
- package/bundle/_virtual/__node-resolve_empty.js +6 -0
- package/bundle/_virtual/_assert.js +3 -0
- package/bundle/_virtual/_commonjs-dynamic-modules.js +5 -0
- package/bundle/_virtual/_commonjsHelpers.js +32 -0
- package/bundle/_virtual/_node-resolve_empty.js +3 -0
- package/bundle/_virtual/_sha2.js +3 -0
- package/bundle/_virtual/_u64.js +3 -0
- package/bundle/_virtual/aes.js +3 -0
- package/bundle/_virtual/bn.js +3 -0
- package/bundle/_virtual/browser.js +3 -0
- package/bundle/_virtual/checksum.js +3 -0
- package/bundle/_virtual/cipher.js +3 -0
- package/bundle/_virtual/class.js +3 -0
- package/bundle/_virtual/common.js +3 -0
- package/bundle/_virtual/common2.js +3 -0
- package/bundle/_virtual/cryptoBrowser.js +3 -0
- package/bundle/_virtual/functional.js +3 -0
- package/bundle/_virtual/hash.js +3 -0
- package/bundle/_virtual/hmac.js +3 -0
- package/bundle/_virtual/index.js +3 -0
- package/bundle/_virtual/index2.js +6 -0
- package/bundle/_virtual/inherits_browser.js +3 -0
- package/bundle/_virtual/kdf.js +3 -0
- package/bundle/_virtual/lodash.js +3 -0
- package/bundle/_virtual/password.js +3 -0
- package/bundle/_virtual/pbkdf2.js +3 -0
- package/bundle/_virtual/pbkdf22.js +3 -0
- package/bundle/_virtual/random.js +3 -0
- package/bundle/_virtual/ripemd.js +3 -0
- package/bundle/_virtual/schema-validation-generated.js +3 -0
- package/bundle/_virtual/schema-validation.js +3 -0
- package/bundle/_virtual/scrypt.js +3 -0
- package/bundle/_virtual/scrypt2.js +3 -0
- package/bundle/_virtual/sha.js +3 -0
- package/bundle/_virtual/sha256.js +3 -0
- package/bundle/_virtual/sha2562.js +3 -0
- package/bundle/_virtual/sha3.js +3 -0
- package/bundle/_virtual/sha512.js +3 -0
- package/bundle/_virtual/types.js +3 -0
- package/bundle/_virtual/utils.js +3 -0
- package/bundle/_virtual/utils2.js +3 -0
- package/bundle/_virtual/utils3.js +3 -0
- package/bundle/index.js +12 -10
- package/bundle/node_modules/@ethersproject/abi/lib.esm/_version.js +3 -0
- package/bundle/node_modules/@ethersproject/abi/lib.esm/abi-coder.js +96 -0
- package/bundle/node_modules/@ethersproject/abi/lib.esm/coders/abstract-coder.js +148 -0
- package/bundle/node_modules/@ethersproject/abi/lib.esm/coders/address.js +26 -0
- package/bundle/node_modules/@ethersproject/abi/lib.esm/coders/anonymous.js +20 -0
- package/bundle/node_modules/@ethersproject/abi/lib.esm/coders/array.js +210 -0
- package/bundle/node_modules/@ethersproject/abi/lib.esm/coders/boolean.js +18 -0
- package/bundle/node_modules/@ethersproject/abi/lib.esm/coders/bytes.js +30 -0
- package/bundle/node_modules/@ethersproject/abi/lib.esm/coders/fixed-bytes.js +26 -0
- package/bundle/node_modules/@ethersproject/abi/lib.esm/coders/null.js +22 -0
- package/bundle/node_modules/@ethersproject/abi/lib.esm/coders/number.js +43 -0
- package/bundle/node_modules/@ethersproject/abi/lib.esm/coders/string.js +19 -0
- package/bundle/node_modules/@ethersproject/abi/lib.esm/coders/tuple.js +58 -0
- package/bundle/node_modules/@ethersproject/abi/lib.esm/fragments.js +854 -0
- package/bundle/node_modules/@ethersproject/abi/lib.esm/interface.js +609 -0
- package/bundle/node_modules/@ethersproject/abstract-provider/lib.esm/_version.js +3 -0
- package/bundle/node_modules/@ethersproject/abstract-provider/lib.esm/index.js +66 -0
- package/bundle/node_modules/@ethersproject/abstract-signer/lib.esm/_version.js +3 -0
- package/bundle/node_modules/@ethersproject/abstract-signer/lib.esm/index.js +302 -0
- package/bundle/node_modules/@ethersproject/address/lib.esm/_version.js +3 -0
- package/bundle/node_modules/@ethersproject/address/lib.esm/index.js +110 -0
- package/bundle/node_modules/@ethersproject/base64/lib.esm/base64.js +20 -0
- package/bundle/node_modules/@ethersproject/basex/lib.esm/index.js +120 -0
- package/bundle/node_modules/@ethersproject/bignumber/lib.esm/_version.js +3 -0
- package/bundle/node_modules/@ethersproject/bignumber/lib.esm/bignumber.js +287 -0
- package/bundle/node_modules/@ethersproject/bytes/lib.esm/_version.js +3 -0
- package/bundle/node_modules/@ethersproject/bytes/lib.esm/index.js +402 -0
- package/bundle/node_modules/@ethersproject/constants/lib.esm/addresses.js +3 -0
- package/bundle/node_modules/@ethersproject/constants/lib.esm/bignumbers.js +8 -0
- package/bundle/node_modules/@ethersproject/constants/lib.esm/hashes.js +3 -0
- package/bundle/node_modules/@ethersproject/contracts/lib.esm/_version.js +3 -0
- package/bundle/node_modules/@ethersproject/contracts/lib.esm/index.js +893 -0
- package/bundle/node_modules/@ethersproject/hash/lib.esm/_version.js +3 -0
- package/bundle/node_modules/@ethersproject/hash/lib.esm/ens-normalize/decoder.js +256 -0
- package/bundle/node_modules/@ethersproject/hash/lib.esm/ens-normalize/include.js +36 -0
- package/bundle/node_modules/@ethersproject/hash/lib.esm/ens-normalize/lib.js +135 -0
- package/bundle/node_modules/@ethersproject/hash/lib.esm/id.js +8 -0
- package/bundle/node_modules/@ethersproject/hash/lib.esm/namehash.js +64 -0
- package/bundle/node_modules/@ethersproject/hash/lib.esm/typed-data.js +443 -0
- package/bundle/node_modules/@ethersproject/keccak256/lib.esm/index.js +8 -0
- package/bundle/node_modules/@ethersproject/keccak256/node_modules/js-sha3/src/sha3.js +660 -0
- package/bundle/node_modules/@ethersproject/logger/lib.esm/_version.js +3 -0
- package/bundle/node_modules/@ethersproject/logger/lib.esm/index.js +352 -0
- package/bundle/node_modules/@ethersproject/networks/lib.esm/_version.js +3 -0
- package/bundle/node_modules/@ethersproject/networks/lib.esm/index.js +248 -0
- package/bundle/node_modules/@ethersproject/properties/lib.esm/_version.js +3 -0
- package/bundle/node_modules/@ethersproject/properties/lib.esm/index.js +127 -0
- package/bundle/node_modules/@ethersproject/providers/lib.esm/_version.js +3 -0
- package/bundle/node_modules/@ethersproject/providers/lib.esm/base-provider.js +2007 -0
- package/bundle/node_modules/@ethersproject/providers/lib.esm/formatter.js +422 -0
- package/bundle/node_modules/@ethersproject/providers/lib.esm/json-rpc-provider.js +674 -0
- package/bundle/node_modules/@ethersproject/providers/lib.esm/web3-provider.js +132 -0
- package/bundle/node_modules/@ethersproject/rlp/lib.esm/_version.js +3 -0
- package/bundle/node_modules/@ethersproject/rlp/lib.esm/index.js +120 -0
- package/bundle/node_modules/@ethersproject/sha2/lib.esm/sha2.js +8 -0
- package/bundle/node_modules/@ethersproject/signing-key/lib.esm/_version.js +3 -0
- package/bundle/node_modules/@ethersproject/signing-key/lib.esm/elliptic.js +2430 -0
- package/bundle/node_modules/@ethersproject/signing-key/lib.esm/index.js +76 -0
- package/bundle/node_modules/@ethersproject/strings/lib.esm/_version.js +3 -0
- package/bundle/node_modules/@ethersproject/strings/lib.esm/utf8.js +219 -0
- package/bundle/node_modules/@ethersproject/transactions/lib.esm/_version.js +3 -0
- package/bundle/node_modules/@ethersproject/transactions/lib.esm/index.js +279 -0
- package/bundle/node_modules/@ethersproject/web/lib.esm/_version.js +3 -0
- package/bundle/node_modules/@ethersproject/web/lib.esm/geturl.js +69 -0
- package/bundle/node_modules/@ethersproject/web/lib.esm/index.js +404 -0
- package/bundle/node_modules/@iden3/js-crypto/dist/browser/esm/index.js +7 -0
- package/bundle/node_modules/@multiformats/multiaddr/dist/src/convert.js +15 -0
- package/bundle/node_modules/@multiformats/multiaddr/dist/src/multiaddr.js +20 -0
- package/bundle/node_modules/@multiformats/multiaddr/dist/src/protocols-table.js +92 -0
- package/bundle/node_modules/@noble/hashes/esm/_assert.js +37 -0
- package/bundle/node_modules/@noble/hashes/esm/_md.js +132 -0
- package/bundle/node_modules/@noble/hashes/esm/_u64.js +29 -0
- package/bundle/node_modules/@noble/hashes/esm/sha256.js +113 -0
- package/bundle/node_modules/@noble/hashes/esm/sha3.js +210 -0
- package/bundle/node_modules/@noble/hashes/esm/utils.js +144 -0
- package/bundle/node_modules/@stablelib/binary/lib/binary.js +22 -0
- package/bundle/node_modules/@stablelib/chacha/lib/chacha.js +245 -0
- package/bundle/node_modules/@stablelib/wipe/lib/wipe.js +26 -0
- package/bundle/node_modules/@waku/zerokit-rln-wasm/rln_wasm.js +756 -0
- package/bundle/node_modules/bech32/index.js +187 -0
- package/bundle/node_modules/bn.js/lib/bn.js +3361 -0
- package/bundle/node_modules/debug/src/browser.js +283 -0
- package/bundle/node_modules/debug/src/common.js +295 -0
- package/bundle/node_modules/ethereum-cryptography/esm/keccak.js +10 -0
- package/bundle/node_modules/ethereum-cryptography/esm/sha256.js +6 -0
- package/bundle/node_modules/ethereum-cryptography/esm/utils.js +24 -0
- package/bundle/node_modules/hash.js/lib/hash/common.js +97 -0
- package/bundle/node_modules/hash.js/lib/hash/hmac.js +51 -0
- package/bundle/node_modules/hash.js/lib/hash/ripemd.js +152 -0
- package/bundle/node_modules/hash.js/lib/hash/sha/1.js +81 -0
- package/bundle/node_modules/hash.js/lib/hash/sha/224.js +33 -0
- package/bundle/node_modules/hash.js/lib/hash/sha/256.js +113 -0
- package/bundle/node_modules/hash.js/lib/hash/sha/384.js +39 -0
- package/bundle/node_modules/hash.js/lib/hash/sha/512.js +336 -0
- package/bundle/node_modules/hash.js/lib/hash/sha/common.js +53 -0
- package/bundle/node_modules/hash.js/lib/hash/sha.js +14 -0
- package/bundle/node_modules/hash.js/lib/hash/utils.js +282 -0
- package/bundle/node_modules/hash.js/lib/hash.js +33 -0
- package/bundle/node_modules/inherits/inherits_browser.js +33 -0
- package/bundle/node_modules/it-length-prefixed/dist/src/decode.js +6 -0
- package/bundle/node_modules/lodash/lodash.js +17207 -0
- package/bundle/node_modules/minimalistic-assert/index.js +13 -0
- package/bundle/node_modules/ms/index.js +172 -0
- package/bundle/node_modules/multiformats/dist/src/bases/base.js +205 -0
- package/bundle/node_modules/multiformats/dist/src/bases/base10.js +9 -0
- package/bundle/node_modules/multiformats/dist/src/bases/base16.js +16 -0
- package/bundle/node_modules/multiformats/dist/src/bases/base2.js +10 -0
- package/bundle/node_modules/multiformats/dist/src/bases/base256emoji.js +41 -0
- package/bundle/node_modules/multiformats/dist/src/bases/base32.js +58 -0
- package/bundle/node_modules/multiformats/dist/src/bases/base36.js +14 -0
- package/bundle/node_modules/multiformats/dist/src/bases/base58.js +14 -0
- package/bundle/node_modules/multiformats/dist/src/bases/base64.js +28 -0
- package/bundle/node_modules/multiformats/dist/src/bases/base8.js +10 -0
- package/bundle/node_modules/multiformats/dist/src/bases/identity.js +11 -0
- package/bundle/node_modules/multiformats/dist/src/basics.js +15 -0
- package/bundle/node_modules/multiformats/dist/src/bytes.js +18 -0
- package/bundle/node_modules/multiformats/dist/src/codecs/json.js +2 -0
- package/bundle/node_modules/multiformats/dist/src/vendor/base-x.js +170 -0
- package/bundle/node_modules/protons-runtime/dist/src/codec.js +20 -0
- package/bundle/node_modules/protons-runtime/dist/src/codecs/enum.js +24 -0
- package/bundle/node_modules/protons-runtime/dist/src/codecs/message.js +7 -0
- package/bundle/node_modules/protons-runtime/dist/src/decode.js +8 -0
- package/bundle/node_modules/protons-runtime/dist/src/encode.js +11 -0
- package/bundle/node_modules/protons-runtime/dist/src/index.js +30 -0
- package/bundle/node_modules/protons-runtime/dist/src/utils/float.js +54 -0
- package/bundle/node_modules/protons-runtime/dist/src/utils/longbits.js +175 -0
- package/bundle/node_modules/protons-runtime/dist/src/utils/pool.js +28 -0
- package/bundle/node_modules/protons-runtime/dist/src/utils/reader.js +367 -0
- package/bundle/node_modules/protons-runtime/dist/src/utils/utf8.js +99 -0
- package/bundle/node_modules/protons-runtime/dist/src/utils/writer.js +438 -0
- package/bundle/node_modules/uint8-varint/dist/src/index.js +124 -0
- package/bundle/node_modules/uint8arrays/dist/src/alloc.js +17 -0
- package/bundle/node_modules/uint8arrays/dist/src/from-string.js +19 -0
- package/bundle/node_modules/uint8arrays/dist/src/util/bases.js +49 -0
- package/bundle/packages/core/dist/lib/connection_manager/connection_manager.js +21 -0
- package/bundle/packages/core/dist/lib/connection_manager/keep_alive_manager.js +18 -0
- package/bundle/packages/core/dist/lib/filter/filter.js +27 -0
- package/bundle/packages/core/dist/lib/light_push/light_push.js +27 -0
- package/bundle/packages/core/dist/lib/message/version_0.js +154 -0
- package/bundle/packages/core/dist/lib/metadata/metadata.js +27 -0
- package/bundle/packages/core/dist/lib/store/store.js +27 -0
- package/bundle/packages/interfaces/dist/connection_manager.js +19 -0
- package/bundle/packages/interfaces/dist/constants.js +6 -0
- package/bundle/packages/interfaces/dist/health_indicator.js +12 -0
- package/bundle/packages/interfaces/dist/protocols.js +97 -0
- package/bundle/packages/proto/dist/generated/filter.js +445 -0
- package/bundle/packages/proto/dist/generated/filter_v2.js +424 -0
- package/bundle/packages/proto/dist/generated/light_push.js +389 -0
- package/bundle/packages/proto/dist/generated/message.js +213 -0
- package/bundle/packages/proto/dist/generated/metadata.js +130 -0
- package/bundle/packages/proto/dist/generated/peer_exchange.js +209 -0
- package/bundle/packages/proto/dist/generated/sds_message.js +105 -0
- package/bundle/packages/proto/dist/generated/store_v3.js +490 -0
- package/bundle/packages/proto/dist/generated/topic_only_message.js +61 -0
- package/bundle/packages/rln/dist/codec.js +93 -0
- package/bundle/packages/rln/dist/contract/abi/rlnv2.js +394 -0
- package/bundle/packages/rln/dist/contract/constants.js +33 -0
- package/bundle/packages/rln/dist/contract/rln_contract.js +427 -0
- package/bundle/packages/rln/dist/create.js +9 -0
- package/bundle/packages/rln/dist/identity.js +76 -0
- package/bundle/packages/rln/dist/keystore/cipher.js +31 -0
- package/bundle/packages/rln/dist/keystore/credential_validation_generated.js +119 -0
- package/bundle/packages/rln/dist/keystore/keystore.js +223 -0
- package/bundle/packages/rln/dist/keystore/keystore_validation_generated.js +74 -0
- package/bundle/packages/rln/dist/keystore/schema_validator.js +20 -0
- package/bundle/packages/rln/dist/message.js +51 -0
- package/bundle/packages/rln/dist/proof.js +54 -0
- package/bundle/packages/rln/dist/resources/verification_key.js +112 -0
- package/bundle/packages/rln/dist/resources/witness_calculator.js +330 -0
- package/bundle/packages/rln/dist/rln.js +204 -0
- package/bundle/packages/rln/dist/root_tracker.js +76 -0
- package/bundle/packages/rln/dist/utils/bytes.js +65 -0
- package/bundle/packages/rln/dist/utils/epoch.js +39 -0
- package/bundle/packages/rln/dist/utils/hash.js +10 -0
- package/bundle/packages/rln/dist/utils/metamask.js +14 -0
- package/bundle/packages/rln/dist/zerokit.js +122 -0
- package/bundle/packages/rln/node_modules/@chainsafe/bls-keystore/lib/checksum.js +52 -0
- package/bundle/packages/rln/node_modules/@chainsafe/bls-keystore/lib/cipher.js +65 -0
- package/bundle/packages/rln/node_modules/@chainsafe/bls-keystore/lib/class.js +99 -0
- package/bundle/packages/rln/node_modules/@chainsafe/bls-keystore/lib/functional.js +103 -0
- package/bundle/packages/rln/node_modules/@chainsafe/bls-keystore/lib/index.js +28 -0
- package/bundle/packages/rln/node_modules/@chainsafe/bls-keystore/lib/kdf.js +78 -0
- package/bundle/packages/rln/node_modules/@chainsafe/bls-keystore/lib/password.js +17 -0
- package/bundle/packages/rln/node_modules/@chainsafe/bls-keystore/lib/schema-validation-generated.js +1253 -0
- package/bundle/packages/rln/node_modules/@chainsafe/bls-keystore/lib/schema-validation.js +40 -0
- package/bundle/packages/rln/node_modules/@chainsafe/bls-keystore/lib/types.js +5 -0
- package/bundle/packages/rln/node_modules/@chainsafe/bls-keystore/node_modules/ethereum-cryptography/aes.js +103 -0
- package/bundle/packages/rln/node_modules/@chainsafe/bls-keystore/node_modules/ethereum-cryptography/pbkdf2.js +41 -0
- package/bundle/packages/rln/node_modules/@chainsafe/bls-keystore/node_modules/ethereum-cryptography/random.js +17 -0
- package/bundle/packages/rln/node_modules/@chainsafe/bls-keystore/node_modules/ethereum-cryptography/scrypt.js +23 -0
- package/bundle/packages/rln/node_modules/@chainsafe/bls-keystore/node_modules/ethereum-cryptography/sha256.js +12 -0
- package/bundle/packages/rln/node_modules/@chainsafe/bls-keystore/node_modules/ethereum-cryptography/utils.js +77 -0
- package/bundle/packages/rln/node_modules/@chainsafe/bls-keystore/node_modules/uuid/dist/esm-browser/index.js +9 -0
- package/bundle/packages/rln/node_modules/@chainsafe/bls-keystore/node_modules/uuid/dist/esm-browser/md5.js +215 -0
- package/bundle/packages/rln/node_modules/@chainsafe/bls-keystore/node_modules/uuid/dist/esm-browser/nil.js +3 -0
- package/bundle/packages/rln/node_modules/@chainsafe/bls-keystore/node_modules/uuid/dist/esm-browser/parse.js +35 -0
- package/bundle/packages/rln/node_modules/@chainsafe/bls-keystore/node_modules/uuid/dist/esm-browser/regex.js +3 -0
- package/bundle/packages/rln/node_modules/@chainsafe/bls-keystore/node_modules/uuid/dist/esm-browser/rng.js +21 -0
- package/bundle/packages/rln/node_modules/@chainsafe/bls-keystore/node_modules/uuid/dist/esm-browser/sha1.js +96 -0
- package/bundle/packages/rln/node_modules/@chainsafe/bls-keystore/node_modules/uuid/dist/esm-browser/stringify.js +31 -0
- package/bundle/packages/rln/node_modules/@chainsafe/bls-keystore/node_modules/uuid/dist/esm-browser/v1.js +96 -0
- package/bundle/packages/rln/node_modules/@chainsafe/bls-keystore/node_modules/uuid/dist/esm-browser/v3.js +6 -0
- package/bundle/packages/rln/node_modules/@chainsafe/bls-keystore/node_modules/uuid/dist/esm-browser/v35.js +66 -0
- package/bundle/packages/rln/node_modules/@chainsafe/bls-keystore/node_modules/uuid/dist/esm-browser/v4.js +24 -0
- package/bundle/packages/rln/node_modules/@chainsafe/bls-keystore/node_modules/uuid/dist/esm-browser/v5.js +6 -0
- package/bundle/packages/rln/node_modules/@chainsafe/bls-keystore/node_modules/uuid/dist/esm-browser/validate.js +7 -0
- package/bundle/packages/rln/node_modules/@chainsafe/bls-keystore/node_modules/uuid/dist/esm-browser/version.js +11 -0
- package/bundle/packages/rln/node_modules/@noble/hashes/_assert.js +52 -0
- package/bundle/packages/rln/node_modules/@noble/hashes/_sha2.js +124 -0
- package/bundle/packages/rln/node_modules/@noble/hashes/_u64.js +71 -0
- package/bundle/packages/rln/node_modules/@noble/hashes/cryptoBrowser.js +10 -0
- package/bundle/packages/rln/node_modules/@noble/hashes/hmac.js +88 -0
- package/bundle/packages/rln/node_modules/@noble/hashes/pbkdf2.js +99 -0
- package/bundle/packages/rln/node_modules/@noble/hashes/scrypt.js +233 -0
- package/bundle/packages/rln/node_modules/@noble/hashes/sha256.js +133 -0
- package/bundle/packages/rln/node_modules/@noble/hashes/sha512.js +243 -0
- package/bundle/packages/rln/node_modules/@noble/hashes/utils.js +167 -0
- package/bundle/packages/rln/node_modules/uuid/dist/esm-browser/native.js +4 -0
- package/bundle/packages/rln/node_modules/uuid/dist/esm-browser/rng.js +13 -0
- package/bundle/packages/rln/node_modules/uuid/dist/esm-browser/stringify.js +28 -0
- package/bundle/packages/rln/node_modules/uuid/dist/esm-browser/v4.js +19 -0
- package/bundle/packages/utils/dist/bytes/index.js +44 -0
- package/bundle/packages/utils/dist/common/sharding/index.js +91 -0
- package/bundle/packages/utils/dist/logger/index.js +31 -0
- package/bundle/resources/rln.wasm +0 -0
- package/bundle/resources/rln_final.zkey +0 -0
- package/bundle/resources/verification_key.d.ts +13 -0
- package/bundle/resources/verification_key.js +112 -0
- package/bundle/resources/witness_calculator.d.ts +11 -0
- package/bundle/resources/witness_calculator.js +328 -0
- package/dist/.tsbuildinfo +1 -1
- package/dist/__tests__/identity.test.d.ts +1 -0
- package/dist/__tests__/identity.test.js +40 -0
- package/dist/__tests__/identity.test.js.map +1 -0
- package/dist/codec.d.ts +39 -0
- package/dist/codec.js +77 -0
- package/dist/codec.js.map +1 -0
- package/dist/contract/abi/rlnv2.d.ts +42 -0
- package/dist/contract/abi/rlnv2.js +393 -0
- package/dist/contract/abi/rlnv2.js.map +1 -0
- package/dist/contract/constants.d.ts +68 -0
- package/dist/contract/constants.js +31 -0
- package/dist/contract/constants.js.map +1 -0
- package/dist/contract/index.d.ts +2 -0
- package/dist/contract/index.js +3 -0
- package/dist/contract/index.js.map +1 -0
- package/dist/contract/rln_contract.d.ts +119 -0
- package/dist/contract/rln_contract.js +421 -0
- package/dist/contract/rln_contract.js.map +1 -0
- package/dist/create.d.ts +2 -0
- package/dist/create.js +8 -0
- package/dist/create.js.map +1 -0
- package/dist/identity.d.ts +16 -0
- package/dist/identity.js +73 -0
- package/dist/identity.js.map +1 -0
- package/dist/index.d.ts +11 -2
- package/dist/index.js +11 -8
- package/dist/index.js.map +1 -1
- package/dist/keystore/cipher.d.ts +4 -0
- package/dist/keystore/cipher.js +28 -0
- package/dist/keystore/cipher.js.map +1 -0
- package/dist/keystore/credential_validation_generated.d.ts +8 -0
- package/dist/keystore/credential_validation_generated.js +121 -0
- package/dist/keystore/credential_validation_generated.js.map +1 -0
- package/dist/keystore/index.d.ts +4 -0
- package/dist/keystore/index.js +3 -0
- package/dist/keystore/index.js.map +1 -0
- package/dist/keystore/keystore.d.ts +50 -0
- package/dist/keystore/keystore.js +205 -0
- package/dist/keystore/keystore.js.map +1 -0
- package/dist/keystore/keystore_validation_generated.d.ts +8 -0
- package/dist/keystore/keystore_validation_generated.js +75 -0
- package/dist/keystore/keystore_validation_generated.js.map +1 -0
- package/dist/keystore/schema_validator.d.ts +2 -0
- package/dist/keystore/schema_validator.js +18 -0
- package/dist/keystore/schema_validator.js.map +1 -0
- package/dist/keystore/types.d.ts +29 -0
- package/dist/keystore/types.js +2 -0
- package/dist/keystore/types.js.map +1 -0
- package/dist/message.d.ts +18 -0
- package/dist/message.js +49 -0
- package/dist/message.js.map +1 -0
- package/dist/proof.d.ts +21 -0
- package/dist/proof.js +50 -0
- package/dist/proof.js.map +1 -0
- package/dist/resources/rln.wasm +0 -0
- package/dist/resources/rln_final.zkey +0 -0
- package/dist/resources/verification_key.d.ts +13 -0
- package/dist/resources/verification_key.js +112 -0
- package/dist/resources/witness_calculator.d.ts +11 -0
- package/dist/resources/witness_calculator.js +328 -0
- package/dist/rln.d.ts +59 -13
- package/dist/rln.js +164 -81
- package/dist/rln.js.map +1 -1
- package/dist/root_tracker.d.ts +10 -0
- package/dist/root_tracker.js +75 -0
- package/dist/root_tracker.js.map +1 -0
- package/dist/utils/bytes.d.ts +20 -0
- package/dist/utils/bytes.js +64 -0
- package/dist/utils/bytes.js.map +1 -0
- package/dist/utils/epoch.d.ts +3 -0
- package/dist/utils/epoch.js +23 -0
- package/dist/utils/epoch.js.map +1 -0
- package/dist/utils/hash.d.ts +2 -0
- package/dist/utils/hash.js +13 -0
- package/dist/utils/hash.js.map +1 -0
- package/dist/utils/index.d.ts +4 -0
- package/dist/utils/index.js +5 -0
- package/dist/utils/index.js.map +1 -0
- package/dist/utils/metamask.d.ts +2 -0
- package/dist/utils/metamask.js +12 -0
- package/dist/utils/metamask.js.map +1 -0
- package/dist/zerokit.d.ts +19 -0
- package/dist/zerokit.js +119 -0
- package/dist/zerokit.js.map +1 -0
- package/package.json +1 -126
- package/src/__tests__/identity.test.ts +50 -0
- package/src/codec.ts +134 -0
- package/src/contract/abi/rlnv2.ts +392 -0
- package/src/contract/constants.ts +35 -0
- package/src/contract/index.ts +2 -0
- package/src/contract/rln_contract.ts +673 -0
- package/src/create.ts +9 -0
- package/src/identity.ts +101 -0
- package/src/index.ts +24 -10
- package/src/keystore/cipher.ts +54 -0
- package/src/keystore/credential_validation_generated.ts +7 -0
- package/src/keystore/index.ts +5 -0
- package/src/keystore/keystore.ts +330 -0
- package/src/keystore/keystore_validation_generated.ts +7 -0
- package/src/keystore/schema_validator.ts +34 -0
- package/src/keystore/types.ts +36 -0
- package/src/message.ts +70 -0
- package/src/proof.ts +69 -0
- package/src/resources/verification_key.d.ts +13 -0
- package/src/resources/witness_calculator.d.ts +11 -0
- package/src/rln.ts +270 -106
- package/src/root_tracker.ts +92 -0
- package/src/utils/bytes.ts +84 -0
- package/src/utils/epoch.ts +30 -0
- package/src/utils/hash.ts +15 -0
- package/src/utils/index.ts +9 -0
- package/src/utils/metamask.ts +17 -0
- package/src/zerokit.ts +214 -0
- package/bundle/02bce7e5f3bcf834.wasm +0 -0
- package/bundle/rln-f87f6dbe.js +0 -563
- package/dist/resources.d.ts +0 -4
- package/dist/resources.js +0 -5
- package/dist/resources.js.map +0 -1
- package/dist/witness_calculator.d.ts +0 -16
- package/dist/witness_calculator.js +0 -291
- package/dist/witness_calculator.js.map +0 -1
- package/dist/zerokit/rln_wasm.d.ts +0 -1
- package/dist/zerokit/rln_wasm.js +0 -2
- package/dist/zerokit/rln_wasm.js.map +0 -1
- package/dist/zerokit/rln_wasm_bg.d.ts +0 -108
- package/dist/zerokit/rln_wasm_bg.js +0 -592
- package/dist/zerokit/rln_wasm_bg.js.map +0 -1
- package/dist/zerokit/rln_wasm_bg.wasm +0 -0
- package/src/resources.ts +0 -10
- package/src/witness_calculator.d.ts +0 -4
@@ -1,592 +0,0 @@
|
|
1
|
-
import * as wasm from './rln_wasm_bg.wasm';
|
2
|
-
const lTextDecoder = typeof TextDecoder === 'undefined' ? (0, module.require)('util').TextDecoder : TextDecoder;
|
3
|
-
let cachedTextDecoder = new lTextDecoder('utf-8', { ignoreBOM: true, fatal: true });
|
4
|
-
cachedTextDecoder.decode();
|
5
|
-
let cachedUint8Memory0 = new Uint8Array();
|
6
|
-
function getUint8Memory0() {
|
7
|
-
if (cachedUint8Memory0.byteLength === 0) {
|
8
|
-
cachedUint8Memory0 = new Uint8Array(wasm.memory.buffer);
|
9
|
-
}
|
10
|
-
return cachedUint8Memory0;
|
11
|
-
}
|
12
|
-
function getStringFromWasm0(ptr, len) {
|
13
|
-
return cachedTextDecoder.decode(getUint8Memory0().subarray(ptr, ptr + len));
|
14
|
-
}
|
15
|
-
const heap = new Array(32).fill(undefined);
|
16
|
-
heap.push(undefined, null, true, false);
|
17
|
-
let heap_next = heap.length;
|
18
|
-
function addHeapObject(obj) {
|
19
|
-
if (heap_next === heap.length)
|
20
|
-
heap.push(heap.length + 1);
|
21
|
-
const idx = heap_next;
|
22
|
-
heap_next = heap[idx];
|
23
|
-
heap[idx] = obj;
|
24
|
-
return idx;
|
25
|
-
}
|
26
|
-
function getObject(idx) { return heap[idx]; }
|
27
|
-
function dropObject(idx) {
|
28
|
-
if (idx < 36)
|
29
|
-
return;
|
30
|
-
heap[idx] = heap_next;
|
31
|
-
heap_next = idx;
|
32
|
-
}
|
33
|
-
function takeObject(idx) {
|
34
|
-
const ret = getObject(idx);
|
35
|
-
dropObject(idx);
|
36
|
-
return ret;
|
37
|
-
}
|
38
|
-
let WASM_VECTOR_LEN = 0;
|
39
|
-
const lTextEncoder = typeof TextEncoder === 'undefined' ? (0, module.require)('util').TextEncoder : TextEncoder;
|
40
|
-
let cachedTextEncoder = new lTextEncoder('utf-8');
|
41
|
-
const encodeString = (typeof cachedTextEncoder.encodeInto === 'function'
|
42
|
-
? function (arg, view) {
|
43
|
-
return cachedTextEncoder.encodeInto(arg, view);
|
44
|
-
}
|
45
|
-
: function (arg, view) {
|
46
|
-
const buf = cachedTextEncoder.encode(arg);
|
47
|
-
view.set(buf);
|
48
|
-
return {
|
49
|
-
read: arg.length,
|
50
|
-
written: buf.length
|
51
|
-
};
|
52
|
-
});
|
53
|
-
function passStringToWasm0(arg, malloc, realloc) {
|
54
|
-
if (realloc === undefined) {
|
55
|
-
const buf = cachedTextEncoder.encode(arg);
|
56
|
-
const ptr = malloc(buf.length);
|
57
|
-
getUint8Memory0().subarray(ptr, ptr + buf.length).set(buf);
|
58
|
-
WASM_VECTOR_LEN = buf.length;
|
59
|
-
return ptr;
|
60
|
-
}
|
61
|
-
let len = arg.length;
|
62
|
-
let ptr = malloc(len);
|
63
|
-
const mem = getUint8Memory0();
|
64
|
-
let offset = 0;
|
65
|
-
for (; offset < len; offset++) {
|
66
|
-
const code = arg.charCodeAt(offset);
|
67
|
-
if (code > 0x7F)
|
68
|
-
break;
|
69
|
-
mem[ptr + offset] = code;
|
70
|
-
}
|
71
|
-
if (offset !== len) {
|
72
|
-
if (offset !== 0) {
|
73
|
-
arg = arg.slice(offset);
|
74
|
-
}
|
75
|
-
ptr = realloc(ptr, len, len = offset + arg.length * 3);
|
76
|
-
const view = getUint8Memory0().subarray(ptr + offset, ptr + len);
|
77
|
-
const ret = encodeString(arg, view);
|
78
|
-
offset += ret.written;
|
79
|
-
}
|
80
|
-
WASM_VECTOR_LEN = offset;
|
81
|
-
return ptr;
|
82
|
-
}
|
83
|
-
function isLikeNone(x) {
|
84
|
-
return x === undefined || x === null;
|
85
|
-
}
|
86
|
-
let cachedInt32Memory0 = new Int32Array();
|
87
|
-
function getInt32Memory0() {
|
88
|
-
if (cachedInt32Memory0.byteLength === 0) {
|
89
|
-
cachedInt32Memory0 = new Int32Array(wasm.memory.buffer);
|
90
|
-
}
|
91
|
-
return cachedInt32Memory0;
|
92
|
-
}
|
93
|
-
function debugString(val) {
|
94
|
-
// primitive types
|
95
|
-
const type = typeof val;
|
96
|
-
if (type == 'number' || type == 'boolean' || val == null) {
|
97
|
-
return `${val}`;
|
98
|
-
}
|
99
|
-
if (type == 'string') {
|
100
|
-
return `"${val}"`;
|
101
|
-
}
|
102
|
-
if (type == 'symbol') {
|
103
|
-
const description = val.description;
|
104
|
-
if (description == null) {
|
105
|
-
return 'Symbol';
|
106
|
-
}
|
107
|
-
else {
|
108
|
-
return `Symbol(${description})`;
|
109
|
-
}
|
110
|
-
}
|
111
|
-
if (type == 'function') {
|
112
|
-
const name = val.name;
|
113
|
-
if (typeof name == 'string' && name.length > 0) {
|
114
|
-
return `Function(${name})`;
|
115
|
-
}
|
116
|
-
else {
|
117
|
-
return 'Function';
|
118
|
-
}
|
119
|
-
}
|
120
|
-
// objects
|
121
|
-
if (Array.isArray(val)) {
|
122
|
-
const length = val.length;
|
123
|
-
let debug = '[';
|
124
|
-
if (length > 0) {
|
125
|
-
debug += debugString(val[0]);
|
126
|
-
}
|
127
|
-
for (let i = 1; i < length; i++) {
|
128
|
-
debug += ', ' + debugString(val[i]);
|
129
|
-
}
|
130
|
-
debug += ']';
|
131
|
-
return debug;
|
132
|
-
}
|
133
|
-
// Test for built-in
|
134
|
-
const builtInMatches = /\[object ([^\]]+)\]/.exec(toString.call(val));
|
135
|
-
let className;
|
136
|
-
if (builtInMatches.length > 1) {
|
137
|
-
className = builtInMatches[1];
|
138
|
-
}
|
139
|
-
else {
|
140
|
-
// Failed to match the standard '[object ClassName]'
|
141
|
-
return toString.call(val);
|
142
|
-
}
|
143
|
-
if (className == 'Object') {
|
144
|
-
// we're a user defined class or Object
|
145
|
-
// JSON.stringify avoids problems with cycles, and is generally much
|
146
|
-
// easier than looping through ownProperties of `val`.
|
147
|
-
try {
|
148
|
-
return 'Object(' + JSON.stringify(val) + ')';
|
149
|
-
}
|
150
|
-
catch (_) {
|
151
|
-
return 'Object';
|
152
|
-
}
|
153
|
-
}
|
154
|
-
// errors
|
155
|
-
if (val instanceof Error) {
|
156
|
-
return `${val.name}: ${val.message}\n${val.stack}`;
|
157
|
-
}
|
158
|
-
// TODO we could test for more things here, like `Set`s and `Map`s.
|
159
|
-
return className;
|
160
|
-
}
|
161
|
-
/**
|
162
|
-
*/
|
163
|
-
export function init_panic_hook() {
|
164
|
-
wasm.init_panic_hook();
|
165
|
-
}
|
166
|
-
/**
|
167
|
-
* @param {number} tree_height
|
168
|
-
* @param {Uint8Array} zkey
|
169
|
-
* @param {Uint8Array} vk
|
170
|
-
* @returns {number}
|
171
|
-
*/
|
172
|
-
export function newRLN(tree_height, zkey, vk) {
|
173
|
-
const ret = wasm.newRLN(tree_height, addHeapObject(zkey), addHeapObject(vk));
|
174
|
-
return ret;
|
175
|
-
}
|
176
|
-
/**
|
177
|
-
* @param {number} ctx
|
178
|
-
* @param {Uint8Array} input
|
179
|
-
* @returns {Uint8Array}
|
180
|
-
*/
|
181
|
-
export function getSerializedRLNWitness(ctx, input) {
|
182
|
-
const ret = wasm.getSerializedRLNWitness(ctx, addHeapObject(input));
|
183
|
-
return takeObject(ret);
|
184
|
-
}
|
185
|
-
/**
|
186
|
-
* @param {number} ctx
|
187
|
-
* @param {Uint8Array} input
|
188
|
-
*/
|
189
|
-
export function insertMember(ctx, input) {
|
190
|
-
try {
|
191
|
-
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
|
192
|
-
wasm.insertMember(retptr, ctx, addHeapObject(input));
|
193
|
-
var r0 = getInt32Memory0()[retptr / 4 + 0];
|
194
|
-
var r1 = getInt32Memory0()[retptr / 4 + 1];
|
195
|
-
if (r1) {
|
196
|
-
throw takeObject(r0);
|
197
|
-
}
|
198
|
-
}
|
199
|
-
finally {
|
200
|
-
wasm.__wbindgen_add_to_stack_pointer(16);
|
201
|
-
}
|
202
|
-
}
|
203
|
-
/**
|
204
|
-
* @param {number} ctx
|
205
|
-
* @param {Uint8Array} serialized_witness
|
206
|
-
* @returns {object}
|
207
|
-
*/
|
208
|
-
export function RLNWitnessToJson(ctx, serialized_witness) {
|
209
|
-
const ret = wasm.RLNWitnessToJson(ctx, addHeapObject(serialized_witness));
|
210
|
-
return takeObject(ret);
|
211
|
-
}
|
212
|
-
let cachedUint32Memory0 = new Uint32Array();
|
213
|
-
function getUint32Memory0() {
|
214
|
-
if (cachedUint32Memory0.byteLength === 0) {
|
215
|
-
cachedUint32Memory0 = new Uint32Array(wasm.memory.buffer);
|
216
|
-
}
|
217
|
-
return cachedUint32Memory0;
|
218
|
-
}
|
219
|
-
function passArrayJsValueToWasm0(array, malloc) {
|
220
|
-
const ptr = malloc(array.length * 4);
|
221
|
-
const mem = getUint32Memory0();
|
222
|
-
for (let i = 0; i < array.length; i++) {
|
223
|
-
mem[ptr / 4 + i] = addHeapObject(array[i]);
|
224
|
-
}
|
225
|
-
WASM_VECTOR_LEN = array.length;
|
226
|
-
return ptr;
|
227
|
-
}
|
228
|
-
/**
|
229
|
-
* @param {number} ctx
|
230
|
-
* @param {(bigint)[]} calculated_witness
|
231
|
-
* @param {Uint8Array} serialized_witness
|
232
|
-
* @returns {Uint8Array}
|
233
|
-
*/
|
234
|
-
export function generate_rln_proof_with_witness(ctx, calculated_witness, serialized_witness) {
|
235
|
-
try {
|
236
|
-
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
|
237
|
-
const ptr0 = passArrayJsValueToWasm0(calculated_witness, wasm.__wbindgen_malloc);
|
238
|
-
const len0 = WASM_VECTOR_LEN;
|
239
|
-
wasm.generate_rln_proof_with_witness(retptr, ctx, ptr0, len0, addHeapObject(serialized_witness));
|
240
|
-
var r0 = getInt32Memory0()[retptr / 4 + 0];
|
241
|
-
var r1 = getInt32Memory0()[retptr / 4 + 1];
|
242
|
-
var r2 = getInt32Memory0()[retptr / 4 + 2];
|
243
|
-
if (r2) {
|
244
|
-
throw takeObject(r1);
|
245
|
-
}
|
246
|
-
return takeObject(r0);
|
247
|
-
}
|
248
|
-
finally {
|
249
|
-
wasm.__wbindgen_add_to_stack_pointer(16);
|
250
|
-
}
|
251
|
-
}
|
252
|
-
/**
|
253
|
-
* @param {number} ctx
|
254
|
-
* @returns {Uint8Array}
|
255
|
-
*/
|
256
|
-
export function generateMembershipKey(ctx) {
|
257
|
-
try {
|
258
|
-
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
|
259
|
-
wasm.generateMembershipKey(retptr, ctx);
|
260
|
-
var r0 = getInt32Memory0()[retptr / 4 + 0];
|
261
|
-
var r1 = getInt32Memory0()[retptr / 4 + 1];
|
262
|
-
var r2 = getInt32Memory0()[retptr / 4 + 2];
|
263
|
-
if (r2) {
|
264
|
-
throw takeObject(r1);
|
265
|
-
}
|
266
|
-
return takeObject(r0);
|
267
|
-
}
|
268
|
-
finally {
|
269
|
-
wasm.__wbindgen_add_to_stack_pointer(16);
|
270
|
-
}
|
271
|
-
}
|
272
|
-
/**
|
273
|
-
* @param {number} ctx
|
274
|
-
* @param {Uint8Array} proof
|
275
|
-
* @returns {boolean}
|
276
|
-
*/
|
277
|
-
export function verifyProof(ctx, proof) {
|
278
|
-
const ret = wasm.verifyProof(ctx, addHeapObject(proof));
|
279
|
-
return ret !== 0;
|
280
|
-
}
|
281
|
-
function handleError(f, args) {
|
282
|
-
try {
|
283
|
-
return f.apply(this, args);
|
284
|
-
}
|
285
|
-
catch (e) {
|
286
|
-
wasm.__wbindgen_exn_store(addHeapObject(e));
|
287
|
-
}
|
288
|
-
}
|
289
|
-
function getArrayU8FromWasm0(ptr, len) {
|
290
|
-
return getUint8Memory0().subarray(ptr / 1, ptr / 1 + len);
|
291
|
-
}
|
292
|
-
const u32CvtShim = new Uint32Array(2);
|
293
|
-
const uint64CvtShim = new BigUint64Array(u32CvtShim.buffer);
|
294
|
-
const int64CvtShim = new BigInt64Array(u32CvtShim.buffer);
|
295
|
-
/**
|
296
|
-
*/
|
297
|
-
export class RLN {
|
298
|
-
__destroy_into_raw() {
|
299
|
-
const ptr = this.ptr;
|
300
|
-
this.ptr = 0;
|
301
|
-
return ptr;
|
302
|
-
}
|
303
|
-
free() {
|
304
|
-
const ptr = this.__destroy_into_raw();
|
305
|
-
wasm.__wbg_rln_free(ptr);
|
306
|
-
}
|
307
|
-
}
|
308
|
-
/**
|
309
|
-
* A struct representing an aborted instruction execution, with a message
|
310
|
-
* indicating the cause.
|
311
|
-
*/
|
312
|
-
export class WasmerRuntimeError {
|
313
|
-
__destroy_into_raw() {
|
314
|
-
const ptr = this.ptr;
|
315
|
-
this.ptr = 0;
|
316
|
-
return ptr;
|
317
|
-
}
|
318
|
-
free() {
|
319
|
-
const ptr = this.__destroy_into_raw();
|
320
|
-
wasm.__wbg_wasmerruntimeerror_free(ptr);
|
321
|
-
}
|
322
|
-
}
|
323
|
-
export function __wbindgen_string_new(arg0, arg1) {
|
324
|
-
const ret = getStringFromWasm0(arg0, arg1);
|
325
|
-
return addHeapObject(ret);
|
326
|
-
}
|
327
|
-
;
|
328
|
-
export function __wbindgen_object_drop_ref(arg0) {
|
329
|
-
takeObject(arg0);
|
330
|
-
}
|
331
|
-
;
|
332
|
-
export function __wbindgen_is_string(arg0) {
|
333
|
-
const ret = typeof (getObject(arg0)) === 'string';
|
334
|
-
return ret;
|
335
|
-
}
|
336
|
-
;
|
337
|
-
export function __wbindgen_string_get(arg0, arg1) {
|
338
|
-
const obj = getObject(arg1);
|
339
|
-
const ret = typeof (obj) === 'string' ? obj : undefined;
|
340
|
-
var ptr0 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
341
|
-
var len0 = WASM_VECTOR_LEN;
|
342
|
-
getInt32Memory0()[arg0 / 4 + 1] = len0;
|
343
|
-
getInt32Memory0()[arg0 / 4 + 0] = ptr0;
|
344
|
-
}
|
345
|
-
;
|
346
|
-
export function __wbg_BigInt_73b2c10d8e6eb5a5(arg0, arg1) {
|
347
|
-
u32CvtShim[0] = arg0;
|
348
|
-
u32CvtShim[1] = arg1;
|
349
|
-
const n0 = int64CvtShim[0];
|
350
|
-
const ret = BigInt(n0);
|
351
|
-
return addHeapObject(ret);
|
352
|
-
}
|
353
|
-
;
|
354
|
-
export function __wbindgen_number_new(arg0) {
|
355
|
-
const ret = arg0;
|
356
|
-
return addHeapObject(ret);
|
357
|
-
}
|
358
|
-
;
|
359
|
-
export function __wbg_BigInt_1a499fbb5f402f4c(arg0, arg1) {
|
360
|
-
u32CvtShim[0] = arg0;
|
361
|
-
u32CvtShim[1] = arg1;
|
362
|
-
const n0 = uint64CvtShim[0];
|
363
|
-
const ret = BigInt(n0);
|
364
|
-
return addHeapObject(ret);
|
365
|
-
}
|
366
|
-
;
|
367
|
-
export function __wbindgen_object_clone_ref(arg0) {
|
368
|
-
const ret = getObject(arg0);
|
369
|
-
return addHeapObject(ret);
|
370
|
-
}
|
371
|
-
;
|
372
|
-
export function __wbindgen_is_undefined(arg0) {
|
373
|
-
const ret = getObject(arg0) === undefined;
|
374
|
-
return ret;
|
375
|
-
}
|
376
|
-
;
|
377
|
-
export function __wbindgen_is_object(arg0) {
|
378
|
-
const val = getObject(arg0);
|
379
|
-
const ret = typeof (val) === 'object' && val !== null;
|
380
|
-
return ret;
|
381
|
-
}
|
382
|
-
;
|
383
|
-
export function __wbg_set_e93b31d47b90bff6(arg0, arg1, arg2) {
|
384
|
-
getObject(arg0)[takeObject(arg1)] = takeObject(arg2);
|
385
|
-
}
|
386
|
-
;
|
387
|
-
export function __wbg_new_693216e109162396() {
|
388
|
-
const ret = new Error();
|
389
|
-
return addHeapObject(ret);
|
390
|
-
}
|
391
|
-
;
|
392
|
-
export function __wbg_stack_0ddaca5d1abfb52f(arg0, arg1) {
|
393
|
-
const ret = getObject(arg1).stack;
|
394
|
-
const ptr0 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
395
|
-
const len0 = WASM_VECTOR_LEN;
|
396
|
-
getInt32Memory0()[arg0 / 4 + 1] = len0;
|
397
|
-
getInt32Memory0()[arg0 / 4 + 0] = ptr0;
|
398
|
-
}
|
399
|
-
;
|
400
|
-
export function __wbg_error_09919627ac0992f5(arg0, arg1) {
|
401
|
-
try {
|
402
|
-
console.error(getStringFromWasm0(arg0, arg1));
|
403
|
-
}
|
404
|
-
finally {
|
405
|
-
wasm.__wbindgen_free(arg0, arg1);
|
406
|
-
}
|
407
|
-
}
|
408
|
-
;
|
409
|
-
export function __wbg_process_e56fd54cf6319b6c(arg0) {
|
410
|
-
const ret = getObject(arg0).process;
|
411
|
-
return addHeapObject(ret);
|
412
|
-
}
|
413
|
-
;
|
414
|
-
export function __wbg_versions_77e21455908dad33(arg0) {
|
415
|
-
const ret = getObject(arg0).versions;
|
416
|
-
return addHeapObject(ret);
|
417
|
-
}
|
418
|
-
;
|
419
|
-
export function __wbg_node_0dd25d832e4785d5(arg0) {
|
420
|
-
const ret = getObject(arg0).node;
|
421
|
-
return addHeapObject(ret);
|
422
|
-
}
|
423
|
-
;
|
424
|
-
export function __wbg_static_accessor_NODE_MODULE_26b231378c1be7dd() {
|
425
|
-
const ret = module;
|
426
|
-
return addHeapObject(ret);
|
427
|
-
}
|
428
|
-
;
|
429
|
-
export function __wbg_require_0db1598d9ccecb30() {
|
430
|
-
return handleError(function (arg0, arg1, arg2) {
|
431
|
-
const ret = getObject(arg0).require(getStringFromWasm0(arg1, arg2));
|
432
|
-
return addHeapObject(ret);
|
433
|
-
}, arguments);
|
434
|
-
}
|
435
|
-
;
|
436
|
-
export function __wbg_crypto_b95d7173266618a9(arg0) {
|
437
|
-
const ret = getObject(arg0).crypto;
|
438
|
-
return addHeapObject(ret);
|
439
|
-
}
|
440
|
-
;
|
441
|
-
export function __wbg_msCrypto_5a86d77a66230f81(arg0) {
|
442
|
-
const ret = getObject(arg0).msCrypto;
|
443
|
-
return addHeapObject(ret);
|
444
|
-
}
|
445
|
-
;
|
446
|
-
export function __wbg_getRandomValues_b14734aa289bc356() {
|
447
|
-
return handleError(function (arg0, arg1) {
|
448
|
-
getObject(arg0).getRandomValues(getObject(arg1));
|
449
|
-
}, arguments);
|
450
|
-
}
|
451
|
-
;
|
452
|
-
export function __wbg_randomFillSync_91e2b39becca6147() {
|
453
|
-
return handleError(function (arg0, arg1, arg2) {
|
454
|
-
getObject(arg0).randomFillSync(getArrayU8FromWasm0(arg1, arg2));
|
455
|
-
}, arguments);
|
456
|
-
}
|
457
|
-
;
|
458
|
-
export function __wbg_new_ee1a3da85465d621() {
|
459
|
-
const ret = new Array();
|
460
|
-
return addHeapObject(ret);
|
461
|
-
}
|
462
|
-
;
|
463
|
-
export function __wbg_newnoargs_971e9a5abe185139(arg0, arg1) {
|
464
|
-
const ret = new Function(getStringFromWasm0(arg0, arg1));
|
465
|
-
return addHeapObject(ret);
|
466
|
-
}
|
467
|
-
;
|
468
|
-
export function __wbg_new_ac586205e4424583() {
|
469
|
-
const ret = new Map();
|
470
|
-
return addHeapObject(ret);
|
471
|
-
}
|
472
|
-
;
|
473
|
-
export function __wbg_call_33d7bcddbbfa394a() {
|
474
|
-
return handleError(function (arg0, arg1) {
|
475
|
-
const ret = getObject(arg0).call(getObject(arg1));
|
476
|
-
return addHeapObject(ret);
|
477
|
-
}, arguments);
|
478
|
-
}
|
479
|
-
;
|
480
|
-
export function __wbg_new_e6a9fecc2bf26696() {
|
481
|
-
const ret = new Object();
|
482
|
-
return addHeapObject(ret);
|
483
|
-
}
|
484
|
-
;
|
485
|
-
export function __wbg_self_fd00a1ef86d1b2ed() {
|
486
|
-
return handleError(function () {
|
487
|
-
const ret = self.self;
|
488
|
-
return addHeapObject(ret);
|
489
|
-
}, arguments);
|
490
|
-
}
|
491
|
-
;
|
492
|
-
export function __wbg_window_6f6e346d8bbd61d7() {
|
493
|
-
return handleError(function () {
|
494
|
-
const ret = window.window;
|
495
|
-
return addHeapObject(ret);
|
496
|
-
}, arguments);
|
497
|
-
}
|
498
|
-
;
|
499
|
-
export function __wbg_globalThis_3348936ac49df00a() {
|
500
|
-
return handleError(function () {
|
501
|
-
const ret = globalThis.globalThis;
|
502
|
-
return addHeapObject(ret);
|
503
|
-
}, arguments);
|
504
|
-
}
|
505
|
-
;
|
506
|
-
export function __wbg_global_67175caf56f55ca9() {
|
507
|
-
return handleError(function () {
|
508
|
-
const ret = global.global;
|
509
|
-
return addHeapObject(ret);
|
510
|
-
}, arguments);
|
511
|
-
}
|
512
|
-
;
|
513
|
-
export function __wbg_set_64cc39858b2ec3f1(arg0, arg1, arg2) {
|
514
|
-
getObject(arg0)[arg1 >>> 0] = takeObject(arg2);
|
515
|
-
}
|
516
|
-
;
|
517
|
-
export function __wbg_toString_b1dd862c6b41dd95() {
|
518
|
-
return handleError(function (arg0, arg1) {
|
519
|
-
const ret = getObject(arg0).toString(arg1);
|
520
|
-
return addHeapObject(ret);
|
521
|
-
}, arguments);
|
522
|
-
}
|
523
|
-
;
|
524
|
-
export function __wbg_new_3ee7ebe9952c1fbd(arg0, arg1) {
|
525
|
-
const ret = new Error(getStringFromWasm0(arg0, arg1));
|
526
|
-
return addHeapObject(ret);
|
527
|
-
}
|
528
|
-
;
|
529
|
-
export function __wbg_set_a55cff623a9eaa21(arg0, arg1, arg2) {
|
530
|
-
const ret = getObject(arg0).set(getObject(arg1), getObject(arg2));
|
531
|
-
return addHeapObject(ret);
|
532
|
-
}
|
533
|
-
;
|
534
|
-
export function __wbg_fromEntries_576d8e028b09637c() {
|
535
|
-
return handleError(function (arg0) {
|
536
|
-
const ret = Object.fromEntries(getObject(arg0));
|
537
|
-
return addHeapObject(ret);
|
538
|
-
}, arguments);
|
539
|
-
}
|
540
|
-
;
|
541
|
-
export function __wbg_buffer_34f5ec9f8a838ba0(arg0) {
|
542
|
-
const ret = getObject(arg0).buffer;
|
543
|
-
return addHeapObject(ret);
|
544
|
-
}
|
545
|
-
;
|
546
|
-
export function __wbg_newwithbyteoffsetandlength_88fdad741db1b182(arg0, arg1, arg2) {
|
547
|
-
const ret = new Uint8Array(getObject(arg0), arg1 >>> 0, arg2 >>> 0);
|
548
|
-
return addHeapObject(ret);
|
549
|
-
}
|
550
|
-
;
|
551
|
-
export function __wbg_new_cda198d9dbc6d7ea(arg0) {
|
552
|
-
const ret = new Uint8Array(getObject(arg0));
|
553
|
-
return addHeapObject(ret);
|
554
|
-
}
|
555
|
-
;
|
556
|
-
export function __wbg_set_1a930cfcda1a8067(arg0, arg1, arg2) {
|
557
|
-
getObject(arg0).set(getObject(arg1), arg2 >>> 0);
|
558
|
-
}
|
559
|
-
;
|
560
|
-
export function __wbg_length_51f19f73d6d9eff3(arg0) {
|
561
|
-
const ret = getObject(arg0).length;
|
562
|
-
return ret;
|
563
|
-
}
|
564
|
-
;
|
565
|
-
export function __wbg_newwithlength_66e5530e7079ea1b(arg0) {
|
566
|
-
const ret = new Uint8Array(arg0 >>> 0);
|
567
|
-
return addHeapObject(ret);
|
568
|
-
}
|
569
|
-
;
|
570
|
-
export function __wbg_subarray_270ff8dd5582c1ac(arg0, arg1, arg2) {
|
571
|
-
const ret = getObject(arg0).subarray(arg1 >>> 0, arg2 >>> 0);
|
572
|
-
return addHeapObject(ret);
|
573
|
-
}
|
574
|
-
;
|
575
|
-
export function __wbindgen_debug_string(arg0, arg1) {
|
576
|
-
const ret = debugString(getObject(arg1));
|
577
|
-
const ptr0 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
578
|
-
const len0 = WASM_VECTOR_LEN;
|
579
|
-
getInt32Memory0()[arg0 / 4 + 1] = len0;
|
580
|
-
getInt32Memory0()[arg0 / 4 + 0] = ptr0;
|
581
|
-
}
|
582
|
-
;
|
583
|
-
export function __wbindgen_throw(arg0, arg1) {
|
584
|
-
throw new Error(getStringFromWasm0(arg0, arg1));
|
585
|
-
}
|
586
|
-
;
|
587
|
-
export function __wbindgen_memory() {
|
588
|
-
const ret = wasm.memory;
|
589
|
-
return addHeapObject(ret);
|
590
|
-
}
|
591
|
-
;
|
592
|
-
//# sourceMappingURL=rln_wasm_bg.js.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"rln_wasm_bg.js","sourceRoot":"","sources":["../../src/zerokit/rln_wasm_bg.js"],"names":[],"mappings":"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"}
|
Binary file
|