quantum-coin-js-sdk 1.0.36 → 1.0.39
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 +34 -0
- package/example/conversion-example.js +4 -4
- package/example/example-misc.js +0 -1
- package/example/example-rpc-send.js +0 -1
- package/example/example-send.js +0 -1
- package/example/example-token-pack-unpack.js +0 -1
- package/example/example-wallet-version4.js +0 -1
- package/example/example.js +5 -5
- package/example/node_modules/.bin/sdkgen +16 -0
- package/example/node_modules/.bin/sdkgen.cmd +17 -0
- package/example/node_modules/.bin/sdkgen.ps1 +28 -0
- package/example/node_modules/.package-lock.json +21 -99
- package/example/node_modules/quantumcoin/.github/workflows/publish-npmjs.yaml +22 -0
- package/example/node_modules/quantumcoin/LICENSE +21 -0
- package/example/node_modules/quantumcoin/README-SDK.md +828 -0
- package/example/node_modules/quantumcoin/README.md +197 -0
- package/example/node_modules/quantumcoin/config.d.ts +50 -0
- package/example/node_modules/quantumcoin/config.js +123 -0
- package/example/node_modules/quantumcoin/examples/AllSolidityTypes.sol +184 -0
- package/example/node_modules/quantumcoin/examples/SimpleIERC20.sol +74 -0
- package/example/node_modules/quantumcoin/examples/events.js +41 -0
- package/example/node_modules/quantumcoin/examples/events.ts +35 -0
- package/example/node_modules/quantumcoin/examples/example-generator-sdk-js.js +100 -0
- package/example/node_modules/quantumcoin/examples/example-generator-sdk-js.ts +77 -0
- package/example/node_modules/quantumcoin/examples/example-generator-sdk-ts.js +100 -0
- package/example/node_modules/quantumcoin/examples/example-generator-sdk-ts.ts +77 -0
- package/example/node_modules/quantumcoin/examples/example.js +67 -0
- package/example/node_modules/quantumcoin/examples/example.ts +56 -0
- package/example/node_modules/quantumcoin/examples/offline-signing.js +77 -0
- package/example/node_modules/quantumcoin/examples/offline-signing.ts +65 -0
- package/example/node_modules/quantumcoin/examples/package-lock.json +596 -0
- package/example/node_modules/quantumcoin/examples/package.json +32 -0
- package/example/node_modules/quantumcoin/examples/read-operations.js +32 -0
- package/example/node_modules/quantumcoin/examples/read-operations.ts +31 -0
- package/example/node_modules/quantumcoin/examples/sdk-generator-erc20.inline.json +251 -0
- package/example/node_modules/quantumcoin/examples/solidity-types.ts +43 -0
- package/example/node_modules/quantumcoin/examples/wallet-offline.js +36 -0
- package/example/node_modules/quantumcoin/examples/wallet-offline.ts +26 -0
- package/example/node_modules/quantumcoin/generate-sdk.js +1846 -0
- package/example/node_modules/quantumcoin/index.js +12 -0
- package/example/node_modules/quantumcoin/package.json +95 -0
- package/example/node_modules/quantumcoin/scripts/copy-declarations.js +31 -0
- package/example/node_modules/quantumcoin/scripts/run-all-one-by-one.js +151 -0
- package/example/node_modules/quantumcoin/src/abi/fragments.d.ts +42 -0
- package/example/node_modules/quantumcoin/src/abi/fragments.js +63 -0
- package/example/node_modules/quantumcoin/src/abi/index.d.ts +13 -0
- package/example/node_modules/quantumcoin/src/abi/index.js +9 -0
- package/example/node_modules/quantumcoin/src/abi/interface.d.ts +128 -0
- package/example/node_modules/quantumcoin/src/abi/interface.js +605 -0
- package/example/node_modules/quantumcoin/src/abi/js-abi-coder.d.ts +8 -0
- package/example/node_modules/quantumcoin/src/abi/js-abi-coder.js +538 -0
- package/example/node_modules/quantumcoin/src/constants.d.ts +61 -0
- package/example/node_modules/quantumcoin/src/constants.js +94 -0
- package/example/node_modules/quantumcoin/src/contract/contract-factory.d.ts +28 -0
- package/example/node_modules/quantumcoin/src/contract/contract-factory.js +111 -0
- package/example/node_modules/quantumcoin/src/contract/contract.d.ts +113 -0
- package/example/node_modules/quantumcoin/src/contract/contract.js +408 -0
- package/example/node_modules/quantumcoin/src/contract/index.d.ts +9 -0
- package/example/node_modules/quantumcoin/src/contract/index.js +9 -0
- package/example/node_modules/quantumcoin/src/errors/index.d.ts +92 -0
- package/example/node_modules/quantumcoin/src/errors/index.js +200 -0
- package/example/node_modules/quantumcoin/src/generator/index.d.ts +81 -0
- package/example/node_modules/quantumcoin/src/generator/index.js +1571 -0
- package/example/node_modules/quantumcoin/src/index.d.ts +122 -0
- package/example/node_modules/quantumcoin/src/index.js +41 -0
- package/example/node_modules/quantumcoin/src/internal/hex.d.ts +68 -0
- package/example/node_modules/quantumcoin/src/internal/hex.js +180 -0
- package/example/node_modules/quantumcoin/src/providers/extra-providers.d.ts +139 -0
- package/example/node_modules/quantumcoin/src/providers/extra-providers.js +614 -0
- package/example/node_modules/quantumcoin/src/providers/index.d.ts +17 -0
- package/example/node_modules/quantumcoin/src/providers/index.js +10 -0
- package/example/node_modules/quantumcoin/src/providers/json-rpc-provider.d.ts +12 -0
- package/example/node_modules/quantumcoin/src/providers/json-rpc-provider.js +89 -0
- package/example/node_modules/quantumcoin/src/providers/provider.d.ts +206 -0
- package/example/node_modules/quantumcoin/src/providers/provider.js +524 -0
- package/example/node_modules/quantumcoin/src/types/index.d.ts +214 -0
- package/example/node_modules/quantumcoin/src/types/index.js +9 -0
- package/example/node_modules/quantumcoin/src/utils/address.d.ts +58 -0
- package/example/node_modules/quantumcoin/src/utils/address.js +144 -0
- package/example/node_modules/quantumcoin/src/utils/encoding.d.ts +120 -0
- package/example/node_modules/quantumcoin/src/utils/encoding.js +306 -0
- package/example/node_modules/quantumcoin/src/utils/fixednumber.d.ts +57 -0
- package/example/node_modules/quantumcoin/src/utils/fixednumber.js +366 -0
- package/example/node_modules/quantumcoin/src/utils/hashing.d.ts +76 -0
- package/example/node_modules/quantumcoin/src/utils/hashing.js +298 -0
- package/example/node_modules/quantumcoin/src/utils/index.d.ts +63 -0
- package/example/node_modules/quantumcoin/src/utils/index.js +14 -0
- package/example/node_modules/quantumcoin/src/utils/result.d.ts +57 -0
- package/example/node_modules/quantumcoin/src/utils/result.js +128 -0
- package/example/node_modules/quantumcoin/src/utils/rlp.d.ts +12 -0
- package/example/node_modules/quantumcoin/src/utils/rlp.js +215 -0
- package/example/node_modules/quantumcoin/src/utils/units.d.ts +29 -0
- package/example/node_modules/quantumcoin/src/utils/units.js +107 -0
- package/example/node_modules/quantumcoin/src/wallet/index.d.ts +10 -0
- package/example/node_modules/quantumcoin/src/wallet/index.js +8 -0
- package/example/node_modules/quantumcoin/src/wallet/wallet.d.ts +192 -0
- package/example/node_modules/quantumcoin/src/wallet/wallet.js +713 -0
- package/example/node_modules/quantumcoin/test/e2e/all-solidity-types.dynamic.test.js +207 -0
- package/example/node_modules/quantumcoin/test/e2e/all-solidity-types.dynamic.test.ts +191 -0
- package/example/node_modules/quantumcoin/test/e2e/all-solidity-types.fixtures.js +231 -0
- package/example/node_modules/quantumcoin/test/e2e/all-solidity-types.generated-sdks.e2e.test.js +387 -0
- package/example/node_modules/quantumcoin/test/e2e/all-solidity-types.generated-sdks.e2e.test.ts +350 -0
- package/example/node_modules/quantumcoin/test/e2e/generator-interface.e2e.test.js +165 -0
- package/example/node_modules/quantumcoin/test/e2e/generator-interface.e2e.test.ts +160 -0
- package/example/node_modules/quantumcoin/test/e2e/helpers.js +59 -0
- package/example/node_modules/quantumcoin/test/e2e/signing-context-and-fee.e2e.test.js +141 -0
- package/example/node_modules/quantumcoin/test/e2e/signing-context-and-fee.e2e.test.ts +128 -0
- package/example/node_modules/quantumcoin/test/e2e/simple-erc20.generated-sdks.e2e.test.js +168 -0
- package/example/node_modules/quantumcoin/test/e2e/simple-erc20.generated-sdks.e2e.test.ts +141 -0
- package/example/node_modules/quantumcoin/test/e2e/transactional.test.js +245 -0
- package/example/node_modules/quantumcoin/test/e2e/transactional.test.ts +208 -0
- package/example/node_modules/quantumcoin/test/e2e/typed-generator.e2e.test.js +407 -0
- package/example/node_modules/quantumcoin/test/e2e/typed-generator.e2e.test.ts +337 -0
- package/example/node_modules/quantumcoin/test/fixtures/ConstructorParam.sol +23 -0
- package/example/node_modules/quantumcoin/test/fixtures/MultiContracts.sol +37 -0
- package/example/node_modules/quantumcoin/test/fixtures/SimpleStorage.sol +18 -0
- package/example/node_modules/quantumcoin/test/fixtures/StakingContract.abi.json +1 -0
- package/example/node_modules/quantumcoin/test/integration/ipc-provider.test.js +49 -0
- package/example/node_modules/quantumcoin/test/integration/ipc-provider.test.ts +44 -0
- package/example/node_modules/quantumcoin/test/integration/provider.test.js +88 -0
- package/example/node_modules/quantumcoin/test/integration/provider.test.ts +85 -0
- package/example/node_modules/quantumcoin/test/integration/ws-provider.test.js +41 -0
- package/example/node_modules/quantumcoin/test/integration/ws-provider.test.ts +38 -0
- package/example/node_modules/quantumcoin/test/security/abi-decoder-bounds.test.js +122 -0
- package/example/node_modules/quantumcoin/test/security/contract-overrides.test.js +112 -0
- package/example/node_modules/quantumcoin/test/security/generator-injection.test.js +195 -0
- package/example/node_modules/quantumcoin/test/security/malformed-input.test.js +330 -0
- package/example/node_modules/quantumcoin/test/security/malformed-input.test.ts +35 -0
- package/example/node_modules/quantumcoin/test/security/rpc-numeric-bounds.test.js +81 -0
- package/example/node_modules/quantumcoin/test/security/rpc-trust.test.js +202 -0
- package/example/node_modules/quantumcoin/test/unit/_encrypted-output.txt +6 -0
- package/example/node_modules/quantumcoin/test/unit/_log-encrypted-jsons.js +45 -0
- package/example/node_modules/quantumcoin/test/unit/_write-keystore-fixture.js +16 -0
- package/example/node_modules/quantumcoin/test/unit/abi-interface.test.js +110 -0
- package/example/node_modules/quantumcoin/test/unit/abi-interface.test.ts +109 -0
- package/example/node_modules/quantumcoin/test/unit/address-wallet.test.js +923 -0
- package/example/node_modules/quantumcoin/test/unit/address-wallet.test.ts +877 -0
- package/example/node_modules/quantumcoin/test/unit/browser-provider.test.js +85 -0
- package/example/node_modules/quantumcoin/test/unit/browser-provider.test.ts +79 -0
- package/example/node_modules/quantumcoin/test/unit/contract.test.js +85 -0
- package/example/node_modules/quantumcoin/test/unit/contract.test.ts +83 -0
- package/example/node_modules/quantumcoin/test/unit/encoding-units-rlp.test.js +127 -0
- package/example/node_modules/quantumcoin/test/unit/encoding-units-rlp.test.ts +91 -0
- package/example/node_modules/quantumcoin/test/unit/errors.test.js +77 -0
- package/example/node_modules/quantumcoin/test/unit/errors.test.ts +76 -0
- package/example/node_modules/quantumcoin/test/unit/filter-by-blockhash.test.js +55 -0
- package/example/node_modules/quantumcoin/test/unit/filter-by-blockhash.test.ts +54 -0
- package/example/node_modules/quantumcoin/test/unit/fixednumber.test.js +656 -0
- package/example/node_modules/quantumcoin/test/unit/fixednumber.test.ts +660 -0
- package/example/node_modules/quantumcoin/test/unit/fixtures/encrypted-keystores-48-32-36.js +9 -0
- package/example/node_modules/quantumcoin/test/unit/generate-contract-cli.test.js +42 -0
- package/example/node_modules/quantumcoin/test/unit/generate-contract-cli.test.ts +41 -0
- package/example/node_modules/quantumcoin/test/unit/generate-sdk-artifacts-json.test.js +113 -0
- package/example/node_modules/quantumcoin/test/unit/generate-sdk-artifacts-json.test.ts +110 -0
- package/example/node_modules/quantumcoin/test/unit/generator.test.js +149 -0
- package/example/node_modules/quantumcoin/test/unit/generator.test.ts +148 -0
- package/example/node_modules/quantumcoin/test/unit/hashing.test.js +64 -0
- package/example/node_modules/quantumcoin/test/unit/hashing.test.ts +63 -0
- package/example/node_modules/quantumcoin/test/unit/init.test.js +39 -0
- package/example/node_modules/quantumcoin/test/unit/init.test.ts +38 -0
- package/example/node_modules/quantumcoin/test/unit/interface.test.js +56 -0
- package/example/node_modules/quantumcoin/test/unit/interface.test.ts +54 -0
- package/example/node_modules/quantumcoin/test/unit/internal-hex.test.js +81 -0
- package/example/node_modules/quantumcoin/test/unit/internal-hex.test.ts +80 -0
- package/example/node_modules/quantumcoin/test/unit/populate-transaction.test.js +98 -0
- package/example/node_modules/quantumcoin/test/unit/populate-transaction.test.ts +64 -0
- package/example/node_modules/quantumcoin/test/unit/providers.test.js +252 -0
- package/example/node_modules/quantumcoin/test/unit/providers.test.ts +251 -0
- package/example/node_modules/quantumcoin/test/unit/result.test.js +80 -0
- package/example/node_modules/quantumcoin/test/unit/result.test.ts +79 -0
- package/example/node_modules/quantumcoin/test/unit/solidity-types.test.js +49 -0
- package/example/node_modules/quantumcoin/test/unit/solidity-types.test.ts +39 -0
- package/example/node_modules/quantumcoin/test/unit/utils.test.js +57 -0
- package/example/node_modules/quantumcoin/test/unit/utils.test.ts +56 -0
- package/example/node_modules/quantumcoin/test/verbose-logger.js +74 -0
- package/example/node_modules/quantumcoin/tsconfig.build.json +14 -0
- package/example/node_modules/seed-words/.github/workflows/publish-npmjs.yaml +22 -0
- package/example/node_modules/seed-words/BUILD.md +7 -0
- package/example/node_modules/seed-words/LICENSE +121 -0
- package/example/node_modules/seed-words/README.md +67 -0
- package/example/node_modules/seed-words/dist/seedwords.d.ts +39 -0
- package/example/node_modules/seed-words/package.json +27 -0
- package/example/node_modules/seed-words/seedwords.js +315 -0
- package/example/node_modules/seed-words/seedwords.txt +65536 -0
- package/example/node_modules/seed-words/tsconfig.json +21 -0
- package/example/package-lock.json +23 -101
- package/example/package.json +1 -1
- package/index.d.ts +32 -0
- package/index.js +90 -0
- package/package.json +2 -2
- package/tests/get-gas-price.test.js +59 -0
- package/tests/scrypt.test.js +128 -0
- package/example/node_modules/@adraffy/ens-normalize/LICENSE +0 -21
- package/example/node_modules/@adraffy/ens-normalize/README.md +0 -206
- package/example/node_modules/@adraffy/ens-normalize/dist/all.js +0 -1611
- package/example/node_modules/@adraffy/ens-normalize/dist/all.min.js +0 -1
- package/example/node_modules/@adraffy/ens-normalize/dist/index-xnf.cjs +0 -1077
- package/example/node_modules/@adraffy/ens-normalize/dist/index-xnf.min.js +0 -1
- package/example/node_modules/@adraffy/ens-normalize/dist/index-xnf.mjs +0 -1065
- package/example/node_modules/@adraffy/ens-normalize/dist/index.cjs +0 -1252
- package/example/node_modules/@adraffy/ens-normalize/dist/index.d.ts +0 -59
- package/example/node_modules/@adraffy/ens-normalize/dist/index.min.js +0 -1
- package/example/node_modules/@adraffy/ens-normalize/dist/index.mjs +0 -1240
- package/example/node_modules/@adraffy/ens-normalize/dist/nf.min.js +0 -1
- package/example/node_modules/@adraffy/ens-normalize/package.json +0 -76
- package/example/node_modules/@noble/curves/LICENSE +0 -21
- package/example/node_modules/@noble/curves/README.md +0 -1074
- package/example/node_modules/@noble/curves/_shortw_utils.d.ts +0 -62
- package/example/node_modules/@noble/curves/_shortw_utils.d.ts.map +0 -1
- package/example/node_modules/@noble/curves/_shortw_utils.js +0 -22
- package/example/node_modules/@noble/curves/_shortw_utils.js.map +0 -1
- package/example/node_modules/@noble/curves/abstract/bls.d.ts +0 -103
- package/example/node_modules/@noble/curves/abstract/bls.d.ts.map +0 -1
- package/example/node_modules/@noble/curves/abstract/bls.js +0 -239
- package/example/node_modules/@noble/curves/abstract/bls.js.map +0 -1
- package/example/node_modules/@noble/curves/abstract/curve.d.ts +0 -70
- package/example/node_modules/@noble/curves/abstract/curve.d.ts.map +0 -1
- package/example/node_modules/@noble/curves/abstract/curve.js +0 -161
- package/example/node_modules/@noble/curves/abstract/curve.js.map +0 -1
- package/example/node_modules/@noble/curves/abstract/edwards.d.ts +0 -89
- package/example/node_modules/@noble/curves/abstract/edwards.d.ts.map +0 -1
- package/example/node_modules/@noble/curves/abstract/edwards.js +0 -429
- package/example/node_modules/@noble/curves/abstract/edwards.js.map +0 -1
- package/example/node_modules/@noble/curves/abstract/hash-to-curve.d.ts +0 -57
- package/example/node_modules/@noble/curves/abstract/hash-to-curve.d.ts.map +0 -1
- package/example/node_modules/@noble/curves/abstract/hash-to-curve.js +0 -181
- package/example/node_modules/@noble/curves/abstract/hash-to-curve.js.map +0 -1
- package/example/node_modules/@noble/curves/abstract/modular.d.ts +0 -123
- package/example/node_modules/@noble/curves/abstract/modular.d.ts.map +0 -1
- package/example/node_modules/@noble/curves/abstract/modular.js +0 -439
- package/example/node_modules/@noble/curves/abstract/modular.js.map +0 -1
- package/example/node_modules/@noble/curves/abstract/montgomery.d.ts +0 -26
- package/example/node_modules/@noble/curves/abstract/montgomery.d.ts.map +0 -1
- package/example/node_modules/@noble/curves/abstract/montgomery.js +0 -161
- package/example/node_modules/@noble/curves/abstract/montgomery.js.map +0 -1
- package/example/node_modules/@noble/curves/abstract/poseidon.d.ts +0 -30
- package/example/node_modules/@noble/curves/abstract/poseidon.d.ts.map +0 -1
- package/example/node_modules/@noble/curves/abstract/poseidon.js +0 -114
- package/example/node_modules/@noble/curves/abstract/poseidon.js.map +0 -1
- package/example/node_modules/@noble/curves/abstract/utils.d.ts +0 -92
- package/example/node_modules/@noble/curves/abstract/utils.d.ts.map +0 -1
- package/example/node_modules/@noble/curves/abstract/utils.js +0 -288
- package/example/node_modules/@noble/curves/abstract/utils.js.map +0 -1
- package/example/node_modules/@noble/curves/abstract/weierstrass.d.ts +0 -241
- package/example/node_modules/@noble/curves/abstract/weierstrass.d.ts.map +0 -1
- package/example/node_modules/@noble/curves/abstract/weierstrass.js +0 -1063
- package/example/node_modules/@noble/curves/abstract/weierstrass.js.map +0 -1
- package/example/node_modules/@noble/curves/bls12-381.d.ts +0 -68
- package/example/node_modules/@noble/curves/bls12-381.d.ts.map +0 -1
- package/example/node_modules/@noble/curves/bls12-381.js +0 -1175
- package/example/node_modules/@noble/curves/bls12-381.js.map +0 -1
- package/example/node_modules/@noble/curves/bn254.d.ts +0 -8
- package/example/node_modules/@noble/curves/bn254.d.ts.map +0 -1
- package/example/node_modules/@noble/curves/bn254.js +0 -25
- package/example/node_modules/@noble/curves/bn254.js.map +0 -1
- package/example/node_modules/@noble/curves/ed25519.d.ts +0 -76
- package/example/node_modules/@noble/curves/ed25519.d.ts.map +0 -1
- package/example/node_modules/@noble/curves/ed25519.js +0 -439
- package/example/node_modules/@noble/curves/ed25519.js.map +0 -1
- package/example/node_modules/@noble/curves/ed448.d.ts +0 -65
- package/example/node_modules/@noble/curves/ed448.d.ts.map +0 -1
- package/example/node_modules/@noble/curves/ed448.js +0 -397
- package/example/node_modules/@noble/curves/ed448.js.map +0 -1
- package/example/node_modules/@noble/curves/esm/_shortw_utils.js +0 -17
- package/example/node_modules/@noble/curves/esm/_shortw_utils.js.map +0 -1
- package/example/node_modules/@noble/curves/esm/abstract/bls.js +0 -235
- package/example/node_modules/@noble/curves/esm/abstract/bls.js.map +0 -1
- package/example/node_modules/@noble/curves/esm/abstract/curve.js +0 -156
- package/example/node_modules/@noble/curves/esm/abstract/curve.js.map +0 -1
- package/example/node_modules/@noble/curves/esm/abstract/edwards.js +0 -425
- package/example/node_modules/@noble/curves/esm/abstract/edwards.js.map +0 -1
- package/example/node_modules/@noble/curves/esm/abstract/hash-to-curve.js +0 -173
- package/example/node_modules/@noble/curves/esm/abstract/hash-to-curve.js.map +0 -1
- package/example/node_modules/@noble/curves/esm/abstract/modular.js +0 -416
- package/example/node_modules/@noble/curves/esm/abstract/modular.js.map +0 -1
- package/example/node_modules/@noble/curves/esm/abstract/montgomery.js +0 -157
- package/example/node_modules/@noble/curves/esm/abstract/montgomery.js.map +0 -1
- package/example/node_modules/@noble/curves/esm/abstract/poseidon.js +0 -108
- package/example/node_modules/@noble/curves/esm/abstract/poseidon.js.map +0 -1
- package/example/node_modules/@noble/curves/esm/abstract/utils.js +0 -266
- package/example/node_modules/@noble/curves/esm/abstract/utils.js.map +0 -1
- package/example/node_modules/@noble/curves/esm/abstract/weierstrass.js +0 -1056
- package/example/node_modules/@noble/curves/esm/abstract/weierstrass.js.map +0 -1
- package/example/node_modules/@noble/curves/esm/bls12-381.js +0 -1172
- package/example/node_modules/@noble/curves/esm/bls12-381.js.map +0 -1
- package/example/node_modules/@noble/curves/esm/bn254.js +0 -22
- package/example/node_modules/@noble/curves/esm/bn254.js.map +0 -1
- package/example/node_modules/@noble/curves/esm/ed25519.js +0 -433
- package/example/node_modules/@noble/curves/esm/ed25519.js.map +0 -1
- package/example/node_modules/@noble/curves/esm/ed448.js +0 -392
- package/example/node_modules/@noble/curves/esm/ed448.js.map +0 -1
- package/example/node_modules/@noble/curves/esm/index.js +0 -3
- package/example/node_modules/@noble/curves/esm/index.js.map +0 -1
- package/example/node_modules/@noble/curves/esm/jubjub.js +0 -54
- package/example/node_modules/@noble/curves/esm/jubjub.js.map +0 -1
- package/example/node_modules/@noble/curves/esm/p256.js +0 -42
- package/example/node_modules/@noble/curves/esm/p256.js.map +0 -1
- package/example/node_modules/@noble/curves/esm/p384.js +0 -46
- package/example/node_modules/@noble/curves/esm/p384.js.map +0 -1
- package/example/node_modules/@noble/curves/esm/p521.js +0 -53
- package/example/node_modules/@noble/curves/esm/p521.js.map +0 -1
- package/example/node_modules/@noble/curves/esm/package.json +0 -4
- package/example/node_modules/@noble/curves/esm/pasta.js +0 -30
- package/example/node_modules/@noble/curves/esm/pasta.js.map +0 -1
- package/example/node_modules/@noble/curves/esm/secp256k1.js +0 -254
- package/example/node_modules/@noble/curves/esm/secp256k1.js.map +0 -1
- package/example/node_modules/@noble/curves/index.d.ts +0 -1
- package/example/node_modules/@noble/curves/index.d.ts.map +0 -1
- package/example/node_modules/@noble/curves/index.js +0 -3
- package/example/node_modules/@noble/curves/index.js.map +0 -1
- package/example/node_modules/@noble/curves/jubjub.d.ts +0 -9
- package/example/node_modules/@noble/curves/jubjub.d.ts.map +0 -1
- package/example/node_modules/@noble/curves/jubjub.js +0 -59
- package/example/node_modules/@noble/curves/jubjub.js.map +0 -1
- package/example/node_modules/@noble/curves/p256.d.ts +0 -105
- package/example/node_modules/@noble/curves/p256.d.ts.map +0 -1
- package/example/node_modules/@noble/curves/p256.js +0 -45
- package/example/node_modules/@noble/curves/p256.js.map +0 -1
- package/example/node_modules/@noble/curves/p384.d.ts +0 -105
- package/example/node_modules/@noble/curves/p384.d.ts.map +0 -1
- package/example/node_modules/@noble/curves/p384.js +0 -49
- package/example/node_modules/@noble/curves/p384.js.map +0 -1
- package/example/node_modules/@noble/curves/p521.d.ts +0 -105
- package/example/node_modules/@noble/curves/p521.d.ts.map +0 -1
- package/example/node_modules/@noble/curves/p521.js +0 -56
- package/example/node_modules/@noble/curves/p521.js.map +0 -1
- package/example/node_modules/@noble/curves/package.json +0 -181
- package/example/node_modules/@noble/curves/pasta.d.ts +0 -5
- package/example/node_modules/@noble/curves/pasta.d.ts.map +0 -1
- package/example/node_modules/@noble/curves/pasta.js +0 -33
- package/example/node_modules/@noble/curves/pasta.js.map +0 -1
- package/example/node_modules/@noble/curves/secp256k1.d.ts +0 -93
- package/example/node_modules/@noble/curves/secp256k1.d.ts.map +0 -1
- package/example/node_modules/@noble/curves/secp256k1.js +0 -257
- package/example/node_modules/@noble/curves/secp256k1.js.map +0 -1
- package/example/node_modules/@noble/curves/src/_shortw_utils.ts +0 -20
- package/example/node_modules/@noble/curves/src/abstract/bls.ts +0 -398
- package/example/node_modules/@noble/curves/src/abstract/curve.ts +0 -203
- package/example/node_modules/@noble/curves/src/abstract/edwards.ts +0 -513
- package/example/node_modules/@noble/curves/src/abstract/hash-to-curve.ts +0 -229
- package/example/node_modules/@noble/curves/src/abstract/modular.ts +0 -484
- package/example/node_modules/@noble/curves/src/abstract/montgomery.ts +0 -189
- package/example/node_modules/@noble/curves/src/abstract/poseidon.ts +0 -118
- package/example/node_modules/@noble/curves/src/abstract/utils.ts +0 -290
- package/example/node_modules/@noble/curves/src/abstract/weierstrass.ts +0 -1222
- package/example/node_modules/@noble/curves/src/bls12-381.ts +0 -1350
- package/example/node_modules/@noble/curves/src/bn254.ts +0 -21
- package/example/node_modules/@noble/curves/src/ed25519.ts +0 -489
- package/example/node_modules/@noble/curves/src/ed448.ts +0 -465
- package/example/node_modules/@noble/curves/src/index.ts +0 -1
- package/example/node_modules/@noble/curves/src/jubjub.ts +0 -58
- package/example/node_modules/@noble/curves/src/p256.ts +0 -48
- package/example/node_modules/@noble/curves/src/p384.ts +0 -52
- package/example/node_modules/@noble/curves/src/p521.ts +0 -68
- package/example/node_modules/@noble/curves/src/pasta.ts +0 -31
- package/example/node_modules/@noble/curves/src/secp256k1.ts +0 -274
- package/example/node_modules/@noble/hashes/LICENSE +0 -21
- package/example/node_modules/@noble/hashes/README.md +0 -534
- package/example/node_modules/@noble/hashes/_assert.d.ts +0 -22
- package/example/node_modules/@noble/hashes/_assert.js +0 -45
- package/example/node_modules/@noble/hashes/_assert.js.map +0 -1
- package/example/node_modules/@noble/hashes/_blake2.d.ts +0 -27
- package/example/node_modules/@noble/hashes/_blake2.js +0 -112
- package/example/node_modules/@noble/hashes/_blake2.js.map +0 -1
- package/example/node_modules/@noble/hashes/_sha2.d.ts +0 -23
- package/example/node_modules/@noble/hashes/_sha2.js +0 -118
- package/example/node_modules/@noble/hashes/_sha2.js.map +0 -1
- package/example/node_modules/@noble/hashes/_u64.d.ts +0 -54
- package/example/node_modules/@noble/hashes/_u64.js +0 -85
- package/example/node_modules/@noble/hashes/_u64.js.map +0 -1
- package/example/node_modules/@noble/hashes/argon2.d.ts +0 -16
- package/example/node_modules/@noble/hashes/argon2.js +0 -303
- package/example/node_modules/@noble/hashes/argon2.js.map +0 -1
- package/example/node_modules/@noble/hashes/blake2b.d.ts +0 -53
- package/example/node_modules/@noble/hashes/blake2b.js +0 -192
- package/example/node_modules/@noble/hashes/blake2b.js.map +0 -1
- package/example/node_modules/@noble/hashes/blake2s.d.ts +0 -47
- package/example/node_modules/@noble/hashes/blake2s.js +0 -122
- package/example/node_modules/@noble/hashes/blake2s.js.map +0 -1
- package/example/node_modules/@noble/hashes/blake3.d.ts +0 -46
- package/example/node_modules/@noble/hashes/blake3.js +0 -229
- package/example/node_modules/@noble/hashes/blake3.js.map +0 -1
- package/example/node_modules/@noble/hashes/crypto.d.ts +0 -1
- package/example/node_modules/@noble/hashes/crypto.js +0 -5
- package/example/node_modules/@noble/hashes/crypto.js.map +0 -1
- package/example/node_modules/@noble/hashes/cryptoNode.d.ts +0 -1
- package/example/node_modules/@noble/hashes/cryptoNode.js +0 -10
- package/example/node_modules/@noble/hashes/cryptoNode.js.map +0 -1
- package/example/node_modules/@noble/hashes/eskdf.d.ts +0 -46
- package/example/node_modules/@noble/hashes/eskdf.js +0 -162
- package/example/node_modules/@noble/hashes/eskdf.js.map +0 -1
- package/example/node_modules/@noble/hashes/esm/_assert.js +0 -37
- package/example/node_modules/@noble/hashes/esm/_assert.js.map +0 -1
- package/example/node_modules/@noble/hashes/esm/_blake2.js +0 -108
- package/example/node_modules/@noble/hashes/esm/_blake2.js.map +0 -1
- package/example/node_modules/@noble/hashes/esm/_sha2.js +0 -114
- package/example/node_modules/@noble/hashes/esm/_sha2.js.map +0 -1
- package/example/node_modules/@noble/hashes/esm/_u64.js +0 -62
- package/example/node_modules/@noble/hashes/esm/_u64.js.map +0 -1
- package/example/node_modules/@noble/hashes/esm/argon2.js +0 -297
- package/example/node_modules/@noble/hashes/esm/argon2.js.map +0 -1
- package/example/node_modules/@noble/hashes/esm/blake2b.js +0 -189
- package/example/node_modules/@noble/hashes/esm/blake2b.js.map +0 -1
- package/example/node_modules/@noble/hashes/esm/blake2s.js +0 -118
- package/example/node_modules/@noble/hashes/esm/blake2s.js.map +0 -1
- package/example/node_modules/@noble/hashes/esm/blake3.js +0 -226
- package/example/node_modules/@noble/hashes/esm/blake3.js.map +0 -1
- package/example/node_modules/@noble/hashes/esm/crypto.js +0 -2
- package/example/node_modules/@noble/hashes/esm/crypto.js.map +0 -1
- package/example/node_modules/@noble/hashes/esm/cryptoNode.js +0 -7
- package/example/node_modules/@noble/hashes/esm/cryptoNode.js.map +0 -1
- package/example/node_modules/@noble/hashes/esm/eskdf.js +0 -155
- package/example/node_modules/@noble/hashes/esm/eskdf.js.map +0 -1
- package/example/node_modules/@noble/hashes/esm/hkdf.js +0 -72
- package/example/node_modules/@noble/hashes/esm/hkdf.js.map +0 -1
- package/example/node_modules/@noble/hashes/esm/hmac.js +0 -77
- package/example/node_modules/@noble/hashes/esm/hmac.js.map +0 -1
- package/example/node_modules/@noble/hashes/esm/index.js +0 -3
- package/example/node_modules/@noble/hashes/esm/index.js.map +0 -1
- package/example/node_modules/@noble/hashes/esm/package.json +0 -10
- package/example/node_modules/@noble/hashes/esm/pbkdf2.js +0 -86
- package/example/node_modules/@noble/hashes/esm/pbkdf2.js.map +0 -1
- package/example/node_modules/@noble/hashes/esm/ripemd160.js +0 -104
- package/example/node_modules/@noble/hashes/esm/ripemd160.js.map +0 -1
- package/example/node_modules/@noble/hashes/esm/scrypt.js +0 -218
- package/example/node_modules/@noble/hashes/esm/scrypt.js.map +0 -1
- package/example/node_modules/@noble/hashes/esm/sha1.js +0 -87
- package/example/node_modules/@noble/hashes/esm/sha1.js.map +0 -1
- package/example/node_modules/@noble/hashes/esm/sha256.js +0 -126
- package/example/node_modules/@noble/hashes/esm/sha256.js.map +0 -1
- package/example/node_modules/@noble/hashes/esm/sha3-addons.js +0 -347
- package/example/node_modules/@noble/hashes/esm/sha3-addons.js.map +0 -1
- package/example/node_modules/@noble/hashes/esm/sha3.js +0 -208
- package/example/node_modules/@noble/hashes/esm/sha3.js.map +0 -1
- package/example/node_modules/@noble/hashes/esm/sha512.js +0 -231
- package/example/node_modules/@noble/hashes/esm/sha512.js.map +0 -1
- package/example/node_modules/@noble/hashes/esm/utils.js +0 -154
- package/example/node_modules/@noble/hashes/esm/utils.js.map +0 -1
- package/example/node_modules/@noble/hashes/hkdf.d.ts +0 -26
- package/example/node_modules/@noble/hashes/hkdf.js +0 -78
- package/example/node_modules/@noble/hashes/hkdf.js.map +0 -1
- package/example/node_modules/@noble/hashes/hmac.d.ts +0 -25
- package/example/node_modules/@noble/hashes/hmac.js +0 -82
- package/example/node_modules/@noble/hashes/hmac.js.map +0 -1
- package/example/node_modules/@noble/hashes/index.d.ts +0 -0
- package/example/node_modules/@noble/hashes/index.js +0 -3
- package/example/node_modules/@noble/hashes/index.js.map +0 -1
- package/example/node_modules/@noble/hashes/package.json +0 -174
- package/example/node_modules/@noble/hashes/pbkdf2.d.ts +0 -15
- package/example/node_modules/@noble/hashes/pbkdf2.js +0 -91
- package/example/node_modules/@noble/hashes/pbkdf2.js.map +0 -1
- package/example/node_modules/@noble/hashes/ripemd160.d.ts +0 -24
- package/example/node_modules/@noble/hashes/ripemd160.js +0 -108
- package/example/node_modules/@noble/hashes/ripemd160.js.map +0 -1
- package/example/node_modules/@noble/hashes/scrypt.d.ts +0 -29
- package/example/node_modules/@noble/hashes/scrypt.js +0 -223
- package/example/node_modules/@noble/hashes/scrypt.js.map +0 -1
- package/example/node_modules/@noble/hashes/sha1.d.ts +0 -21
- package/example/node_modules/@noble/hashes/sha1.js +0 -90
- package/example/node_modules/@noble/hashes/sha1.js.map +0 -1
- package/example/node_modules/@noble/hashes/sha256.d.ts +0 -34
- package/example/node_modules/@noble/hashes/sha256.js +0 -129
- package/example/node_modules/@noble/hashes/sha256.js.map +0 -1
- package/example/node_modules/@noble/hashes/sha3-addons.d.ts +0 -138
- package/example/node_modules/@noble/hashes/sha3-addons.js +0 -351
- package/example/node_modules/@noble/hashes/sha3-addons.js.map +0 -1
- package/example/node_modules/@noble/hashes/sha3.d.ts +0 -97
- package/example/node_modules/@noble/hashes/sha3.js +0 -213
- package/example/node_modules/@noble/hashes/sha3.js.map +0 -1
- package/example/node_modules/@noble/hashes/sha512.d.ts +0 -66
- package/example/node_modules/@noble/hashes/sha512.js +0 -235
- package/example/node_modules/@noble/hashes/sha512.js.map +0 -1
- package/example/node_modules/@noble/hashes/src/_assert.ts +0 -43
- package/example/node_modules/@noble/hashes/src/_blake2.ts +0 -128
- package/example/node_modules/@noble/hashes/src/_sha2.ts +0 -118
- package/example/node_modules/@noble/hashes/src/_u64.ts +0 -77
- package/example/node_modules/@noble/hashes/src/argon2.ts +0 -374
- package/example/node_modules/@noble/hashes/src/blake2b.ts +0 -205
- package/example/node_modules/@noble/hashes/src/blake2s.ts +0 -136
- package/example/node_modules/@noble/hashes/src/blake3.ts +0 -250
- package/example/node_modules/@noble/hashes/src/crypto.ts +0 -5
- package/example/node_modules/@noble/hashes/src/cryptoNode.ts +0 -7
- package/example/node_modules/@noble/hashes/src/eskdf.ts +0 -183
- package/example/node_modules/@noble/hashes/src/hkdf.ts +0 -79
- package/example/node_modules/@noble/hashes/src/hmac.ts +0 -81
- package/example/node_modules/@noble/hashes/src/index.ts +0 -1
- package/example/node_modules/@noble/hashes/src/pbkdf2.ts +0 -97
- package/example/node_modules/@noble/hashes/src/ripemd160.ts +0 -110
- package/example/node_modules/@noble/hashes/src/scrypt.ts +0 -240
- package/example/node_modules/@noble/hashes/src/sha1.ts +0 -88
- package/example/node_modules/@noble/hashes/src/sha256.ts +0 -133
- package/example/node_modules/@noble/hashes/src/sha3-addons.ts +0 -398
- package/example/node_modules/@noble/hashes/src/sha3.ts +0 -223
- package/example/node_modules/@noble/hashes/src/sha512.ts +0 -246
- package/example/node_modules/@noble/hashes/src/utils.ts +0 -215
- package/example/node_modules/@noble/hashes/utils.d.ts +0 -90
- package/example/node_modules/@noble/hashes/utils.js +0 -174
- package/example/node_modules/@noble/hashes/utils.js.map +0 -1
- package/example/node_modules/@types/node/LICENSE +0 -21
- package/example/node_modules/@types/node/README.md +0 -15
- package/example/node_modules/@types/node/assert/strict.d.ts +0 -8
- package/example/node_modules/@types/node/assert.d.ts +0 -1040
- package/example/node_modules/@types/node/async_hooks.d.ts +0 -541
- package/example/node_modules/@types/node/buffer.buffer.d.ts +0 -385
- package/example/node_modules/@types/node/buffer.d.ts +0 -1933
- package/example/node_modules/@types/node/child_process.d.ts +0 -1549
- package/example/node_modules/@types/node/cluster.d.ts +0 -579
- package/example/node_modules/@types/node/console.d.ts +0 -452
- package/example/node_modules/@types/node/constants.d.ts +0 -19
- package/example/node_modules/@types/node/crypto.d.ts +0 -4451
- package/example/node_modules/@types/node/dgram.d.ts +0 -596
- package/example/node_modules/@types/node/diagnostics_channel.d.ts +0 -554
- package/example/node_modules/@types/node/dns/promises.d.ts +0 -476
- package/example/node_modules/@types/node/dns.d.ts +0 -865
- package/example/node_modules/@types/node/dom-events.d.ts +0 -124
- package/example/node_modules/@types/node/domain.d.ts +0 -170
- package/example/node_modules/@types/node/events.d.ts +0 -931
- package/example/node_modules/@types/node/fs/promises.d.ts +0 -1264
- package/example/node_modules/@types/node/fs.d.ts +0 -4390
- package/example/node_modules/@types/node/globals.d.ts +0 -597
- package/example/node_modules/@types/node/globals.global.d.ts +0 -1
- package/example/node_modules/@types/node/globals.typedarray.d.ts +0 -21
- package/example/node_modules/@types/node/http.d.ts +0 -1921
- package/example/node_modules/@types/node/http2.d.ts +0 -2555
- package/example/node_modules/@types/node/https.d.ts +0 -544
- package/example/node_modules/@types/node/index.d.ts +0 -94
- package/example/node_modules/@types/node/inspector.d.ts +0 -3966
- package/example/node_modules/@types/node/module.d.ts +0 -301
- package/example/node_modules/@types/node/net.d.ts +0 -1001
- package/example/node_modules/@types/node/os.d.ts +0 -495
- package/example/node_modules/@types/node/package.json +0 -224
- package/example/node_modules/@types/node/path.d.ts +0 -200
- package/example/node_modules/@types/node/perf_hooks.d.ts +0 -941
- package/example/node_modules/@types/node/process.d.ts +0 -1912
- package/example/node_modules/@types/node/punycode.d.ts +0 -117
- package/example/node_modules/@types/node/querystring.d.ts +0 -153
- package/example/node_modules/@types/node/readline/promises.d.ts +0 -150
- package/example/node_modules/@types/node/readline.d.ts +0 -540
- package/example/node_modules/@types/node/repl.d.ts +0 -430
- package/example/node_modules/@types/node/sea.d.ts +0 -153
- package/example/node_modules/@types/node/sqlite.d.ts +0 -213
- package/example/node_modules/@types/node/stream/consumers.d.ts +0 -12
- package/example/node_modules/@types/node/stream/promises.d.ts +0 -83
- package/example/node_modules/@types/node/stream/web.d.ts +0 -606
- package/example/node_modules/@types/node/stream.d.ts +0 -1726
- package/example/node_modules/@types/node/string_decoder.d.ts +0 -67
- package/example/node_modules/@types/node/test.d.ts +0 -2098
- package/example/node_modules/@types/node/timers/promises.d.ts +0 -97
- package/example/node_modules/@types/node/timers.d.ts +0 -240
- package/example/node_modules/@types/node/tls.d.ts +0 -1220
- package/example/node_modules/@types/node/trace_events.d.ts +0 -197
- package/example/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +0 -385
- package/example/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +0 -19
- package/example/node_modules/@types/node/ts5.6/index.d.ts +0 -94
- package/example/node_modules/@types/node/tty.d.ts +0 -208
- package/example/node_modules/@types/node/url.d.ts +0 -969
- package/example/node_modules/@types/node/util.d.ts +0 -2301
- package/example/node_modules/@types/node/v8.d.ts +0 -808
- package/example/node_modules/@types/node/vm.d.ts +0 -922
- package/example/node_modules/@types/node/wasi.d.ts +0 -181
- package/example/node_modules/@types/node/worker_threads.d.ts +0 -712
- package/example/node_modules/@types/node/zlib.d.ts +0 -539
- package/example/node_modules/aes-js/LICENSE.txt +0 -22
- package/example/node_modules/aes-js/README.md +0 -406
- package/example/node_modules/aes-js/aes-js-4.0.0-beta.4.tgz +0 -0
- package/example/node_modules/aes-js/bower.json +0 -32
- package/example/node_modules/aes-js/index.js +0 -803
- package/example/node_modules/aes-js/lib.commonjs/README.md +0 -6
- package/example/node_modules/aes-js/lib.commonjs/aes.d.ts +0 -9
- package/example/node_modules/aes-js/lib.commonjs/aes.d.ts.map +0 -1
- package/example/node_modules/aes-js/lib.commonjs/aes.js +0 -202
- package/example/node_modules/aes-js/lib.commonjs/aes.js.map +0 -1
- package/example/node_modules/aes-js/lib.commonjs/index.d.ts +0 -9
- package/example/node_modules/aes-js/lib.commonjs/index.d.ts.map +0 -1
- package/example/node_modules/aes-js/lib.commonjs/index.js +0 -21
- package/example/node_modules/aes-js/lib.commonjs/index.js.map +0 -1
- package/example/node_modules/aes-js/lib.commonjs/mode-cbc.d.ts +0 -9
- package/example/node_modules/aes-js/lib.commonjs/mode-cbc.d.ts.map +0 -1
- package/example/node_modules/aes-js/lib.commonjs/mode-cbc.js +0 -66
- package/example/node_modules/aes-js/lib.commonjs/mode-cbc.js.map +0 -1
- package/example/node_modules/aes-js/lib.commonjs/mode-cfb.d.ts +0 -10
- package/example/node_modules/aes-js/lib.commonjs/mode-cfb.d.ts.map +0 -1
- package/example/node_modules/aes-js/lib.commonjs/mode-cfb.js +0 -81
- package/example/node_modules/aes-js/lib.commonjs/mode-cfb.js.map +0 -1
- package/example/node_modules/aes-js/lib.commonjs/mode-ctr.d.ts +0 -12
- package/example/node_modules/aes-js/lib.commonjs/mode-ctr.d.ts.map +0 -1
- package/example/node_modules/aes-js/lib.commonjs/mode-ctr.js +0 -86
- package/example/node_modules/aes-js/lib.commonjs/mode-ctr.js.map +0 -1
- package/example/node_modules/aes-js/lib.commonjs/mode-ecb.d.ts +0 -7
- package/example/node_modules/aes-js/lib.commonjs/mode-ecb.d.ts.map +0 -1
- package/example/node_modules/aes-js/lib.commonjs/mode-ecb.js +0 -32
- package/example/node_modules/aes-js/lib.commonjs/mode-ecb.js.map +0 -1
- package/example/node_modules/aes-js/lib.commonjs/mode-ofb.d.ts +0 -9
- package/example/node_modules/aes-js/lib.commonjs/mode-ofb.d.ts.map +0 -1
- package/example/node_modules/aes-js/lib.commonjs/mode-ofb.js +0 -61
- package/example/node_modules/aes-js/lib.commonjs/mode-ofb.js.map +0 -1
- package/example/node_modules/aes-js/lib.commonjs/mode.d.ts +0 -9
- package/example/node_modules/aes-js/lib.commonjs/mode.d.ts.map +0 -1
- package/example/node_modules/aes-js/lib.commonjs/mode.js +0 -17
- package/example/node_modules/aes-js/lib.commonjs/mode.js.map +0 -1
- package/example/node_modules/aes-js/lib.commonjs/package.json +0 -3
- package/example/node_modules/aes-js/lib.commonjs/padding.d.ts +0 -3
- package/example/node_modules/aes-js/lib.commonjs/padding.d.ts.map +0 -1
- package/example/node_modules/aes-js/lib.commonjs/padding.js +0 -31
- package/example/node_modules/aes-js/lib.commonjs/padding.js.map +0 -1
- package/example/node_modules/aes-js/lib.commonjs/tests.d.ts +0 -2
- package/example/node_modules/aes-js/lib.commonjs/tests.d.ts.map +0 -1
- package/example/node_modules/aes-js/lib.commonjs/tests.js +0 -109
- package/example/node_modules/aes-js/lib.commonjs/tests.js.map +0 -1
- package/example/node_modules/aes-js/lib.esm/README.md +0 -6
- package/example/node_modules/aes-js/lib.esm/aes.d.ts +0 -9
- package/example/node_modules/aes-js/lib.esm/aes.d.ts.map +0 -1
- package/example/node_modules/aes-js/lib.esm/aes.js +0 -198
- package/example/node_modules/aes-js/lib.esm/aes.js.map +0 -1
- package/example/node_modules/aes-js/lib.esm/index.d.ts +0 -9
- package/example/node_modules/aes-js/lib.esm/index.d.ts.map +0 -1
- package/example/node_modules/aes-js/lib.esm/index.js +0 -9
- package/example/node_modules/aes-js/lib.esm/index.js.map +0 -1
- package/example/node_modules/aes-js/lib.esm/mode-cbc.d.ts +0 -9
- package/example/node_modules/aes-js/lib.esm/mode-cbc.d.ts.map +0 -1
- package/example/node_modules/aes-js/lib.esm/mode-cbc.js +0 -62
- package/example/node_modules/aes-js/lib.esm/mode-cbc.js.map +0 -1
- package/example/node_modules/aes-js/lib.esm/mode-cfb.d.ts +0 -10
- package/example/node_modules/aes-js/lib.esm/mode-cfb.d.ts.map +0 -1
- package/example/node_modules/aes-js/lib.esm/mode-cfb.js +0 -77
- package/example/node_modules/aes-js/lib.esm/mode-cfb.js.map +0 -1
- package/example/node_modules/aes-js/lib.esm/mode-ctr.d.ts +0 -12
- package/example/node_modules/aes-js/lib.esm/mode-ctr.d.ts.map +0 -1
- package/example/node_modules/aes-js/lib.esm/mode-ctr.js +0 -82
- package/example/node_modules/aes-js/lib.esm/mode-ctr.js.map +0 -1
- package/example/node_modules/aes-js/lib.esm/mode-ecb.d.ts +0 -7
- package/example/node_modules/aes-js/lib.esm/mode-ecb.d.ts.map +0 -1
- package/example/node_modules/aes-js/lib.esm/mode-ecb.js +0 -28
- package/example/node_modules/aes-js/lib.esm/mode-ecb.js.map +0 -1
- package/example/node_modules/aes-js/lib.esm/mode-ofb.d.ts +0 -9
- package/example/node_modules/aes-js/lib.esm/mode-ofb.d.ts.map +0 -1
- package/example/node_modules/aes-js/lib.esm/mode-ofb.js +0 -57
- package/example/node_modules/aes-js/lib.esm/mode-ofb.js.map +0 -1
- package/example/node_modules/aes-js/lib.esm/mode.d.ts +0 -9
- package/example/node_modules/aes-js/lib.esm/mode.d.ts.map +0 -1
- package/example/node_modules/aes-js/lib.esm/mode.js +0 -13
- package/example/node_modules/aes-js/lib.esm/mode.js.map +0 -1
- package/example/node_modules/aes-js/lib.esm/package.json +0 -3
- package/example/node_modules/aes-js/lib.esm/padding.d.ts +0 -3
- package/example/node_modules/aes-js/lib.esm/padding.d.ts.map +0 -1
- package/example/node_modules/aes-js/lib.esm/padding.js +0 -26
- package/example/node_modules/aes-js/lib.esm/padding.js.map +0 -1
- package/example/node_modules/aes-js/lib.esm/tests.d.ts +0 -2
- package/example/node_modules/aes-js/lib.esm/tests.d.ts.map +0 -1
- package/example/node_modules/aes-js/lib.esm/tests.js +0 -81
- package/example/node_modules/aes-js/lib.esm/tests.js.map +0 -1
- package/example/node_modules/aes-js/misc/basedirs/lib.commonjs/README.md +0 -6
- package/example/node_modules/aes-js/misc/basedirs/lib.commonjs/package.json +0 -3
- package/example/node_modules/aes-js/misc/basedirs/lib.esm/README.md +0 -6
- package/example/node_modules/aes-js/misc/basedirs/lib.esm/package.json +0 -3
- package/example/node_modules/aes-js/package-commonjs.json +0 -3
- package/example/node_modules/aes-js/package.json +0 -56
- package/example/node_modules/aes-js/src.ts/aes.ts +0 -220
- package/example/node_modules/aes-js/src.ts/index.ts +0 -11
- package/example/node_modules/aes-js/src.ts/mode-cbc.ts +0 -61
- package/example/node_modules/aes-js/src.ts/mode-cfb.ts +0 -86
- package/example/node_modules/aes-js/src.ts/mode-ctr.ts +0 -82
- package/example/node_modules/aes-js/src.ts/mode-ecb.ts +0 -36
- package/example/node_modules/aes-js/src.ts/mode-ofb.ts +0 -51
- package/example/node_modules/aes-js/src.ts/mode.ts +0 -21
- package/example/node_modules/aes-js/src.ts/padding.ts +0 -29
- package/example/node_modules/aes-js/src.ts/tests.ts +0 -102
- package/example/node_modules/aes-js/tsconfig.base.json +0 -31
- package/example/node_modules/aes-js/tsconfig.commonjs.json +0 -7
- package/example/node_modules/aes-js/tsconfig.esm.json +0 -7
- package/example/node_modules/ethers/CHANGELOG.md +0 -478
- package/example/node_modules/ethers/FUNDING.json +0 -10
- package/example/node_modules/ethers/LICENSE.md +0 -21
- package/example/node_modules/ethers/README.md +0 -140
- package/example/node_modules/ethers/SECURITY.md +0 -34
- package/example/node_modules/ethers/dist/README.md +0 -22
- package/example/node_modules/ethers/dist/ethers.js +0 -26488
- package/example/node_modules/ethers/dist/ethers.js.map +0 -1
- package/example/node_modules/ethers/dist/ethers.min.js +0 -1
- package/example/node_modules/ethers/dist/ethers.umd.js +0 -26689
- package/example/node_modules/ethers/dist/ethers.umd.js.map +0 -1
- package/example/node_modules/ethers/dist/ethers.umd.min.js +0 -1
- package/example/node_modules/ethers/dist/wordlists-extra.js +0 -1509
- package/example/node_modules/ethers/dist/wordlists-extra.js.map +0 -1
- package/example/node_modules/ethers/dist/wordlists-extra.min.js +0 -1
- package/example/node_modules/ethers/lib.commonjs/README.md +0 -16
- package/example/node_modules/ethers/lib.commonjs/_version.d.ts +0 -5
- package/example/node_modules/ethers/lib.commonjs/_version.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/_version.js +0 -9
- package/example/node_modules/ethers/lib.commonjs/_version.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/abi/abi-coder.d.ts +0 -61
- package/example/node_modules/ethers/lib.commonjs/abi/abi-coder.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/abi/abi-coder.js +0 -210
- package/example/node_modules/ethers/lib.commonjs/abi/abi-coder.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/abi/bytes32.d.ts +0 -15
- package/example/node_modules/ethers/lib.commonjs/abi/bytes32.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/abi/bytes32.js +0 -45
- package/example/node_modules/ethers/lib.commonjs/abi/bytes32.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/abi/coders/abstract-coder.d.ts +0 -124
- package/example/node_modules/ethers/lib.commonjs/abi/coders/abstract-coder.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/abi/coders/abstract-coder.js +0 -472
- package/example/node_modules/ethers/lib.commonjs/abi/coders/abstract-coder.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/abi/coders/address.d.ts +0 -13
- package/example/node_modules/ethers/lib.commonjs/abi/coders/address.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/abi/coders/address.js +0 -33
- package/example/node_modules/ethers/lib.commonjs/abi/coders/address.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/abi/coders/anonymous.d.ts +0 -15
- package/example/node_modules/ethers/lib.commonjs/abi/coders/anonymous.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/abi/coders/anonymous.js +0 -27
- package/example/node_modules/ethers/lib.commonjs/abi/coders/anonymous.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/abi/coders/array.d.ts +0 -25
- package/example/node_modules/ethers/lib.commonjs/abi/coders/array.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/abi/coders/array.js +0 -165
- package/example/node_modules/ethers/lib.commonjs/abi/coders/array.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/abi/coders/boolean.d.ts +0 -13
- package/example/node_modules/ethers/lib.commonjs/abi/coders/boolean.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/abi/coders/boolean.js +0 -25
- package/example/node_modules/ethers/lib.commonjs/abi/coders/boolean.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/abi/coders/bytes.d.ts +0 -19
- package/example/node_modules/ethers/lib.commonjs/abi/coders/bytes.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/abi/coders/bytes.js +0 -39
- package/example/node_modules/ethers/lib.commonjs/abi/coders/bytes.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/abi/coders/fixed-bytes.d.ts +0 -15
- package/example/node_modules/ethers/lib.commonjs/abi/coders/fixed-bytes.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/abi/coders/fixed-bytes.js +0 -32
- package/example/node_modules/ethers/lib.commonjs/abi/coders/fixed-bytes.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/abi/coders/null.d.ts +0 -12
- package/example/node_modules/ethers/lib.commonjs/abi/coders/null.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/abi/coders/null.js +0 -28
- package/example/node_modules/ethers/lib.commonjs/abi/coders/null.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/abi/coders/number.d.ts +0 -16
- package/example/node_modules/ethers/lib.commonjs/abi/coders/number.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/abi/coders/number.js +0 -49
- package/example/node_modules/ethers/lib.commonjs/abi/coders/number.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/abi/coders/string.d.ts +0 -13
- package/example/node_modules/ethers/lib.commonjs/abi/coders/string.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/abi/coders/string.js +0 -25
- package/example/node_modules/ethers/lib.commonjs/abi/coders/string.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/abi/coders/tuple.d.ts +0 -16
- package/example/node_modules/ethers/lib.commonjs/abi/coders/tuple.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/abi/coders/tuple.js +0 -67
- package/example/node_modules/ethers/lib.commonjs/abi/coders/tuple.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/abi/fragments.d.ts +0 -466
- package/example/node_modules/ethers/lib.commonjs/abi/fragments.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/abi/fragments.js +0 -1331
- package/example/node_modules/ethers/lib.commonjs/abi/fragments.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/abi/index.d.ts +0 -18
- package/example/node_modules/ethers/lib.commonjs/abi/index.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/abi/index.js +0 -40
- package/example/node_modules/ethers/lib.commonjs/abi/index.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/abi/interface.d.ts +0 -382
- package/example/node_modules/ethers/lib.commonjs/abi/interface.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/abi/interface.js +0 -1110
- package/example/node_modules/ethers/lib.commonjs/abi/interface.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/abi/typed.d.ts +0 -570
- package/example/node_modules/ethers/lib.commonjs/abi/typed.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/abi/typed.js +0 -606
- package/example/node_modules/ethers/lib.commonjs/abi/typed.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/address/address.d.ts +0 -56
- package/example/node_modules/ethers/lib.commonjs/address/address.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/address/address.js +0 -161
- package/example/node_modules/ethers/lib.commonjs/address/address.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/address/checks.d.ts +0 -81
- package/example/node_modules/ethers/lib.commonjs/address/checks.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/address/checks.js +0 -120
- package/example/node_modules/ethers/lib.commonjs/address/checks.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/address/contract-address.d.ts +0 -48
- package/example/node_modules/ethers/lib.commonjs/address/contract-address.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/address/contract-address.js +0 -74
- package/example/node_modules/ethers/lib.commonjs/address/contract-address.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/address/index.d.ts +0 -49
- package/example/node_modules/ethers/lib.commonjs/address/index.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/address/index.js +0 -29
- package/example/node_modules/ethers/lib.commonjs/address/index.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/constants/addresses.d.ts +0 -7
- package/example/node_modules/ethers/lib.commonjs/constants/addresses.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/constants/addresses.js +0 -10
- package/example/node_modules/ethers/lib.commonjs/constants/addresses.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/constants/hashes.d.ts +0 -7
- package/example/node_modules/ethers/lib.commonjs/constants/hashes.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/constants/hashes.js +0 -10
- package/example/node_modules/ethers/lib.commonjs/constants/hashes.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/constants/index.d.ts +0 -10
- package/example/node_modules/ethers/lib.commonjs/constants/index.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/constants/index.js +0 -22
- package/example/node_modules/ethers/lib.commonjs/constants/index.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/constants/numbers.d.ts +0 -31
- package/example/node_modules/ethers/lib.commonjs/constants/numbers.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/constants/numbers.js +0 -34
- package/example/node_modules/ethers/lib.commonjs/constants/numbers.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/constants/strings.d.ts +0 -13
- package/example/node_modules/ethers/lib.commonjs/constants/strings.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/constants/strings.js +0 -17
- package/example/node_modules/ethers/lib.commonjs/constants/strings.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/contract/contract.d.ts +0 -168
- package/example/node_modules/ethers/lib.commonjs/contract/contract.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/contract/contract.js +0 -960
- package/example/node_modules/ethers/lib.commonjs/contract/contract.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/contract/factory.d.ts +0 -62
- package/example/node_modules/ethers/lib.commonjs/contract/factory.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/contract/factory.js +0 -116
- package/example/node_modules/ethers/lib.commonjs/contract/factory.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/contract/index.d.ts +0 -13
- package/example/node_modules/ethers/lib.commonjs/contract/index.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/contract/index.js +0 -24
- package/example/node_modules/ethers/lib.commonjs/contract/index.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/contract/types.d.ts +0 -193
- package/example/node_modules/ethers/lib.commonjs/contract/types.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/contract/types.js +0 -6
- package/example/node_modules/ethers/lib.commonjs/contract/types.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/contract/wrappers.d.ts +0 -143
- package/example/node_modules/ethers/lib.commonjs/contract/wrappers.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/contract/wrappers.js +0 -186
- package/example/node_modules/ethers/lib.commonjs/contract/wrappers.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/crypto/crypto-browser.d.ts +0 -15
- package/example/node_modules/ethers/lib.commonjs/crypto/crypto-browser.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/crypto/crypto-browser.js +0 -55
- package/example/node_modules/ethers/lib.commonjs/crypto/crypto-browser.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/crypto/crypto.d.ts +0 -2
- package/example/node_modules/ethers/lib.commonjs/crypto/crypto.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/crypto/crypto.js +0 -9
- package/example/node_modules/ethers/lib.commonjs/crypto/crypto.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/crypto/hmac.d.ts +0 -25
- package/example/node_modules/ethers/lib.commonjs/crypto/hmac.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/crypto/hmac.js +0 -51
- package/example/node_modules/ethers/lib.commonjs/crypto/hmac.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/crypto/index.d.ts +0 -25
- package/example/node_modules/ethers/lib.commonjs/crypto/index.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/crypto/index.js +0 -49
- package/example/node_modules/ethers/lib.commonjs/crypto/index.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/crypto/keccak.d.ts +0 -35
- package/example/node_modules/ethers/lib.commonjs/crypto/keccak.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/crypto/keccak.js +0 -52
- package/example/node_modules/ethers/lib.commonjs/crypto/keccak.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/crypto/pbkdf2.d.ts +0 -35
- package/example/node_modules/ethers/lib.commonjs/crypto/pbkdf2.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/crypto/pbkdf2.js +0 -53
- package/example/node_modules/ethers/lib.commonjs/crypto/pbkdf2.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/crypto/random.d.ts +0 -14
- package/example/node_modules/ethers/lib.commonjs/crypto/random.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/crypto/random.js +0 -38
- package/example/node_modules/ethers/lib.commonjs/crypto/random.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/crypto/ripemd160.d.ts +0 -25
- package/example/node_modules/ethers/lib.commonjs/crypto/ripemd160.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/crypto/ripemd160.js +0 -42
- package/example/node_modules/ethers/lib.commonjs/crypto/ripemd160.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/crypto/scrypt.d.ts +0 -82
- package/example/node_modules/ethers/lib.commonjs/crypto/scrypt.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/crypto/scrypt.js +0 -104
- package/example/node_modules/ethers/lib.commonjs/crypto/scrypt.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/crypto/sha2.d.ts +0 -47
- package/example/node_modules/ethers/lib.commonjs/crypto/sha2.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/crypto/sha2.js +0 -76
- package/example/node_modules/ethers/lib.commonjs/crypto/sha2.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/crypto/signature.d.ts +0 -183
- package/example/node_modules/ethers/lib.commonjs/crypto/signature.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/crypto/signature.js +0 -350
- package/example/node_modules/ethers/lib.commonjs/crypto/signature.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/crypto/signing-key.d.ts +0 -122
- package/example/node_modules/ethers/lib.commonjs/crypto/signing-key.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/crypto/signing-key.js +0 -170
- package/example/node_modules/ethers/lib.commonjs/crypto/signing-key.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/ethers.d.ts +0 -22
- package/example/node_modules/ethers/lib.commonjs/ethers.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/ethers.js +0 -215
- package/example/node_modules/ethers/lib.commonjs/ethers.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/hash/authorization.d.ts +0 -18
- package/example/node_modules/ethers/lib.commonjs/hash/authorization.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/hash/authorization.js +0 -30
- package/example/node_modules/ethers/lib.commonjs/hash/authorization.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/hash/id.d.ts +0 -13
- package/example/node_modules/ethers/lib.commonjs/hash/id.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/hash/id.js +0 -21
- package/example/node_modules/ethers/lib.commonjs/hash/id.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/hash/index.d.ts +0 -15
- package/example/node_modules/ethers/lib.commonjs/hash/index.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/hash/index.js +0 -30
- package/example/node_modules/ethers/lib.commonjs/hash/index.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/hash/message.d.ts +0 -36
- package/example/node_modules/ethers/lib.commonjs/hash/message.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/hash/message.js +0 -56
- package/example/node_modules/ethers/lib.commonjs/hash/message.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/hash/namehash.d.ts +0 -20
- package/example/node_modules/ethers/lib.commonjs/hash/namehash.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/hash/namehash.js +0 -91
- package/example/node_modules/ethers/lib.commonjs/hash/namehash.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/hash/solidity.d.ts +0 -31
- package/example/node_modules/ethers/lib.commonjs/hash/solidity.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/hash/solidity.js +0 -109
- package/example/node_modules/ethers/lib.commonjs/hash/solidity.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/hash/typed-data.d.ts +0 -150
- package/example/node_modules/ethers/lib.commonjs/hash/typed-data.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/hash/typed-data.js +0 -524
- package/example/node_modules/ethers/lib.commonjs/hash/typed-data.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/index.d.ts +0 -11
- package/example/node_modules/ethers/lib.commonjs/index.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/index.js +0 -15
- package/example/node_modules/ethers/lib.commonjs/index.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/package.json +0 -12
- package/example/node_modules/ethers/lib.commonjs/providers/abstract-provider.d.ts +0 -451
- package/example/node_modules/ethers/lib.commonjs/providers/abstract-provider.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/abstract-provider.js +0 -1409
- package/example/node_modules/ethers/lib.commonjs/providers/abstract-provider.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/abstract-signer.d.ts +0 -69
- package/example/node_modules/ethers/lib.commonjs/providers/abstract-signer.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/abstract-signer.js +0 -249
- package/example/node_modules/ethers/lib.commonjs/providers/abstract-signer.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/community.d.ts +0 -29
- package/example/node_modules/ethers/lib.commonjs/providers/community.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/community.js +0 -40
- package/example/node_modules/ethers/lib.commonjs/providers/community.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/contracts.d.ts +0 -36
- package/example/node_modules/ethers/lib.commonjs/providers/contracts.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/contracts.js +0 -3
- package/example/node_modules/ethers/lib.commonjs/providers/contracts.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/default-provider.d.ts +0 -49
- package/example/node_modules/ethers/lib.commonjs/providers/default-provider.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/default-provider.js +0 -200
- package/example/node_modules/ethers/lib.commonjs/providers/default-provider.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/ens-resolver.d.ts +0 -147
- package/example/node_modules/ethers/lib.commonjs/providers/ens-resolver.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/ens-resolver.js +0 -502
- package/example/node_modules/ethers/lib.commonjs/providers/ens-resolver.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/format.d.ts +0 -15
- package/example/node_modules/ethers/lib.commonjs/providers/format.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/format.js +0 -312
- package/example/node_modules/ethers/lib.commonjs/providers/format.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/formatting.d.ts +0 -318
- package/example/node_modules/ethers/lib.commonjs/providers/formatting.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/formatting.js +0 -10
- package/example/node_modules/ethers/lib.commonjs/providers/formatting.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/index.d.ts +0 -50
- package/example/node_modules/ethers/lib.commonjs/providers/index.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/index.js +0 -84
- package/example/node_modules/ethers/lib.commonjs/providers/index.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/network.d.ts +0 -99
- package/example/node_modules/ethers/lib.commonjs/providers/network.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/network.js +0 -369
- package/example/node_modules/ethers/lib.commonjs/providers/network.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/pagination.d.ts +0 -6
- package/example/node_modules/ethers/lib.commonjs/providers/pagination.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/pagination.js +0 -3
- package/example/node_modules/ethers/lib.commonjs/providers/pagination.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/plugin-fallback.d.ts +0 -13
- package/example/node_modules/ethers/lib.commonjs/providers/plugin-fallback.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/plugin-fallback.js +0 -31
- package/example/node_modules/ethers/lib.commonjs/providers/plugin-fallback.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/plugins-network.d.ts +0 -170
- package/example/node_modules/ethers/lib.commonjs/providers/plugins-network.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/plugins-network.js +0 -216
- package/example/node_modules/ethers/lib.commonjs/providers/plugins-network.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/provider-alchemy.d.ts +0 -50
- package/example/node_modules/ethers/lib.commonjs/providers/provider-alchemy.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/provider-alchemy.js +0 -151
- package/example/node_modules/ethers/lib.commonjs/providers/provider-alchemy.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/provider-ankr.d.ts +0 -63
- package/example/node_modules/ethers/lib.commonjs/providers/provider-ankr.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/provider-ankr.js +0 -143
- package/example/node_modules/ethers/lib.commonjs/providers/provider-ankr.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/provider-blockscout.d.ts +0 -59
- package/example/node_modules/ethers/lib.commonjs/providers/provider-blockscout.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/provider-blockscout.js +0 -145
- package/example/node_modules/ethers/lib.commonjs/providers/provider-blockscout.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/provider-browser.d.ts +0 -108
- package/example/node_modules/ethers/lib.commonjs/providers/provider-browser.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/provider-browser.js +0 -204
- package/example/node_modules/ethers/lib.commonjs/providers/provider-browser.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/provider-chainstack.d.ts +0 -46
- package/example/node_modules/ethers/lib.commonjs/providers/provider-chainstack.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/provider-chainstack.js +0 -102
- package/example/node_modules/ethers/lib.commonjs/providers/provider-chainstack.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/provider-cloudflare.d.ts +0 -14
- package/example/node_modules/ethers/lib.commonjs/providers/provider-cloudflare.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/provider-cloudflare.js +0 -26
- package/example/node_modules/ethers/lib.commonjs/providers/provider-cloudflare.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/provider-etherscan.d.ts +0 -152
- package/example/node_modules/ethers/lib.commonjs/providers/provider-etherscan.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/provider-etherscan.js +0 -601
- package/example/node_modules/ethers/lib.commonjs/providers/provider-etherscan.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/provider-fallback.d.ts +0 -115
- package/example/node_modules/ethers/lib.commonjs/providers/provider-fallback.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/provider-fallback.js +0 -624
- package/example/node_modules/ethers/lib.commonjs/providers/provider-fallback.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/provider-infura.d.ts +0 -101
- package/example/node_modules/ethers/lib.commonjs/providers/provider-infura.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/provider-infura.js +0 -206
- package/example/node_modules/ethers/lib.commonjs/providers/provider-infura.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/provider-ipcsocket-browser.d.ts +0 -3
- package/example/node_modules/ethers/lib.commonjs/providers/provider-ipcsocket-browser.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/provider-ipcsocket-browser.js +0 -6
- package/example/node_modules/ethers/lib.commonjs/providers/provider-ipcsocket-browser.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/provider-ipcsocket.d.ts +0 -21
- package/example/node_modules/ethers/lib.commonjs/providers/provider-ipcsocket.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/provider-ipcsocket.js +0 -72
- package/example/node_modules/ethers/lib.commonjs/providers/provider-ipcsocket.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/provider-jsonrpc.d.ts +0 -361
- package/example/node_modules/ethers/lib.commonjs/providers/provider-jsonrpc.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/provider-jsonrpc.js +0 -980
- package/example/node_modules/ethers/lib.commonjs/providers/provider-jsonrpc.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/provider-pocket.d.ts +0 -54
- package/example/node_modules/ethers/lib.commonjs/providers/provider-pocket.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/provider-pocket.js +0 -109
- package/example/node_modules/ethers/lib.commonjs/providers/provider-pocket.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/provider-quicknode.d.ts +0 -59
- package/example/node_modules/ethers/lib.commonjs/providers/provider-quicknode.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/provider-quicknode.js +0 -163
- package/example/node_modules/ethers/lib.commonjs/providers/provider-quicknode.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/provider-socket.d.ts +0 -113
- package/example/node_modules/ethers/lib.commonjs/providers/provider-socket.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/provider-socket.js +0 -309
- package/example/node_modules/ethers/lib.commonjs/providers/provider-socket.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/provider-websocket.d.ts +0 -37
- package/example/node_modules/ethers/lib.commonjs/providers/provider-websocket.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/provider-websocket.js +0 -80
- package/example/node_modules/ethers/lib.commonjs/providers/provider-websocket.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/provider.d.ts +0 -1230
- package/example/node_modules/ethers/lib.commonjs/providers/provider.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/provider.js +0 -1324
- package/example/node_modules/ethers/lib.commonjs/providers/provider.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/signer-noncemanager.d.ts +0 -38
- package/example/node_modules/ethers/lib.commonjs/providers/signer-noncemanager.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/signer-noncemanager.js +0 -78
- package/example/node_modules/ethers/lib.commonjs/providers/signer-noncemanager.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/signer.d.ts +0 -131
- package/example/node_modules/ethers/lib.commonjs/providers/signer.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/signer.js +0 -3
- package/example/node_modules/ethers/lib.commonjs/providers/signer.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/subscriber-connection.d.ts +0 -25
- package/example/node_modules/ethers/lib.commonjs/providers/subscriber-connection.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/subscriber-connection.js +0 -56
- package/example/node_modules/ethers/lib.commonjs/providers/subscriber-connection.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/subscriber-filterid.d.ts +0 -64
- package/example/node_modules/ethers/lib.commonjs/providers/subscriber-filterid.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/subscriber-filterid.js +0 -180
- package/example/node_modules/ethers/lib.commonjs/providers/subscriber-filterid.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/subscriber-polling.d.ts +0 -100
- package/example/node_modules/ethers/lib.commonjs/providers/subscriber-polling.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/subscriber-polling.js +0 -303
- package/example/node_modules/ethers/lib.commonjs/providers/subscriber-polling.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/ws-browser.d.ts +0 -3
- package/example/node_modules/ethers/lib.commonjs/providers/ws-browser.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/ws-browser.js +0 -19
- package/example/node_modules/ethers/lib.commonjs/providers/ws-browser.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/ws.d.ts +0 -2
- package/example/node_modules/ethers/lib.commonjs/providers/ws.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/providers/ws.js +0 -6
- package/example/node_modules/ethers/lib.commonjs/providers/ws.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/transaction/accesslist.d.ts +0 -6
- package/example/node_modules/ethers/lib.commonjs/transaction/accesslist.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/transaction/accesslist.js +0 -41
- package/example/node_modules/ethers/lib.commonjs/transaction/accesslist.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/transaction/address.d.ts +0 -15
- package/example/node_modules/ethers/lib.commonjs/transaction/address.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/transaction/address.js +0 -30
- package/example/node_modules/ethers/lib.commonjs/transaction/address.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/transaction/authorization.d.ts +0 -3
- package/example/node_modules/ethers/lib.commonjs/transaction/authorization.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/transaction/authorization.js +0 -16
- package/example/node_modules/ethers/lib.commonjs/transaction/authorization.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/transaction/index.d.ts +0 -40
- package/example/node_modules/ethers/lib.commonjs/transaction/index.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/transaction/index.js +0 -19
- package/example/node_modules/ethers/lib.commonjs/transaction/index.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/transaction/transaction.d.ts +0 -430
- package/example/node_modules/ethers/lib.commonjs/transaction/transaction.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/transaction/transaction.js +0 -1293
- package/example/node_modules/ethers/lib.commonjs/transaction/transaction.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/utils/base58.d.ts +0 -23
- package/example/node_modules/ethers/lib.commonjs/utils/base58.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/utils/base58.js +0 -68
- package/example/node_modules/ethers/lib.commonjs/utils/base58.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/utils/base64-browser.d.ts +0 -4
- package/example/node_modules/ethers/lib.commonjs/utils/base64-browser.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/utils/base64-browser.js +0 -24
- package/example/node_modules/ethers/lib.commonjs/utils/base64-browser.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/utils/base64.d.ts +0 -40
- package/example/node_modules/ethers/lib.commonjs/utils/base64.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/utils/base64.js +0 -58
- package/example/node_modules/ethers/lib.commonjs/utils/base64.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/utils/data.d.ts +0 -93
- package/example/node_modules/ethers/lib.commonjs/utils/data.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/utils/data.js +0 -185
- package/example/node_modules/ethers/lib.commonjs/utils/data.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/utils/errors.d.ts +0 -512
- package/example/node_modules/ethers/lib.commonjs/utils/errors.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/utils/errors.js +0 -243
- package/example/node_modules/ethers/lib.commonjs/utils/errors.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/utils/events.d.ts +0 -77
- package/example/node_modules/ethers/lib.commonjs/utils/events.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/utils/events.js +0 -46
- package/example/node_modules/ethers/lib.commonjs/utils/events.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/utils/fetch.d.ts +0 -363
- package/example/node_modules/ethers/lib.commonjs/utils/fetch.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/utils/fetch.js +0 -858
- package/example/node_modules/ethers/lib.commonjs/utils/fetch.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/utils/fixednumber.d.ts +0 -252
- package/example/node_modules/ethers/lib.commonjs/utils/fixednumber.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/utils/fixednumber.js +0 -530
- package/example/node_modules/ethers/lib.commonjs/utils/fixednumber.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/utils/geturl-browser.d.ts +0 -4
- package/example/node_modules/ethers/lib.commonjs/utils/geturl-browser.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/utils/geturl-browser.js +0 -67
- package/example/node_modules/ethers/lib.commonjs/utils/geturl-browser.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/utils/geturl.d.ts +0 -10
- package/example/node_modules/ethers/lib.commonjs/utils/geturl.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/utils/geturl.js +0 -127
- package/example/node_modules/ethers/lib.commonjs/utils/geturl.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/utils/index.d.ts +0 -30
- package/example/node_modules/ethers/lib.commonjs/utils/index.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/utils/index.js +0 -78
- package/example/node_modules/ethers/lib.commonjs/utils/index.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/utils/maths.d.ts +0 -66
- package/example/node_modules/ethers/lib.commonjs/utils/maths.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/utils/maths.js +0 -245
- package/example/node_modules/ethers/lib.commonjs/utils/maths.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/utils/properties.d.ts +0 -23
- package/example/node_modules/ethers/lib.commonjs/utils/properties.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/utils/properties.js +0 -59
- package/example/node_modules/ethers/lib.commonjs/utils/properties.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/utils/rlp-decode.d.ts +0 -6
- package/example/node_modules/ethers/lib.commonjs/utils/rlp-decode.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/utils/rlp-decode.js +0 -83
- package/example/node_modules/ethers/lib.commonjs/utils/rlp-decode.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/utils/rlp-encode.d.ts +0 -6
- package/example/node_modules/ethers/lib.commonjs/utils/rlp-encode.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/utils/rlp-encode.js +0 -53
- package/example/node_modules/ethers/lib.commonjs/utils/rlp-encode.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/utils/rlp.d.ts +0 -17
- package/example/node_modules/ethers/lib.commonjs/utils/rlp.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/utils/rlp.js +0 -14
- package/example/node_modules/ethers/lib.commonjs/utils/rlp.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/utils/units.d.ts +0 -24
- package/example/node_modules/ethers/lib.commonjs/utils/units.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/utils/units.js +0 -90
- package/example/node_modules/ethers/lib.commonjs/utils/units.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/utils/utf8.d.ts +0 -96
- package/example/node_modules/ethers/lib.commonjs/utils/utf8.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/utils/utf8.js +0 -227
- package/example/node_modules/ethers/lib.commonjs/utils/utf8.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/utils/uuid.d.ts +0 -8
- package/example/node_modules/ethers/lib.commonjs/utils/uuid.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/utils/uuid.js +0 -34
- package/example/node_modules/ethers/lib.commonjs/utils/uuid.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/wallet/base-wallet.d.ts +0 -57
- package/example/node_modules/ethers/lib.commonjs/wallet/base-wallet.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/wallet/base-wallet.js +0 -127
- package/example/node_modules/ethers/lib.commonjs/wallet/base-wallet.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/wallet/hdwallet.d.ts +0 -248
- package/example/node_modules/ethers/lib.commonjs/wallet/hdwallet.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/wallet/hdwallet.js +0 -506
- package/example/node_modules/ethers/lib.commonjs/wallet/hdwallet.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/wallet/index.d.ts +0 -27
- package/example/node_modules/ethers/lib.commonjs/wallet/index.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/wallet/index.js +0 -43
- package/example/node_modules/ethers/lib.commonjs/wallet/index.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/wallet/json-crowdsale.d.ts +0 -27
- package/example/node_modules/ethers/lib.commonjs/wallet/json-crowdsale.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/wallet/json-crowdsale.js +0 -60
- package/example/node_modules/ethers/lib.commonjs/wallet/json-crowdsale.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/wallet/json-keystore.d.ts +0 -89
- package/example/node_modules/ethers/lib.commonjs/wallet/json-keystore.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/wallet/json-keystore.js +0 -295
- package/example/node_modules/ethers/lib.commonjs/wallet/json-keystore.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/wallet/mnemonic.d.ts +0 -65
- package/example/node_modules/ethers/lib.commonjs/wallet/mnemonic.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/wallet/mnemonic.js +0 -169
- package/example/node_modules/ethers/lib.commonjs/wallet/mnemonic.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/wallet/utils.d.ts +0 -8
- package/example/node_modules/ethers/lib.commonjs/wallet/utils.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/wallet/utils.js +0 -149
- package/example/node_modules/ethers/lib.commonjs/wallet/utils.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/wallet/wallet.d.ts +0 -71
- package/example/node_modules/ethers/lib.commonjs/wallet/wallet.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/wallet/wallet.js +0 -148
- package/example/node_modules/ethers/lib.commonjs/wallet/wallet.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/wordlists/bit-reader.d.ts +0 -5
- package/example/node_modules/ethers/lib.commonjs/wordlists/bit-reader.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/wordlists/bit-reader.js +0 -36
- package/example/node_modules/ethers/lib.commonjs/wordlists/bit-reader.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/wordlists/decode-owl.d.ts +0 -9
- package/example/node_modules/ethers/lib.commonjs/wordlists/decode-owl.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/wordlists/decode-owl.js +0 -60
- package/example/node_modules/ethers/lib.commonjs/wordlists/decode-owl.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/wordlists/decode-owla.d.ts +0 -5
- package/example/node_modules/ethers/lib.commonjs/wordlists/decode-owla.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/wordlists/decode-owla.js +0 -32
- package/example/node_modules/ethers/lib.commonjs/wordlists/decode-owla.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/wordlists/generation/encode-latin.d.ts +0 -25
- package/example/node_modules/ethers/lib.commonjs/wordlists/generation/encode-latin.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/wordlists/generation/encode-latin.js +0 -351
- package/example/node_modules/ethers/lib.commonjs/wordlists/generation/encode-latin.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/wordlists/index.d.ts +0 -25
- package/example/node_modules/ethers/lib.commonjs/wordlists/index.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/wordlists/index.js +0 -33
- package/example/node_modules/ethers/lib.commonjs/wordlists/index.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/wordlists/lang-cz.d.ts +0 -23
- package/example/node_modules/ethers/lib.commonjs/wordlists/lang-cz.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/wordlists/lang-cz.js +0 -35
- package/example/node_modules/ethers/lib.commonjs/wordlists/lang-cz.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/wordlists/lang-en.d.ts +0 -23
- package/example/node_modules/ethers/lib.commonjs/wordlists/lang-en.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/wordlists/lang-en.js +0 -35
- package/example/node_modules/ethers/lib.commonjs/wordlists/lang-en.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/wordlists/lang-es.d.ts +0 -23
- package/example/node_modules/ethers/lib.commonjs/wordlists/lang-es.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/wordlists/lang-es.js +0 -36
- package/example/node_modules/ethers/lib.commonjs/wordlists/lang-es.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/wordlists/lang-fr.d.ts +0 -23
- package/example/node_modules/ethers/lib.commonjs/wordlists/lang-fr.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/wordlists/lang-fr.js +0 -36
- package/example/node_modules/ethers/lib.commonjs/wordlists/lang-fr.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/wordlists/lang-it.d.ts +0 -23
- package/example/node_modules/ethers/lib.commonjs/wordlists/lang-it.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/wordlists/lang-it.js +0 -35
- package/example/node_modules/ethers/lib.commonjs/wordlists/lang-it.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/wordlists/lang-ja.d.ts +0 -27
- package/example/node_modules/ethers/lib.commonjs/wordlists/lang-ja.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/wordlists/lang-ja.js +0 -158
- package/example/node_modules/ethers/lib.commonjs/wordlists/lang-ja.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/wordlists/lang-ko.d.ts +0 -25
- package/example/node_modules/ethers/lib.commonjs/wordlists/lang-ko.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/wordlists/lang-ko.js +0 -93
- package/example/node_modules/ethers/lib.commonjs/wordlists/lang-ko.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/wordlists/lang-pt.d.ts +0 -23
- package/example/node_modules/ethers/lib.commonjs/wordlists/lang-pt.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/wordlists/lang-pt.js +0 -35
- package/example/node_modules/ethers/lib.commonjs/wordlists/lang-pt.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/wordlists/lang-zh.d.ts +0 -32
- package/example/node_modules/ethers/lib.commonjs/wordlists/lang-zh.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/wordlists/lang-zh.js +0 -96
- package/example/node_modules/ethers/lib.commonjs/wordlists/lang-zh.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/wordlists/wordlist-owl.d.ts +0 -32
- package/example/node_modules/ethers/lib.commonjs/wordlists/wordlist-owl.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/wordlists/wordlist-owl.js +0 -70
- package/example/node_modules/ethers/lib.commonjs/wordlists/wordlist-owl.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/wordlists/wordlist-owla.d.ts +0 -30
- package/example/node_modules/ethers/lib.commonjs/wordlists/wordlist-owla.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/wordlists/wordlist-owla.js +0 -40
- package/example/node_modules/ethers/lib.commonjs/wordlists/wordlist-owla.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/wordlists/wordlist.d.ts +0 -47
- package/example/node_modules/ethers/lib.commonjs/wordlists/wordlist.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/wordlists/wordlist.js +0 -46
- package/example/node_modules/ethers/lib.commonjs/wordlists/wordlist.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/wordlists/wordlists-browser.d.ts +0 -3
- package/example/node_modules/ethers/lib.commonjs/wordlists/wordlists-browser.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/wordlists/wordlists-browser.js +0 -8
- package/example/node_modules/ethers/lib.commonjs/wordlists/wordlists-browser.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/wordlists/wordlists-extra.d.ts +0 -9
- package/example/node_modules/ethers/lib.commonjs/wordlists/wordlists-extra.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/wordlists/wordlists-extra.js +0 -20
- package/example/node_modules/ethers/lib.commonjs/wordlists/wordlists-extra.js.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/wordlists/wordlists.d.ts +0 -16
- package/example/node_modules/ethers/lib.commonjs/wordlists/wordlists.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.commonjs/wordlists/wordlists.js +0 -38
- package/example/node_modules/ethers/lib.commonjs/wordlists/wordlists.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/README.md +0 -16
- package/example/node_modules/ethers/lib.esm/_version.d.ts +0 -5
- package/example/node_modules/ethers/lib.esm/_version.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/_version.js +0 -6
- package/example/node_modules/ethers/lib.esm/_version.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/abi/abi-coder.d.ts +0 -61
- package/example/node_modules/ethers/lib.esm/abi/abi-coder.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/abi/abi-coder.js +0 -206
- package/example/node_modules/ethers/lib.esm/abi/abi-coder.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/abi/bytes32.d.ts +0 -15
- package/example/node_modules/ethers/lib.esm/abi/bytes32.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/abi/bytes32.js +0 -40
- package/example/node_modules/ethers/lib.esm/abi/bytes32.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/abi/coders/abstract-coder.d.ts +0 -124
- package/example/node_modules/ethers/lib.esm/abi/coders/abstract-coder.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/abi/coders/abstract-coder.js +0 -466
- package/example/node_modules/ethers/lib.esm/abi/coders/abstract-coder.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/abi/coders/address.d.ts +0 -13
- package/example/node_modules/ethers/lib.esm/abi/coders/address.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/abi/coders/address.js +0 -29
- package/example/node_modules/ethers/lib.esm/abi/coders/address.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/abi/coders/anonymous.d.ts +0 -15
- package/example/node_modules/ethers/lib.esm/abi/coders/anonymous.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/abi/coders/anonymous.js +0 -23
- package/example/node_modules/ethers/lib.esm/abi/coders/anonymous.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/abi/coders/array.d.ts +0 -25
- package/example/node_modules/ethers/lib.esm/abi/coders/array.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/abi/coders/array.js +0 -159
- package/example/node_modules/ethers/lib.esm/abi/coders/array.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/abi/coders/boolean.d.ts +0 -13
- package/example/node_modules/ethers/lib.esm/abi/coders/boolean.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/abi/coders/boolean.js +0 -21
- package/example/node_modules/ethers/lib.esm/abi/coders/boolean.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/abi/coders/bytes.d.ts +0 -19
- package/example/node_modules/ethers/lib.esm/abi/coders/bytes.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/abi/coders/bytes.js +0 -34
- package/example/node_modules/ethers/lib.esm/abi/coders/bytes.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/abi/coders/fixed-bytes.d.ts +0 -15
- package/example/node_modules/ethers/lib.esm/abi/coders/fixed-bytes.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/abi/coders/fixed-bytes.js +0 -28
- package/example/node_modules/ethers/lib.esm/abi/coders/fixed-bytes.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/abi/coders/null.d.ts +0 -12
- package/example/node_modules/ethers/lib.esm/abi/coders/null.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/abi/coders/null.js +0 -24
- package/example/node_modules/ethers/lib.esm/abi/coders/null.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/abi/coders/number.d.ts +0 -16
- package/example/node_modules/ethers/lib.esm/abi/coders/number.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/abi/coders/number.js +0 -45
- package/example/node_modules/ethers/lib.esm/abi/coders/number.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/abi/coders/string.d.ts +0 -13
- package/example/node_modules/ethers/lib.esm/abi/coders/string.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/abi/coders/string.js +0 -21
- package/example/node_modules/ethers/lib.esm/abi/coders/string.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/abi/coders/tuple.d.ts +0 -16
- package/example/node_modules/ethers/lib.esm/abi/coders/tuple.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/abi/coders/tuple.js +0 -63
- package/example/node_modules/ethers/lib.esm/abi/coders/tuple.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/abi/fragments.d.ts +0 -466
- package/example/node_modules/ethers/lib.esm/abi/fragments.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/abi/fragments.js +0 -1319
- package/example/node_modules/ethers/lib.esm/abi/fragments.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/abi/index.d.ts +0 -18
- package/example/node_modules/ethers/lib.esm/abi/index.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/abi/index.js +0 -17
- package/example/node_modules/ethers/lib.esm/abi/index.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/abi/interface.d.ts +0 -382
- package/example/node_modules/ethers/lib.esm/abi/interface.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/abi/interface.js +0 -1101
- package/example/node_modules/ethers/lib.esm/abi/interface.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/abi/typed.d.ts +0 -570
- package/example/node_modules/ethers/lib.esm/abi/typed.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/abi/typed.js +0 -602
- package/example/node_modules/ethers/lib.esm/abi/typed.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/address/address.d.ts +0 -56
- package/example/node_modules/ethers/lib.esm/address/address.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/address/address.js +0 -156
- package/example/node_modules/ethers/lib.esm/address/address.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/address/checks.d.ts +0 -81
- package/example/node_modules/ethers/lib.esm/address/checks.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/address/checks.js +0 -114
- package/example/node_modules/ethers/lib.esm/address/checks.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/address/contract-address.d.ts +0 -48
- package/example/node_modules/ethers/lib.esm/address/contract-address.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/address/contract-address.js +0 -69
- package/example/node_modules/ethers/lib.esm/address/contract-address.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/address/index.d.ts +0 -49
- package/example/node_modules/ethers/lib.esm/address/index.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/address/index.js +0 -19
- package/example/node_modules/ethers/lib.esm/address/index.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/constants/addresses.d.ts +0 -7
- package/example/node_modules/ethers/lib.esm/constants/addresses.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/constants/addresses.js +0 -7
- package/example/node_modules/ethers/lib.esm/constants/addresses.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/constants/hashes.d.ts +0 -7
- package/example/node_modules/ethers/lib.esm/constants/hashes.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/constants/hashes.js +0 -7
- package/example/node_modules/ethers/lib.esm/constants/hashes.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/constants/index.d.ts +0 -10
- package/example/node_modules/ethers/lib.esm/constants/index.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/constants/index.js +0 -10
- package/example/node_modules/ethers/lib.esm/constants/index.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/constants/numbers.d.ts +0 -31
- package/example/node_modules/ethers/lib.esm/constants/numbers.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/constants/numbers.js +0 -31
- package/example/node_modules/ethers/lib.esm/constants/numbers.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/constants/strings.d.ts +0 -13
- package/example/node_modules/ethers/lib.esm/constants/strings.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/constants/strings.js +0 -14
- package/example/node_modules/ethers/lib.esm/constants/strings.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/contract/contract.d.ts +0 -168
- package/example/node_modules/ethers/lib.esm/contract/contract.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/contract/contract.js +0 -953
- package/example/node_modules/ethers/lib.esm/contract/contract.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/contract/factory.d.ts +0 -62
- package/example/node_modules/ethers/lib.esm/contract/factory.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/contract/factory.js +0 -112
- package/example/node_modules/ethers/lib.esm/contract/factory.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/contract/index.d.ts +0 -13
- package/example/node_modules/ethers/lib.esm/contract/index.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/contract/index.js +0 -12
- package/example/node_modules/ethers/lib.esm/contract/index.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/contract/types.d.ts +0 -193
- package/example/node_modules/ethers/lib.esm/contract/types.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/contract/types.js +0 -5
- package/example/node_modules/ethers/lib.esm/contract/types.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/contract/wrappers.d.ts +0 -143
- package/example/node_modules/ethers/lib.esm/contract/wrappers.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/contract/wrappers.js +0 -177
- package/example/node_modules/ethers/lib.esm/contract/wrappers.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/crypto/crypto-browser.d.ts +0 -15
- package/example/node_modules/ethers/lib.esm/crypto/crypto-browser.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/crypto/crypto-browser.js +0 -48
- package/example/node_modules/ethers/lib.esm/crypto/crypto-browser.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/crypto/crypto.d.ts +0 -2
- package/example/node_modules/ethers/lib.esm/crypto/crypto.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/crypto/crypto.js +0 -2
- package/example/node_modules/ethers/lib.esm/crypto/crypto.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/crypto/hmac.d.ts +0 -25
- package/example/node_modules/ethers/lib.esm/crypto/hmac.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/crypto/hmac.js +0 -47
- package/example/node_modules/ethers/lib.esm/crypto/hmac.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/crypto/index.d.ts +0 -25
- package/example/node_modules/ethers/lib.esm/crypto/index.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/crypto/index.js +0 -36
- package/example/node_modules/ethers/lib.esm/crypto/index.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/crypto/keccak.d.ts +0 -35
- package/example/node_modules/ethers/lib.esm/crypto/keccak.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/crypto/keccak.js +0 -48
- package/example/node_modules/ethers/lib.esm/crypto/keccak.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/crypto/pbkdf2.d.ts +0 -35
- package/example/node_modules/ethers/lib.esm/crypto/pbkdf2.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/crypto/pbkdf2.js +0 -49
- package/example/node_modules/ethers/lib.esm/crypto/pbkdf2.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/crypto/random.d.ts +0 -14
- package/example/node_modules/ethers/lib.esm/crypto/random.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/crypto/random.js +0 -34
- package/example/node_modules/ethers/lib.esm/crypto/random.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/crypto/ripemd160.d.ts +0 -25
- package/example/node_modules/ethers/lib.esm/crypto/ripemd160.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/crypto/ripemd160.js +0 -38
- package/example/node_modules/ethers/lib.esm/crypto/ripemd160.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/crypto/scrypt.d.ts +0 -82
- package/example/node_modules/ethers/lib.esm/crypto/scrypt.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/crypto/scrypt.js +0 -99
- package/example/node_modules/ethers/lib.esm/crypto/scrypt.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/crypto/sha2.d.ts +0 -47
- package/example/node_modules/ethers/lib.esm/crypto/sha2.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/crypto/sha2.js +0 -71
- package/example/node_modules/ethers/lib.esm/crypto/sha2.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/crypto/signature.d.ts +0 -183
- package/example/node_modules/ethers/lib.esm/crypto/signature.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/crypto/signature.js +0 -346
- package/example/node_modules/ethers/lib.esm/crypto/signature.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/crypto/signing-key.d.ts +0 -122
- package/example/node_modules/ethers/lib.esm/crypto/signing-key.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/crypto/signing-key.js +0 -166
- package/example/node_modules/ethers/lib.esm/crypto/signing-key.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/ethers.d.ts +0 -22
- package/example/node_modules/ethers/lib.esm/ethers.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/ethers.js +0 -16
- package/example/node_modules/ethers/lib.esm/ethers.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/hash/authorization.d.ts +0 -18
- package/example/node_modules/ethers/lib.esm/hash/authorization.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/hash/authorization.js +0 -25
- package/example/node_modules/ethers/lib.esm/hash/authorization.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/hash/id.d.ts +0 -13
- package/example/node_modules/ethers/lib.esm/hash/id.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/hash/id.js +0 -17
- package/example/node_modules/ethers/lib.esm/hash/id.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/hash/index.d.ts +0 -15
- package/example/node_modules/ethers/lib.esm/hash/index.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/hash/index.js +0 -13
- package/example/node_modules/ethers/lib.esm/hash/index.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/hash/message.d.ts +0 -36
- package/example/node_modules/ethers/lib.esm/hash/message.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/hash/message.js +0 -51
- package/example/node_modules/ethers/lib.esm/hash/message.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/hash/namehash.d.ts +0 -20
- package/example/node_modules/ethers/lib.esm/hash/namehash.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/hash/namehash.js +0 -84
- package/example/node_modules/ethers/lib.esm/hash/namehash.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/hash/solidity.d.ts +0 -31
- package/example/node_modules/ethers/lib.esm/hash/solidity.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/hash/solidity.js +0 -103
- package/example/node_modules/ethers/lib.esm/hash/solidity.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/hash/typed-data.d.ts +0 -150
- package/example/node_modules/ethers/lib.esm/hash/typed-data.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/hash/typed-data.js +0 -519
- package/example/node_modules/ethers/lib.esm/hash/typed-data.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/index.d.ts +0 -11
- package/example/node_modules/ethers/lib.esm/index.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/index.js +0 -11
- package/example/node_modules/ethers/lib.esm/index.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/package.json +0 -12
- package/example/node_modules/ethers/lib.esm/providers/abstract-provider.d.ts +0 -451
- package/example/node_modules/ethers/lib.esm/providers/abstract-provider.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/abstract-provider.js +0 -1404
- package/example/node_modules/ethers/lib.esm/providers/abstract-provider.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/abstract-signer.d.ts +0 -69
- package/example/node_modules/ethers/lib.esm/providers/abstract-signer.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/abstract-signer.js +0 -244
- package/example/node_modules/ethers/lib.esm/providers/abstract-signer.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/community.d.ts +0 -29
- package/example/node_modules/ethers/lib.esm/providers/community.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/community.js +0 -36
- package/example/node_modules/ethers/lib.esm/providers/community.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/contracts.d.ts +0 -36
- package/example/node_modules/ethers/lib.esm/providers/contracts.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/contracts.js +0 -2
- package/example/node_modules/ethers/lib.esm/providers/contracts.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/default-provider.d.ts +0 -49
- package/example/node_modules/ethers/lib.esm/providers/default-provider.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/default-provider.js +0 -196
- package/example/node_modules/ethers/lib.esm/providers/default-provider.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/ens-resolver.d.ts +0 -147
- package/example/node_modules/ethers/lib.esm/providers/ens-resolver.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/ens-resolver.js +0 -496
- package/example/node_modules/ethers/lib.esm/providers/ens-resolver.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/format.d.ts +0 -15
- package/example/node_modules/ethers/lib.esm/providers/format.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/format.js +0 -297
- package/example/node_modules/ethers/lib.esm/providers/format.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/formatting.d.ts +0 -318
- package/example/node_modules/ethers/lib.esm/providers/formatting.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/formatting.js +0 -9
- package/example/node_modules/ethers/lib.esm/providers/formatting.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/index.d.ts +0 -50
- package/example/node_modules/ethers/lib.esm/providers/index.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/index.js +0 -40
- package/example/node_modules/ethers/lib.esm/providers/index.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/network.d.ts +0 -99
- package/example/node_modules/ethers/lib.esm/providers/network.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/network.js +0 -365
- package/example/node_modules/ethers/lib.esm/providers/network.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/pagination.d.ts +0 -6
- package/example/node_modules/ethers/lib.esm/providers/pagination.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/pagination.js +0 -2
- package/example/node_modules/ethers/lib.esm/providers/pagination.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/plugin-fallback.d.ts +0 -13
- package/example/node_modules/ethers/lib.esm/providers/plugin-fallback.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/plugin-fallback.js +0 -26
- package/example/node_modules/ethers/lib.esm/providers/plugin-fallback.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/plugins-network.d.ts +0 -170
- package/example/node_modules/ethers/lib.esm/providers/plugins-network.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/plugins-network.js +0 -208
- package/example/node_modules/ethers/lib.esm/providers/plugins-network.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/provider-alchemy.d.ts +0 -50
- package/example/node_modules/ethers/lib.esm/providers/provider-alchemy.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/provider-alchemy.js +0 -147
- package/example/node_modules/ethers/lib.esm/providers/provider-alchemy.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/provider-ankr.d.ts +0 -63
- package/example/node_modules/ethers/lib.esm/providers/provider-ankr.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/provider-ankr.js +0 -139
- package/example/node_modules/ethers/lib.esm/providers/provider-ankr.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/provider-blockscout.d.ts +0 -59
- package/example/node_modules/ethers/lib.esm/providers/provider-blockscout.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/provider-blockscout.js +0 -141
- package/example/node_modules/ethers/lib.esm/providers/provider-blockscout.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/provider-browser.d.ts +0 -108
- package/example/node_modules/ethers/lib.esm/providers/provider-browser.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/provider-browser.js +0 -200
- package/example/node_modules/ethers/lib.esm/providers/provider-browser.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/provider-chainstack.d.ts +0 -46
- package/example/node_modules/ethers/lib.esm/providers/provider-chainstack.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/provider-chainstack.js +0 -98
- package/example/node_modules/ethers/lib.esm/providers/provider-chainstack.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/provider-cloudflare.d.ts +0 -14
- package/example/node_modules/ethers/lib.esm/providers/provider-cloudflare.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/provider-cloudflare.js +0 -22
- package/example/node_modules/ethers/lib.esm/providers/provider-cloudflare.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/provider-etherscan.d.ts +0 -152
- package/example/node_modules/ethers/lib.esm/providers/provider-etherscan.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/provider-etherscan.js +0 -598
- package/example/node_modules/ethers/lib.esm/providers/provider-etherscan.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/provider-fallback.d.ts +0 -115
- package/example/node_modules/ethers/lib.esm/providers/provider-fallback.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/provider-fallback.js +0 -620
- package/example/node_modules/ethers/lib.esm/providers/provider-fallback.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/provider-infura.d.ts +0 -101
- package/example/node_modules/ethers/lib.esm/providers/provider-infura.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/provider-infura.js +0 -201
- package/example/node_modules/ethers/lib.esm/providers/provider-infura.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/provider-ipcsocket-browser.d.ts +0 -3
- package/example/node_modules/ethers/lib.esm/providers/provider-ipcsocket-browser.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/provider-ipcsocket-browser.js +0 -3
- package/example/node_modules/ethers/lib.esm/providers/provider-ipcsocket-browser.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/provider-ipcsocket.d.ts +0 -21
- package/example/node_modules/ethers/lib.esm/providers/provider-ipcsocket.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/provider-ipcsocket.js +0 -68
- package/example/node_modules/ethers/lib.esm/providers/provider-ipcsocket.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/provider-jsonrpc.d.ts +0 -361
- package/example/node_modules/ethers/lib.esm/providers/provider-jsonrpc.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/provider-jsonrpc.js +0 -973
- package/example/node_modules/ethers/lib.esm/providers/provider-jsonrpc.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/provider-pocket.d.ts +0 -54
- package/example/node_modules/ethers/lib.esm/providers/provider-pocket.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/provider-pocket.js +0 -105
- package/example/node_modules/ethers/lib.esm/providers/provider-pocket.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/provider-quicknode.d.ts +0 -59
- package/example/node_modules/ethers/lib.esm/providers/provider-quicknode.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/provider-quicknode.js +0 -159
- package/example/node_modules/ethers/lib.esm/providers/provider-quicknode.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/provider-socket.d.ts +0 -113
- package/example/node_modules/ethers/lib.esm/providers/provider-socket.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/provider-socket.js +0 -301
- package/example/node_modules/ethers/lib.esm/providers/provider-socket.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/provider-websocket.d.ts +0 -37
- package/example/node_modules/ethers/lib.esm/providers/provider-websocket.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/provider-websocket.js +0 -76
- package/example/node_modules/ethers/lib.esm/providers/provider-websocket.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/provider.d.ts +0 -1230
- package/example/node_modules/ethers/lib.esm/providers/provider.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/provider.js +0 -1315
- package/example/node_modules/ethers/lib.esm/providers/provider.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/signer-noncemanager.d.ts +0 -38
- package/example/node_modules/ethers/lib.esm/providers/signer-noncemanager.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/signer-noncemanager.js +0 -74
- package/example/node_modules/ethers/lib.esm/providers/signer-noncemanager.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/signer.d.ts +0 -131
- package/example/node_modules/ethers/lib.esm/providers/signer.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/signer.js +0 -2
- package/example/node_modules/ethers/lib.esm/providers/signer.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/subscriber-connection.d.ts +0 -25
- package/example/node_modules/ethers/lib.esm/providers/subscriber-connection.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/subscriber-connection.js +0 -52
- package/example/node_modules/ethers/lib.esm/providers/subscriber-connection.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/subscriber-filterid.d.ts +0 -64
- package/example/node_modules/ethers/lib.esm/providers/subscriber-filterid.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/subscriber-filterid.js +0 -174
- package/example/node_modules/ethers/lib.esm/providers/subscriber-filterid.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/subscriber-polling.d.ts +0 -100
- package/example/node_modules/ethers/lib.esm/providers/subscriber-polling.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/subscriber-polling.js +0 -293
- package/example/node_modules/ethers/lib.esm/providers/subscriber-polling.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/ws-browser.d.ts +0 -3
- package/example/node_modules/ethers/lib.esm/providers/ws-browser.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/ws-browser.js +0 -16
- package/example/node_modules/ethers/lib.esm/providers/ws-browser.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/ws.d.ts +0 -2
- package/example/node_modules/ethers/lib.esm/providers/ws.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/providers/ws.js +0 -2
- package/example/node_modules/ethers/lib.esm/providers/ws.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/transaction/accesslist.d.ts +0 -6
- package/example/node_modules/ethers/lib.esm/transaction/accesslist.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/transaction/accesslist.js +0 -37
- package/example/node_modules/ethers/lib.esm/transaction/accesslist.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/transaction/address.d.ts +0 -15
- package/example/node_modules/ethers/lib.esm/transaction/address.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/transaction/address.js +0 -25
- package/example/node_modules/ethers/lib.esm/transaction/address.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/transaction/authorization.d.ts +0 -3
- package/example/node_modules/ethers/lib.esm/transaction/authorization.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/transaction/authorization.js +0 -12
- package/example/node_modules/ethers/lib.esm/transaction/authorization.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/transaction/index.d.ts +0 -40
- package/example/node_modules/ethers/lib.esm/transaction/index.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/transaction/index.js +0 -11
- package/example/node_modules/ethers/lib.esm/transaction/index.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/transaction/transaction.d.ts +0 -430
- package/example/node_modules/ethers/lib.esm/transaction/transaction.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/transaction/transaction.js +0 -1288
- package/example/node_modules/ethers/lib.esm/transaction/transaction.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/utils/base58.d.ts +0 -23
- package/example/node_modules/ethers/lib.esm/utils/base58.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/utils/base58.js +0 -63
- package/example/node_modules/ethers/lib.esm/utils/base58.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/utils/base64-browser.d.ts +0 -4
- package/example/node_modules/ethers/lib.esm/utils/base64-browser.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/utils/base64-browser.js +0 -19
- package/example/node_modules/ethers/lib.esm/utils/base64-browser.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/utils/base64.d.ts +0 -40
- package/example/node_modules/ethers/lib.esm/utils/base64.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/utils/base64.js +0 -53
- package/example/node_modules/ethers/lib.esm/utils/base64.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/utils/data.d.ts +0 -93
- package/example/node_modules/ethers/lib.esm/utils/data.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/utils/data.js +0 -171
- package/example/node_modules/ethers/lib.esm/utils/data.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/utils/errors.d.ts +0 -512
- package/example/node_modules/ethers/lib.esm/utils/errors.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/utils/errors.js +0 -232
- package/example/node_modules/ethers/lib.esm/utils/errors.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/utils/events.d.ts +0 -77
- package/example/node_modules/ethers/lib.esm/utils/events.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/utils/events.js +0 -42
- package/example/node_modules/ethers/lib.esm/utils/events.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/utils/fetch.d.ts +0 -363
- package/example/node_modules/ethers/lib.esm/utils/fetch.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/utils/fetch.js +0 -852
- package/example/node_modules/ethers/lib.esm/utils/fetch.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/utils/fixednumber.d.ts +0 -252
- package/example/node_modules/ethers/lib.esm/utils/fixednumber.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/utils/fixednumber.js +0 -526
- package/example/node_modules/ethers/lib.esm/utils/fixednumber.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/utils/geturl-browser.d.ts +0 -4
- package/example/node_modules/ethers/lib.esm/utils/geturl-browser.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/utils/geturl-browser.js +0 -62
- package/example/node_modules/ethers/lib.esm/utils/geturl-browser.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/utils/geturl.d.ts +0 -10
- package/example/node_modules/ethers/lib.esm/utils/geturl.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/utils/geturl.js +0 -121
- package/example/node_modules/ethers/lib.esm/utils/geturl.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/utils/index.d.ts +0 -30
- package/example/node_modules/ethers/lib.esm/utils/index.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/utils/index.js +0 -22
- package/example/node_modules/ethers/lib.esm/utils/index.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/utils/maths.d.ts +0 -66
- package/example/node_modules/ethers/lib.esm/utils/maths.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/utils/maths.js +0 -231
- package/example/node_modules/ethers/lib.esm/utils/maths.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/utils/properties.d.ts +0 -23
- package/example/node_modules/ethers/lib.esm/utils/properties.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/utils/properties.js +0 -54
- package/example/node_modules/ethers/lib.esm/utils/properties.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/utils/rlp-decode.d.ts +0 -6
- package/example/node_modules/ethers/lib.esm/utils/rlp-decode.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/utils/rlp-decode.js +0 -79
- package/example/node_modules/ethers/lib.esm/utils/rlp-decode.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/utils/rlp-encode.d.ts +0 -6
- package/example/node_modules/ethers/lib.esm/utils/rlp-encode.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/utils/rlp-encode.js +0 -49
- package/example/node_modules/ethers/lib.esm/utils/rlp-encode.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/utils/rlp.d.ts +0 -17
- package/example/node_modules/ethers/lib.esm/utils/rlp.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/utils/rlp.js +0 -9
- package/example/node_modules/ethers/lib.esm/utils/rlp.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/utils/units.d.ts +0 -24
- package/example/node_modules/ethers/lib.esm/utils/units.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/utils/units.js +0 -83
- package/example/node_modules/ethers/lib.esm/utils/units.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/utils/utf8.d.ts +0 -96
- package/example/node_modules/ethers/lib.esm/utils/utf8.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/utils/utf8.js +0 -221
- package/example/node_modules/ethers/lib.esm/utils/utf8.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/utils/uuid.d.ts +0 -8
- package/example/node_modules/ethers/lib.esm/utils/uuid.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/utils/uuid.js +0 -30
- package/example/node_modules/ethers/lib.esm/utils/uuid.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/wallet/base-wallet.d.ts +0 -57
- package/example/node_modules/ethers/lib.esm/wallet/base-wallet.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/wallet/base-wallet.js +0 -123
- package/example/node_modules/ethers/lib.esm/wallet/base-wallet.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/wallet/hdwallet.d.ts +0 -248
- package/example/node_modules/ethers/lib.esm/wallet/hdwallet.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/wallet/hdwallet.js +0 -499
- package/example/node_modules/ethers/lib.esm/wallet/hdwallet.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/wallet/index.d.ts +0 -27
- package/example/node_modules/ethers/lib.esm/wallet/index.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/wallet/index.js +0 -25
- package/example/node_modules/ethers/lib.esm/wallet/index.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/wallet/json-crowdsale.d.ts +0 -27
- package/example/node_modules/ethers/lib.esm/wallet/json-crowdsale.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/wallet/json-crowdsale.js +0 -55
- package/example/node_modules/ethers/lib.esm/wallet/json-crowdsale.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/wallet/json-keystore.d.ts +0 -89
- package/example/node_modules/ethers/lib.esm/wallet/json-keystore.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/wallet/json-keystore.js +0 -287
- package/example/node_modules/ethers/lib.esm/wallet/json-keystore.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/wallet/mnemonic.d.ts +0 -65
- package/example/node_modules/ethers/lib.esm/wallet/mnemonic.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/wallet/mnemonic.js +0 -165
- package/example/node_modules/ethers/lib.esm/wallet/mnemonic.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/wallet/utils.d.ts +0 -8
- package/example/node_modules/ethers/lib.esm/wallet/utils.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/wallet/utils.js +0 -142
- package/example/node_modules/ethers/lib.esm/wallet/utils.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/wallet/wallet.d.ts +0 -71
- package/example/node_modules/ethers/lib.esm/wallet/wallet.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/wallet/wallet.js +0 -144
- package/example/node_modules/ethers/lib.esm/wallet/wallet.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/wordlists/bit-reader.d.ts +0 -5
- package/example/node_modules/ethers/lib.esm/wordlists/bit-reader.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/wordlists/bit-reader.js +0 -32
- package/example/node_modules/ethers/lib.esm/wordlists/bit-reader.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/wordlists/decode-owl.d.ts +0 -9
- package/example/node_modules/ethers/lib.esm/wordlists/decode-owl.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/wordlists/decode-owl.js +0 -55
- package/example/node_modules/ethers/lib.esm/wordlists/decode-owl.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/wordlists/decode-owla.d.ts +0 -5
- package/example/node_modules/ethers/lib.esm/wordlists/decode-owla.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/wordlists/decode-owla.js +0 -28
- package/example/node_modules/ethers/lib.esm/wordlists/decode-owla.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/wordlists/generation/encode-latin.d.ts +0 -25
- package/example/node_modules/ethers/lib.esm/wordlists/generation/encode-latin.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/wordlists/generation/encode-latin.js +0 -344
- package/example/node_modules/ethers/lib.esm/wordlists/generation/encode-latin.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/wordlists/index.d.ts +0 -25
- package/example/node_modules/ethers/lib.esm/wordlists/index.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/wordlists/index.js +0 -25
- package/example/node_modules/ethers/lib.esm/wordlists/index.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/wordlists/lang-cz.d.ts +0 -23
- package/example/node_modules/ethers/lib.esm/wordlists/lang-cz.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/wordlists/lang-cz.js +0 -31
- package/example/node_modules/ethers/lib.esm/wordlists/lang-cz.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/wordlists/lang-en.d.ts +0 -23
- package/example/node_modules/ethers/lib.esm/wordlists/lang-en.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/wordlists/lang-en.js +0 -31
- package/example/node_modules/ethers/lib.esm/wordlists/lang-en.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/wordlists/lang-es.d.ts +0 -23
- package/example/node_modules/ethers/lib.esm/wordlists/lang-es.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/wordlists/lang-es.js +0 -32
- package/example/node_modules/ethers/lib.esm/wordlists/lang-es.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/wordlists/lang-fr.d.ts +0 -23
- package/example/node_modules/ethers/lib.esm/wordlists/lang-fr.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/wordlists/lang-fr.js +0 -32
- package/example/node_modules/ethers/lib.esm/wordlists/lang-fr.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/wordlists/lang-it.d.ts +0 -23
- package/example/node_modules/ethers/lib.esm/wordlists/lang-it.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/wordlists/lang-it.js +0 -31
- package/example/node_modules/ethers/lib.esm/wordlists/lang-it.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/wordlists/lang-ja.d.ts +0 -27
- package/example/node_modules/ethers/lib.esm/wordlists/lang-ja.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/wordlists/lang-ja.js +0 -154
- package/example/node_modules/ethers/lib.esm/wordlists/lang-ja.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/wordlists/lang-ko.d.ts +0 -25
- package/example/node_modules/ethers/lib.esm/wordlists/lang-ko.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/wordlists/lang-ko.js +0 -89
- package/example/node_modules/ethers/lib.esm/wordlists/lang-ko.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/wordlists/lang-pt.d.ts +0 -23
- package/example/node_modules/ethers/lib.esm/wordlists/lang-pt.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/wordlists/lang-pt.js +0 -31
- package/example/node_modules/ethers/lib.esm/wordlists/lang-pt.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/wordlists/lang-zh.d.ts +0 -32
- package/example/node_modules/ethers/lib.esm/wordlists/lang-zh.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/wordlists/lang-zh.js +0 -92
- package/example/node_modules/ethers/lib.esm/wordlists/lang-zh.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/wordlists/wordlist-owl.d.ts +0 -32
- package/example/node_modules/ethers/lib.esm/wordlists/wordlist-owl.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/wordlists/wordlist-owl.js +0 -66
- package/example/node_modules/ethers/lib.esm/wordlists/wordlist-owl.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/wordlists/wordlist-owla.d.ts +0 -30
- package/example/node_modules/ethers/lib.esm/wordlists/wordlist-owla.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/wordlists/wordlist-owla.js +0 -36
- package/example/node_modules/ethers/lib.esm/wordlists/wordlist-owla.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/wordlists/wordlist.d.ts +0 -47
- package/example/node_modules/ethers/lib.esm/wordlists/wordlist.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/wordlists/wordlist.js +0 -42
- package/example/node_modules/ethers/lib.esm/wordlists/wordlist.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/wordlists/wordlists-browser.d.ts +0 -3
- package/example/node_modules/ethers/lib.esm/wordlists/wordlists-browser.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/wordlists/wordlists-browser.js +0 -5
- package/example/node_modules/ethers/lib.esm/wordlists/wordlists-browser.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/wordlists/wordlists-extra.d.ts +0 -9
- package/example/node_modules/ethers/lib.esm/wordlists/wordlists-extra.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/wordlists/wordlists-extra.js +0 -9
- package/example/node_modules/ethers/lib.esm/wordlists/wordlists-extra.js.map +0 -1
- package/example/node_modules/ethers/lib.esm/wordlists/wordlists.d.ts +0 -16
- package/example/node_modules/ethers/lib.esm/wordlists/wordlists.d.ts.map +0 -1
- package/example/node_modules/ethers/lib.esm/wordlists/wordlists.js +0 -35
- package/example/node_modules/ethers/lib.esm/wordlists/wordlists.js.map +0 -1
- package/example/node_modules/ethers/package.json +0 -135
- package/example/node_modules/ethers/rollup.config.mjs +0 -50
- package/example/node_modules/ethers/src.ts/_version.ts +0 -6
- package/example/node_modules/ethers/src.ts/abi/abi-coder.ts +0 -237
- package/example/node_modules/ethers/src.ts/abi/bytes32.ts +0 -45
- package/example/node_modules/ethers/src.ts/abi/coders/abstract-coder.ts +0 -541
- package/example/node_modules/ethers/src.ts/abi/coders/address.ts +0 -36
- package/example/node_modules/ethers/src.ts/abi/coders/anonymous.ts +0 -29
- package/example/node_modules/ethers/src.ts/abi/coders/array.ts +0 -199
- package/example/node_modules/ethers/src.ts/abi/coders/boolean.ts +0 -27
- package/example/node_modules/ethers/src.ts/abi/coders/bytes.ts +0 -43
- package/example/node_modules/ethers/src.ts/abi/coders/fixed-bytes.ts +0 -37
- package/example/node_modules/ethers/src.ts/abi/coders/null.ts +0 -28
- package/example/node_modules/ethers/src.ts/abi/coders/number.ts +0 -63
- package/example/node_modules/ethers/src.ts/abi/coders/string.ts +0 -29
- package/example/node_modules/ethers/src.ts/abi/coders/tuple.ts +0 -69
- package/example/node_modules/ethers/src.ts/abi/fragments.ts +0 -1617
- package/example/node_modules/ethers/src.ts/abi/index.ts +0 -41
- package/example/node_modules/ethers/src.ts/abi/interface.ts +0 -1271
- package/example/node_modules/ethers/src.ts/abi/typed.ts +0 -796
- package/example/node_modules/ethers/src.ts/address/address.ts +0 -173
- package/example/node_modules/ethers/src.ts/address/checks.ts +0 -123
- package/example/node_modules/ethers/src.ts/address/contract-address.ts +0 -80
- package/example/node_modules/ethers/src.ts/address/index.ts +0 -57
- package/example/node_modules/ethers/src.ts/constants/addresses.ts +0 -8
- package/example/node_modules/ethers/src.ts/constants/hashes.ts +0 -7
- package/example/node_modules/ethers/src.ts/constants/index.ts +0 -16
- package/example/node_modules/ethers/src.ts/constants/numbers.ts +0 -35
- package/example/node_modules/ethers/src.ts/constants/strings.ts +0 -16
- package/example/node_modules/ethers/src.ts/contract/contract.ts +0 -1120
- package/example/node_modules/ethers/src.ts/contract/factory.ts +0 -143
- package/example/node_modules/ethers/src.ts/contract/index.ts +0 -31
- package/example/node_modules/ethers/src.ts/contract/types.ts +0 -236
- package/example/node_modules/ethers/src.ts/contract/wrappers.ts +0 -225
- package/example/node_modules/ethers/src.ts/crypto/crypto-browser.ts +0 -64
- package/example/node_modules/ethers/src.ts/crypto/crypto.ts +0 -4
- package/example/node_modules/ethers/src.ts/crypto/hmac.ts +0 -51
- package/example/node_modules/ethers/src.ts/crypto/index.ts +0 -59
- package/example/node_modules/ethers/src.ts/crypto/keccak.ts +0 -54
- package/example/node_modules/ethers/src.ts/crypto/pbkdf2.ts +0 -55
- package/example/node_modules/ethers/src.ts/crypto/random.ts +0 -36
- package/example/node_modules/ethers/src.ts/crypto/ripemd160.ts +0 -43
- package/example/node_modules/ethers/src.ts/crypto/scrypt.ts +0 -114
- package/example/node_modules/ethers/src.ts/crypto/sha2.ts +0 -78
- package/example/node_modules/ethers/src.ts/crypto/signature.ts +0 -410
- package/example/node_modules/ethers/src.ts/crypto/signing-key.ts +0 -196
- package/example/node_modules/ethers/src.ts/ethers.ts +0 -221
- package/example/node_modules/ethers/src.ts/hash/authorization.ts +0 -38
- package/example/node_modules/ethers/src.ts/hash/id.ts +0 -17
- package/example/node_modules/ethers/src.ts/hash/index.ts +0 -18
- package/example/node_modules/ethers/src.ts/hash/message.ts +0 -51
- package/example/node_modules/ethers/src.ts/hash/namehash.ts +0 -101
- package/example/node_modules/ethers/src.ts/hash/solidity.ts +0 -117
- package/example/node_modules/ethers/src.ts/hash/typed-data.ts +0 -658
- package/example/node_modules/ethers/src.ts/index.ts +0 -12
- package/example/node_modules/ethers/src.ts/providers/abstract-provider.ts +0 -1761
- package/example/node_modules/ethers/src.ts/providers/abstract-signer.ts +0 -314
- package/example/node_modules/ethers/src.ts/providers/community.ts +0 -49
- package/example/node_modules/ethers/src.ts/providers/contracts.ts +0 -42
- package/example/node_modules/ethers/src.ts/providers/default-provider.ts +0 -202
- package/example/node_modules/ethers/src.ts/providers/ens-resolver.ts +0 -606
- package/example/node_modules/ethers/src.ts/providers/format.ts +0 -335
- package/example/node_modules/ethers/src.ts/providers/formatting.ts +0 -418
- package/example/node_modules/ethers/src.ts/providers/index.ts +0 -135
- package/example/node_modules/ethers/src.ts/providers/network.ts +0 -438
- package/example/node_modules/ethers/src.ts/providers/pagination.ts +0 -8
- package/example/node_modules/ethers/src.ts/providers/plugin-fallback.ts +0 -35
- package/example/node_modules/ethers/src.ts/providers/plugins-network.ts +0 -281
- package/example/node_modules/ethers/src.ts/providers/provider-alchemy.ts +0 -166
- package/example/node_modules/ethers/src.ts/providers/provider-ankr.ts +0 -159
- package/example/node_modules/ethers/src.ts/providers/provider-blockscout.ts +0 -167
- package/example/node_modules/ethers/src.ts/providers/provider-browser.ts +0 -334
- package/example/node_modules/ethers/src.ts/providers/provider-chainstack.ts +0 -113
- package/example/node_modules/ethers/src.ts/providers/provider-cloudflare.ts +0 -24
- package/example/node_modules/ethers/src.ts/providers/provider-etherscan.ts +0 -687
- package/example/node_modules/ethers/src.ts/providers/provider-fallback.ts +0 -801
- package/example/node_modules/ethers/src.ts/providers/provider-infura.ts +0 -220
- package/example/node_modules/ethers/src.ts/providers/provider-ipcsocket-browser.ts +0 -3
- package/example/node_modules/ethers/src.ts/providers/provider-ipcsocket.ts +0 -81
- package/example/node_modules/ethers/src.ts/providers/provider-jsonrpc.ts +0 -1335
- package/example/node_modules/ethers/src.ts/providers/provider-pocket.ts +0 -121
- package/example/node_modules/ethers/src.ts/providers/provider-quicknode.ts +0 -177
- package/example/node_modules/ethers/src.ts/providers/provider-socket.ts +0 -352
- package/example/node_modules/ethers/src.ts/providers/provider-websocket.ts +0 -103
- package/example/node_modules/ethers/src.ts/providers/provider.ts +0 -2146
- package/example/node_modules/ethers/src.ts/providers/signer-noncemanager.ts +0 -98
- package/example/node_modules/ethers/src.ts/providers/signer.ts +0 -166
- package/example/node_modules/ethers/src.ts/providers/subscriber-connection.ts +0 -74
- package/example/node_modules/ethers/src.ts/providers/subscriber-filterid.ts +0 -199
- package/example/node_modules/ethers/src.ts/providers/subscriber-polling.ts +0 -321
- package/example/node_modules/ethers/src.ts/providers/ws-browser.ts +0 -11
- package/example/node_modules/ethers/src.ts/providers/ws.ts +0 -3
- package/example/node_modules/ethers/src.ts/thirdparty.d.ts +0 -16
- package/example/node_modules/ethers/src.ts/transaction/accesslist.ts +0 -43
- package/example/node_modules/ethers/src.ts/transaction/address.ts +0 -28
- package/example/node_modules/ethers/src.ts/transaction/authorization.ts +0 -14
- package/example/node_modules/ethers/src.ts/transaction/index.ts +0 -51
- package/example/node_modules/ethers/src.ts/transaction/transaction.ts +0 -1556
- package/example/node_modules/ethers/src.ts/utils/base58.ts +0 -73
- package/example/node_modules/ethers/src.ts/utils/base64-browser.ts +0 -25
- package/example/node_modules/ethers/src.ts/utils/base64.ts +0 -56
- package/example/node_modules/ethers/src.ts/utils/data.ts +0 -200
- package/example/node_modules/ethers/src.ts/utils/errors.ts +0 -797
- package/example/node_modules/ethers/src.ts/utils/events.ts +0 -105
- package/example/node_modules/ethers/src.ts/utils/fetch.ts +0 -970
- package/example/node_modules/ethers/src.ts/utils/fixednumber.ts +0 -643
- package/example/node_modules/ethers/src.ts/utils/geturl-browser.ts +0 -81
- package/example/node_modules/ethers/src.ts/utils/geturl.ts +0 -141
- package/example/node_modules/ethers/src.ts/utils/index.ts +0 -95
- package/example/node_modules/ethers/src.ts/utils/maths.ts +0 -259
- package/example/node_modules/ethers/src.ts/utils/properties.ts +0 -60
- package/example/node_modules/ethers/src.ts/utils/rlp-decode.ts +0 -104
- package/example/node_modules/ethers/src.ts/utils/rlp-encode.ts +0 -64
- package/example/node_modules/ethers/src.ts/utils/rlp.ts +0 -20
- package/example/node_modules/ethers/src.ts/utils/test.txt +0 -0
- package/example/node_modules/ethers/src.ts/utils/units.ts +0 -91
- package/example/node_modules/ethers/src.ts/utils/utf8.ts +0 -325
- package/example/node_modules/ethers/src.ts/utils/uuid.ts +0 -36
- package/example/node_modules/ethers/src.ts/wallet/base-wallet.ts +0 -160
- package/example/node_modules/ethers/src.ts/wallet/hdwallet.ts +0 -586
- package/example/node_modules/ethers/src.ts/wallet/index.ts +0 -47
- package/example/node_modules/ethers/src.ts/wallet/json-crowdsale.ts +0 -74
- package/example/node_modules/ethers/src.ts/wallet/json-keystore.ts +0 -389
- package/example/node_modules/ethers/src.ts/wallet/mnemonic.ts +0 -203
- package/example/node_modules/ethers/src.ts/wallet/utils.ts +0 -147
- package/example/node_modules/ethers/src.ts/wallet/wallet.ts +0 -163
- package/example/node_modules/ethers/src.ts/wordlists/bit-reader.ts +0 -35
- package/example/node_modules/ethers/src.ts/wordlists/decode-owl.ts +0 -58
- package/example/node_modules/ethers/src.ts/wordlists/decode-owla.ts +0 -33
- package/example/node_modules/ethers/src.ts/wordlists/generation/encode-latin.ts +0 -370
- package/example/node_modules/ethers/src.ts/wordlists/index.ts +0 -26
- package/example/node_modules/ethers/src.ts/wordlists/lang-cz.ts +0 -33
- package/example/node_modules/ethers/src.ts/wordlists/lang-en.ts +0 -33
- package/example/node_modules/ethers/src.ts/wordlists/lang-es.ts +0 -35
- package/example/node_modules/ethers/src.ts/wordlists/lang-fr.ts +0 -34
- package/example/node_modules/ethers/src.ts/wordlists/lang-it.ts +0 -33
- package/example/node_modules/ethers/src.ts/wordlists/lang-ja.ts +0 -181
- package/example/node_modules/ethers/src.ts/wordlists/lang-ko.ts +0 -104
- package/example/node_modules/ethers/src.ts/wordlists/lang-pt.ts +0 -34
- package/example/node_modules/ethers/src.ts/wordlists/lang-zh.ts +0 -112
- package/example/node_modules/ethers/src.ts/wordlists/wordlist-owl.ts +0 -77
- package/example/node_modules/ethers/src.ts/wordlists/wordlist-owla.ts +0 -41
- package/example/node_modules/ethers/src.ts/wordlists/wordlist.ts +0 -59
- package/example/node_modules/ethers/src.ts/wordlists/wordlists-browser.ts +0 -8
- package/example/node_modules/ethers/src.ts/wordlists/wordlists-extra.ts +0 -9
- package/example/node_modules/ethers/src.ts/wordlists/wordlists.ts +0 -38
- package/example/node_modules/tslib/CopyrightNotice.txt +0 -15
- package/example/node_modules/tslib/LICENSE.txt +0 -12
- package/example/node_modules/tslib/README.md +0 -164
- package/example/node_modules/tslib/SECURITY.md +0 -41
- package/example/node_modules/tslib/modules/index.d.ts +0 -37
- package/example/node_modules/tslib/modules/index.js +0 -68
- package/example/node_modules/tslib/modules/package.json +0 -3
- package/example/node_modules/tslib/package.json +0 -47
- package/example/node_modules/tslib/tslib.d.ts +0 -453
- package/example/node_modules/tslib/tslib.es6.html +0 -1
- package/example/node_modules/tslib/tslib.es6.js +0 -379
- package/example/node_modules/tslib/tslib.es6.mjs +0 -378
- package/example/node_modules/tslib/tslib.html +0 -1
- package/example/node_modules/tslib/tslib.js +0 -429
- package/example/node_modules/undici-types/LICENSE +0 -21
- package/example/node_modules/undici-types/README.md +0 -6
- package/example/node_modules/undici-types/agent.d.ts +0 -31
- package/example/node_modules/undici-types/api.d.ts +0 -43
- package/example/node_modules/undici-types/balanced-pool.d.ts +0 -29
- package/example/node_modules/undici-types/cache.d.ts +0 -36
- package/example/node_modules/undici-types/client.d.ts +0 -108
- package/example/node_modules/undici-types/connector.d.ts +0 -34
- package/example/node_modules/undici-types/content-type.d.ts +0 -21
- package/example/node_modules/undici-types/cookies.d.ts +0 -28
- package/example/node_modules/undici-types/diagnostics-channel.d.ts +0 -66
- package/example/node_modules/undici-types/dispatcher.d.ts +0 -255
- package/example/node_modules/undici-types/env-http-proxy-agent.d.ts +0 -21
- package/example/node_modules/undici-types/errors.d.ts +0 -149
- package/example/node_modules/undici-types/eventsource.d.ts +0 -63
- package/example/node_modules/undici-types/fetch.d.ts +0 -209
- package/example/node_modules/undici-types/file.d.ts +0 -39
- package/example/node_modules/undici-types/filereader.d.ts +0 -54
- package/example/node_modules/undici-types/formdata.d.ts +0 -108
- package/example/node_modules/undici-types/global-dispatcher.d.ts +0 -9
- package/example/node_modules/undici-types/global-origin.d.ts +0 -7
- package/example/node_modules/undici-types/handlers.d.ts +0 -15
- package/example/node_modules/undici-types/header.d.ts +0 -4
- package/example/node_modules/undici-types/index.d.ts +0 -71
- package/example/node_modules/undici-types/interceptors.d.ts +0 -15
- package/example/node_modules/undici-types/mock-agent.d.ts +0 -50
- package/example/node_modules/undici-types/mock-client.d.ts +0 -25
- package/example/node_modules/undici-types/mock-errors.d.ts +0 -12
- package/example/node_modules/undici-types/mock-interceptor.d.ts +0 -93
- package/example/node_modules/undici-types/mock-pool.d.ts +0 -25
- package/example/node_modules/undici-types/package.json +0 -55
- package/example/node_modules/undici-types/patch.d.ts +0 -71
- package/example/node_modules/undici-types/pool-stats.d.ts +0 -19
- package/example/node_modules/undici-types/pool.d.ts +0 -39
- package/example/node_modules/undici-types/proxy-agent.d.ts +0 -28
- package/example/node_modules/undici-types/readable.d.ts +0 -60
- package/example/node_modules/undici-types/retry-agent.d.ts +0 -8
- package/example/node_modules/undici-types/retry-handler.d.ts +0 -116
- package/example/node_modules/undici-types/util.d.ts +0 -18
- package/example/node_modules/undici-types/webidl.d.ts +0 -222
- package/example/node_modules/undici-types/websocket.d.ts +0 -152
- package/example/node_modules/ws/LICENSE +0 -20
- package/example/node_modules/ws/README.md +0 -548
- package/example/node_modules/ws/browser.js +0 -8
- package/example/node_modules/ws/index.js +0 -13
- package/example/node_modules/ws/lib/buffer-util.js +0 -131
- package/example/node_modules/ws/lib/constants.js +0 -12
- package/example/node_modules/ws/lib/event-target.js +0 -292
- package/example/node_modules/ws/lib/extension.js +0 -203
- package/example/node_modules/ws/lib/limiter.js +0 -55
- package/example/node_modules/ws/lib/permessage-deflate.js +0 -514
- package/example/node_modules/ws/lib/receiver.js +0 -704
- package/example/node_modules/ws/lib/sender.js +0 -497
- package/example/node_modules/ws/lib/stream.js +0 -159
- package/example/node_modules/ws/lib/subprotocol.js +0 -62
- package/example/node_modules/ws/lib/validation.js +0 -130
- package/example/node_modules/ws/lib/websocket-server.js +0 -540
- package/example/node_modules/ws/lib/websocket.js +0 -1338
- package/example/node_modules/ws/package.json +0 -69
- package/example/node_modules/ws/wrapper.mjs +0 -8
|
@@ -1,392 +0,0 @@
|
|
|
1
|
-
/*! noble-curves - MIT License (c) 2022 Paul Miller (paulmillr.com) */
|
|
2
|
-
import { shake256 } from '@noble/hashes/sha3';
|
|
3
|
-
import { concatBytes, randomBytes, utf8ToBytes, wrapConstructor } from '@noble/hashes/utils';
|
|
4
|
-
import { twistedEdwards } from './abstract/edwards.js';
|
|
5
|
-
import { mod, pow2, Field, isNegativeLE } from './abstract/modular.js';
|
|
6
|
-
import { montgomery } from './abstract/montgomery.js';
|
|
7
|
-
import { createHasher, expand_message_xof } from './abstract/hash-to-curve.js';
|
|
8
|
-
import { bytesToHex, bytesToNumberLE, ensureBytes, equalBytes, numberToBytesLE, } from './abstract/utils.js';
|
|
9
|
-
/**
|
|
10
|
-
* Edwards448 (not Ed448-Goldilocks) curve with following addons:
|
|
11
|
-
* - X448 ECDH
|
|
12
|
-
* - Decaf cofactor elimination
|
|
13
|
-
* - Elligator hash-to-group / point indistinguishability
|
|
14
|
-
* Conforms to RFC 8032 https://www.rfc-editor.org/rfc/rfc8032.html#section-5.2
|
|
15
|
-
*/
|
|
16
|
-
const shake256_114 = wrapConstructor(() => shake256.create({ dkLen: 114 }));
|
|
17
|
-
const shake256_64 = wrapConstructor(() => shake256.create({ dkLen: 64 }));
|
|
18
|
-
const ed448P = BigInt('726838724295606890549323807888004534353641360687318060281490199180612328166730772686396383698676545930088884461843637361053498018365439');
|
|
19
|
-
// prettier-ignore
|
|
20
|
-
const _1n = BigInt(1), _2n = BigInt(2), _3n = BigInt(3), _4n = BigInt(4), _11n = BigInt(11);
|
|
21
|
-
// prettier-ignore
|
|
22
|
-
const _22n = BigInt(22), _44n = BigInt(44), _88n = BigInt(88), _223n = BigInt(223);
|
|
23
|
-
// powPminus3div4 calculates z = x^k mod p, where k = (p-3)/4.
|
|
24
|
-
// Used for efficient square root calculation.
|
|
25
|
-
// ((P-3)/4).toString(2) would produce bits [223x 1, 0, 222x 1]
|
|
26
|
-
function ed448_pow_Pminus3div4(x) {
|
|
27
|
-
const P = ed448P;
|
|
28
|
-
const b2 = (x * x * x) % P;
|
|
29
|
-
const b3 = (b2 * b2 * x) % P;
|
|
30
|
-
const b6 = (pow2(b3, _3n, P) * b3) % P;
|
|
31
|
-
const b9 = (pow2(b6, _3n, P) * b3) % P;
|
|
32
|
-
const b11 = (pow2(b9, _2n, P) * b2) % P;
|
|
33
|
-
const b22 = (pow2(b11, _11n, P) * b11) % P;
|
|
34
|
-
const b44 = (pow2(b22, _22n, P) * b22) % P;
|
|
35
|
-
const b88 = (pow2(b44, _44n, P) * b44) % P;
|
|
36
|
-
const b176 = (pow2(b88, _88n, P) * b88) % P;
|
|
37
|
-
const b220 = (pow2(b176, _44n, P) * b44) % P;
|
|
38
|
-
const b222 = (pow2(b220, _2n, P) * b2) % P;
|
|
39
|
-
const b223 = (pow2(b222, _1n, P) * x) % P;
|
|
40
|
-
return (pow2(b223, _223n, P) * b222) % P;
|
|
41
|
-
}
|
|
42
|
-
function adjustScalarBytes(bytes) {
|
|
43
|
-
// Section 5: Likewise, for X448, set the two least significant bits of the first byte to 0, and the most
|
|
44
|
-
// significant bit of the last byte to 1.
|
|
45
|
-
bytes[0] &= 252; // 0b11111100
|
|
46
|
-
// and the most significant bit of the last byte to 1.
|
|
47
|
-
bytes[55] |= 128; // 0b10000000
|
|
48
|
-
// NOTE: is is NOOP for 56 bytes scalars (X25519/X448)
|
|
49
|
-
bytes[56] = 0; // Byte outside of group (456 buts vs 448 bits)
|
|
50
|
-
return bytes;
|
|
51
|
-
}
|
|
52
|
-
// Constant-time ratio of u to v. Allows to combine inversion and square root u/√v.
|
|
53
|
-
// Uses algo from RFC8032 5.1.3.
|
|
54
|
-
function uvRatio(u, v) {
|
|
55
|
-
const P = ed448P;
|
|
56
|
-
// https://www.rfc-editor.org/rfc/rfc8032#section-5.2.3
|
|
57
|
-
// To compute the square root of (u/v), the first step is to compute the
|
|
58
|
-
// candidate root x = (u/v)^((p+1)/4). This can be done using the
|
|
59
|
-
// following trick, to use a single modular powering for both the
|
|
60
|
-
// inversion of v and the square root:
|
|
61
|
-
// x = (u/v)^((p+1)/4) = u³v(u⁵v³)^((p-3)/4) (mod p)
|
|
62
|
-
const u2v = mod(u * u * v, P); // u²v
|
|
63
|
-
const u3v = mod(u2v * u, P); // u³v
|
|
64
|
-
const u5v3 = mod(u3v * u2v * v, P); // u⁵v³
|
|
65
|
-
const root = ed448_pow_Pminus3div4(u5v3);
|
|
66
|
-
const x = mod(u3v * root, P);
|
|
67
|
-
// Verify that root is exists
|
|
68
|
-
const x2 = mod(x * x, P); // x²
|
|
69
|
-
// If vx² = u, the recovered x-coordinate is x. Otherwise, no
|
|
70
|
-
// square root exists, and the decoding fails.
|
|
71
|
-
return { isValid: mod(x2 * v, P) === u, value: x };
|
|
72
|
-
}
|
|
73
|
-
const Fp = Field(ed448P, 456, true);
|
|
74
|
-
const ED448_DEF = {
|
|
75
|
-
// Param: a
|
|
76
|
-
a: BigInt(1),
|
|
77
|
-
// -39081. Negative number is P - number
|
|
78
|
-
d: BigInt('726838724295606890549323807888004534353641360687318060281490199180612328166730772686396383698676545930088884461843637361053498018326358'),
|
|
79
|
-
// Finite field 𝔽p over which we'll do calculations; 2n**448n - 2n**224n - 1n
|
|
80
|
-
Fp,
|
|
81
|
-
// Subgroup order: how many points curve has;
|
|
82
|
-
// 2n**446n - 13818066809895115352007386748515426880336692474882178609894547503885n
|
|
83
|
-
n: BigInt('181709681073901722637330951972001133588410340171829515070372549795146003961539585716195755291692375963310293709091662304773755859649779'),
|
|
84
|
-
nBitLength: 456,
|
|
85
|
-
// Cofactor
|
|
86
|
-
h: BigInt(4),
|
|
87
|
-
// Base point (x, y) aka generator point
|
|
88
|
-
Gx: BigInt('224580040295924300187604334099896036246789641632564134246125461686950415467406032909029192869357953282578032075146446173674602635247710'),
|
|
89
|
-
Gy: BigInt('298819210078481492676017930443930673437544040154080242095928241372331506189835876003536878655418784733982303233503462500531545062832660'),
|
|
90
|
-
// SHAKE256(dom4(phflag,context)||x, 114)
|
|
91
|
-
hash: shake256_114,
|
|
92
|
-
randomBytes,
|
|
93
|
-
adjustScalarBytes,
|
|
94
|
-
// dom4
|
|
95
|
-
domain: (data, ctx, phflag) => {
|
|
96
|
-
if (ctx.length > 255)
|
|
97
|
-
throw new Error(`Context is too big: ${ctx.length}`);
|
|
98
|
-
return concatBytes(utf8ToBytes('SigEd448'), new Uint8Array([phflag ? 1 : 0, ctx.length]), ctx, data);
|
|
99
|
-
},
|
|
100
|
-
uvRatio,
|
|
101
|
-
};
|
|
102
|
-
export const ed448 = /* @__PURE__ */ twistedEdwards(ED448_DEF);
|
|
103
|
-
// NOTE: there is no ed448ctx, since ed448 supports ctx by default
|
|
104
|
-
export const ed448ph = /* @__PURE__ */ twistedEdwards({ ...ED448_DEF, prehash: shake256_64 });
|
|
105
|
-
export const x448 = /* @__PURE__ */ (() => montgomery({
|
|
106
|
-
a: BigInt(156326),
|
|
107
|
-
montgomeryBits: 448,
|
|
108
|
-
nByteLength: 57,
|
|
109
|
-
P: ed448P,
|
|
110
|
-
Gu: BigInt(5),
|
|
111
|
-
powPminus2: (x) => {
|
|
112
|
-
const P = ed448P;
|
|
113
|
-
const Pminus3div4 = ed448_pow_Pminus3div4(x);
|
|
114
|
-
const Pminus3 = pow2(Pminus3div4, BigInt(2), P);
|
|
115
|
-
return mod(Pminus3 * x, P); // Pminus3 * x = Pminus2
|
|
116
|
-
},
|
|
117
|
-
adjustScalarBytes,
|
|
118
|
-
randomBytes,
|
|
119
|
-
}))();
|
|
120
|
-
/**
|
|
121
|
-
* Converts edwards448 public key to x448 public key. Uses formula:
|
|
122
|
-
* * `(u, v) = ((y-1)/(y+1), sqrt(156324)*u/x)`
|
|
123
|
-
* * `(x, y) = (sqrt(156324)*u/v, (1+u)/(1-u))`
|
|
124
|
-
* @example
|
|
125
|
-
* const aPub = ed448.getPublicKey(utils.randomPrivateKey());
|
|
126
|
-
* x448.getSharedSecret(edwardsToMontgomery(aPub), edwardsToMontgomery(someonesPub))
|
|
127
|
-
*/
|
|
128
|
-
export function edwardsToMontgomeryPub(edwardsPub) {
|
|
129
|
-
const { y } = ed448.ExtendedPoint.fromHex(edwardsPub);
|
|
130
|
-
const _1n = BigInt(1);
|
|
131
|
-
return Fp.toBytes(Fp.create((y - _1n) * Fp.inv(y + _1n)));
|
|
132
|
-
}
|
|
133
|
-
export const edwardsToMontgomery = edwardsToMontgomeryPub; // deprecated
|
|
134
|
-
// Hash To Curve Elligator2 Map
|
|
135
|
-
const ELL2_C1 = (Fp.ORDER - BigInt(3)) / BigInt(4); // 1. c1 = (q - 3) / 4 # Integer arithmetic
|
|
136
|
-
const ELL2_J = BigInt(156326);
|
|
137
|
-
function map_to_curve_elligator2_curve448(u) {
|
|
138
|
-
let tv1 = Fp.sqr(u); // 1. tv1 = u^2
|
|
139
|
-
let e1 = Fp.eql(tv1, Fp.ONE); // 2. e1 = tv1 == 1
|
|
140
|
-
tv1 = Fp.cmov(tv1, Fp.ZERO, e1); // 3. tv1 = CMOV(tv1, 0, e1) # If Z * u^2 == -1, set tv1 = 0
|
|
141
|
-
let xd = Fp.sub(Fp.ONE, tv1); // 4. xd = 1 - tv1
|
|
142
|
-
let x1n = Fp.neg(ELL2_J); // 5. x1n = -J
|
|
143
|
-
let tv2 = Fp.sqr(xd); // 6. tv2 = xd^2
|
|
144
|
-
let gxd = Fp.mul(tv2, xd); // 7. gxd = tv2 * xd # gxd = xd^3
|
|
145
|
-
let gx1 = Fp.mul(tv1, Fp.neg(ELL2_J)); // 8. gx1 = -J * tv1 # x1n + J * xd
|
|
146
|
-
gx1 = Fp.mul(gx1, x1n); // 9. gx1 = gx1 * x1n # x1n^2 + J * x1n * xd
|
|
147
|
-
gx1 = Fp.add(gx1, tv2); // 10. gx1 = gx1 + tv2 # x1n^2 + J * x1n * xd + xd^2
|
|
148
|
-
gx1 = Fp.mul(gx1, x1n); // 11. gx1 = gx1 * x1n # x1n^3 + J * x1n^2 * xd + x1n * xd^2
|
|
149
|
-
let tv3 = Fp.sqr(gxd); // 12. tv3 = gxd^2
|
|
150
|
-
tv2 = Fp.mul(gx1, gxd); // 13. tv2 = gx1 * gxd # gx1 * gxd
|
|
151
|
-
tv3 = Fp.mul(tv3, tv2); // 14. tv3 = tv3 * tv2 # gx1 * gxd^3
|
|
152
|
-
let y1 = Fp.pow(tv3, ELL2_C1); // 15. y1 = tv3^c1 # (gx1 * gxd^3)^((p - 3) / 4)
|
|
153
|
-
y1 = Fp.mul(y1, tv2); // 16. y1 = y1 * tv2 # gx1 * gxd * (gx1 * gxd^3)^((p - 3) / 4)
|
|
154
|
-
let x2n = Fp.mul(x1n, Fp.neg(tv1)); // 17. x2n = -tv1 * x1n # x2 = x2n / xd = -1 * u^2 * x1n / xd
|
|
155
|
-
let y2 = Fp.mul(y1, u); // 18. y2 = y1 * u
|
|
156
|
-
y2 = Fp.cmov(y2, Fp.ZERO, e1); // 19. y2 = CMOV(y2, 0, e1)
|
|
157
|
-
tv2 = Fp.sqr(y1); // 20. tv2 = y1^2
|
|
158
|
-
tv2 = Fp.mul(tv2, gxd); // 21. tv2 = tv2 * gxd
|
|
159
|
-
let e2 = Fp.eql(tv2, gx1); // 22. e2 = tv2 == gx1
|
|
160
|
-
let xn = Fp.cmov(x2n, x1n, e2); // 23. xn = CMOV(x2n, x1n, e2) # If e2, x = x1, else x = x2
|
|
161
|
-
let y = Fp.cmov(y2, y1, e2); // 24. y = CMOV(y2, y1, e2) # If e2, y = y1, else y = y2
|
|
162
|
-
let e3 = Fp.isOdd(y); // 25. e3 = sgn0(y) == 1 # Fix sign of y
|
|
163
|
-
y = Fp.cmov(y, Fp.neg(y), e2 !== e3); // 26. y = CMOV(y, -y, e2 XOR e3)
|
|
164
|
-
return { xn, xd, yn: y, yd: Fp.ONE }; // 27. return (xn, xd, y, 1)
|
|
165
|
-
}
|
|
166
|
-
function map_to_curve_elligator2_edwards448(u) {
|
|
167
|
-
let { xn, xd, yn, yd } = map_to_curve_elligator2_curve448(u); // 1. (xn, xd, yn, yd) = map_to_curve_elligator2_curve448(u)
|
|
168
|
-
let xn2 = Fp.sqr(xn); // 2. xn2 = xn^2
|
|
169
|
-
let xd2 = Fp.sqr(xd); // 3. xd2 = xd^2
|
|
170
|
-
let xd4 = Fp.sqr(xd2); // 4. xd4 = xd2^2
|
|
171
|
-
let yn2 = Fp.sqr(yn); // 5. yn2 = yn^2
|
|
172
|
-
let yd2 = Fp.sqr(yd); // 6. yd2 = yd^2
|
|
173
|
-
let xEn = Fp.sub(xn2, xd2); // 7. xEn = xn2 - xd2
|
|
174
|
-
let tv2 = Fp.sub(xEn, xd2); // 8. tv2 = xEn - xd2
|
|
175
|
-
xEn = Fp.mul(xEn, xd2); // 9. xEn = xEn * xd2
|
|
176
|
-
xEn = Fp.mul(xEn, yd); // 10. xEn = xEn * yd
|
|
177
|
-
xEn = Fp.mul(xEn, yn); // 11. xEn = xEn * yn
|
|
178
|
-
xEn = Fp.mul(xEn, _4n); // 12. xEn = xEn * 4
|
|
179
|
-
tv2 = Fp.mul(tv2, xn2); // 13. tv2 = tv2 * xn2
|
|
180
|
-
tv2 = Fp.mul(tv2, yd2); // 14. tv2 = tv2 * yd2
|
|
181
|
-
let tv3 = Fp.mul(yn2, _4n); // 15. tv3 = 4 * yn2
|
|
182
|
-
let tv1 = Fp.add(tv3, yd2); // 16. tv1 = tv3 + yd2
|
|
183
|
-
tv1 = Fp.mul(tv1, xd4); // 17. tv1 = tv1 * xd4
|
|
184
|
-
let xEd = Fp.add(tv1, tv2); // 18. xEd = tv1 + tv2
|
|
185
|
-
tv2 = Fp.mul(tv2, xn); // 19. tv2 = tv2 * xn
|
|
186
|
-
let tv4 = Fp.mul(xn, xd4); // 20. tv4 = xn * xd4
|
|
187
|
-
let yEn = Fp.sub(tv3, yd2); // 21. yEn = tv3 - yd2
|
|
188
|
-
yEn = Fp.mul(yEn, tv4); // 22. yEn = yEn * tv4
|
|
189
|
-
yEn = Fp.sub(yEn, tv2); // 23. yEn = yEn - tv2
|
|
190
|
-
tv1 = Fp.add(xn2, xd2); // 24. tv1 = xn2 + xd2
|
|
191
|
-
tv1 = Fp.mul(tv1, xd2); // 25. tv1 = tv1 * xd2
|
|
192
|
-
tv1 = Fp.mul(tv1, xd); // 26. tv1 = tv1 * xd
|
|
193
|
-
tv1 = Fp.mul(tv1, yn2); // 27. tv1 = tv1 * yn2
|
|
194
|
-
tv1 = Fp.mul(tv1, BigInt(-2)); // 28. tv1 = -2 * tv1
|
|
195
|
-
let yEd = Fp.add(tv2, tv1); // 29. yEd = tv2 + tv1
|
|
196
|
-
tv4 = Fp.mul(tv4, yd2); // 30. tv4 = tv4 * yd2
|
|
197
|
-
yEd = Fp.add(yEd, tv4); // 31. yEd = yEd + tv4
|
|
198
|
-
tv1 = Fp.mul(xEd, yEd); // 32. tv1 = xEd * yEd
|
|
199
|
-
let e = Fp.eql(tv1, Fp.ZERO); // 33. e = tv1 == 0
|
|
200
|
-
xEn = Fp.cmov(xEn, Fp.ZERO, e); // 34. xEn = CMOV(xEn, 0, e)
|
|
201
|
-
xEd = Fp.cmov(xEd, Fp.ONE, e); // 35. xEd = CMOV(xEd, 1, e)
|
|
202
|
-
yEn = Fp.cmov(yEn, Fp.ONE, e); // 36. yEn = CMOV(yEn, 1, e)
|
|
203
|
-
yEd = Fp.cmov(yEd, Fp.ONE, e); // 37. yEd = CMOV(yEd, 1, e)
|
|
204
|
-
const inv = Fp.invertBatch([xEd, yEd]); // batch division
|
|
205
|
-
return { x: Fp.mul(xEn, inv[0]), y: Fp.mul(yEn, inv[1]) }; // 38. return (xEn, xEd, yEn, yEd)
|
|
206
|
-
}
|
|
207
|
-
const htf = /* @__PURE__ */ (() => createHasher(ed448.ExtendedPoint, (scalars) => map_to_curve_elligator2_edwards448(scalars[0]), {
|
|
208
|
-
DST: 'edwards448_XOF:SHAKE256_ELL2_RO_',
|
|
209
|
-
encodeDST: 'edwards448_XOF:SHAKE256_ELL2_NU_',
|
|
210
|
-
p: Fp.ORDER,
|
|
211
|
-
m: 1,
|
|
212
|
-
k: 224,
|
|
213
|
-
expand: 'xof',
|
|
214
|
-
hash: shake256,
|
|
215
|
-
}))();
|
|
216
|
-
export const hashToCurve = /* @__PURE__ */ (() => htf.hashToCurve)();
|
|
217
|
-
export const encodeToCurve = /* @__PURE__ */ (() => htf.encodeToCurve)();
|
|
218
|
-
function assertDcfPoint(other) {
|
|
219
|
-
if (!(other instanceof DcfPoint))
|
|
220
|
-
throw new Error('DecafPoint expected');
|
|
221
|
-
}
|
|
222
|
-
// 1-d
|
|
223
|
-
const ONE_MINUS_D = BigInt('39082');
|
|
224
|
-
// 1-2d
|
|
225
|
-
const ONE_MINUS_TWO_D = BigInt('78163');
|
|
226
|
-
// √(-d)
|
|
227
|
-
const SQRT_MINUS_D = BigInt('98944233647732219769177004876929019128417576295529901074099889598043702116001257856802131563896515373927712232092845883226922417596214');
|
|
228
|
-
// 1 / √(-d)
|
|
229
|
-
const INVSQRT_MINUS_D = BigInt('315019913931389607337177038330951043522456072897266928557328499619017160722351061360252776265186336876723201881398623946864393857820716');
|
|
230
|
-
// Calculates 1/√(number)
|
|
231
|
-
const invertSqrt = (number) => uvRatio(_1n, number);
|
|
232
|
-
const MAX_448B = BigInt('0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff');
|
|
233
|
-
const bytes448ToNumberLE = (bytes) => ed448.CURVE.Fp.create(bytesToNumberLE(bytes) & MAX_448B);
|
|
234
|
-
// Computes Elligator map for Decaf
|
|
235
|
-
// https://datatracker.ietf.org/doc/html/draft-irtf-cfrg-ristretto255-decaf448-07#name-element-derivation-2
|
|
236
|
-
function calcElligatorDecafMap(r0) {
|
|
237
|
-
const { d } = ed448.CURVE;
|
|
238
|
-
const P = ed448.CURVE.Fp.ORDER;
|
|
239
|
-
const mod = ed448.CURVE.Fp.create;
|
|
240
|
-
const r = mod(-(r0 * r0)); // 1
|
|
241
|
-
const u0 = mod(d * (r - _1n)); // 2
|
|
242
|
-
const u1 = mod((u0 + _1n) * (u0 - r)); // 3
|
|
243
|
-
const { isValid: was_square, value: v } = uvRatio(ONE_MINUS_TWO_D, mod((r + _1n) * u1)); // 4
|
|
244
|
-
let v_prime = v; // 5
|
|
245
|
-
if (!was_square)
|
|
246
|
-
v_prime = mod(r0 * v);
|
|
247
|
-
let sgn = _1n; // 6
|
|
248
|
-
if (!was_square)
|
|
249
|
-
sgn = mod(-_1n);
|
|
250
|
-
const s = mod(v_prime * (r + _1n)); // 7
|
|
251
|
-
let s_abs = s;
|
|
252
|
-
if (isNegativeLE(s, P))
|
|
253
|
-
s_abs = mod(-s);
|
|
254
|
-
const s2 = s * s;
|
|
255
|
-
const W0 = mod(s_abs * _2n); // 8
|
|
256
|
-
const W1 = mod(s2 + _1n); // 9
|
|
257
|
-
const W2 = mod(s2 - _1n); // 10
|
|
258
|
-
const W3 = mod(v_prime * s * (r - _1n) * ONE_MINUS_TWO_D + sgn); // 11
|
|
259
|
-
return new ed448.ExtendedPoint(mod(W0 * W3), mod(W2 * W1), mod(W1 * W3), mod(W0 * W2));
|
|
260
|
-
}
|
|
261
|
-
/**
|
|
262
|
-
* Each ed448/ExtendedPoint has 4 different equivalent points. This can be
|
|
263
|
-
* a source of bugs for protocols like ring signatures. Decaf was created to solve this.
|
|
264
|
-
* Decaf point operates in X:Y:Z:T extended coordinates like ExtendedPoint,
|
|
265
|
-
* but it should work in its own namespace: do not combine those two.
|
|
266
|
-
* https://datatracker.ietf.org/doc/html/draft-irtf-cfrg-ristretto255-decaf448
|
|
267
|
-
*/
|
|
268
|
-
class DcfPoint {
|
|
269
|
-
// Private property to discourage combining ExtendedPoint + DecafPoint
|
|
270
|
-
// Always use Decaf encoding/decoding instead.
|
|
271
|
-
constructor(ep) {
|
|
272
|
-
this.ep = ep;
|
|
273
|
-
}
|
|
274
|
-
static fromAffine(ap) {
|
|
275
|
-
return new DcfPoint(ed448.ExtendedPoint.fromAffine(ap));
|
|
276
|
-
}
|
|
277
|
-
/**
|
|
278
|
-
* Takes uniform output of 112-byte hash function like shake256 and converts it to `DecafPoint`.
|
|
279
|
-
* The hash-to-group operation applies Elligator twice and adds the results.
|
|
280
|
-
* **Note:** this is one-way map, there is no conversion from point to hash.
|
|
281
|
-
* https://datatracker.ietf.org/doc/html/draft-irtf-cfrg-ristretto255-decaf448-07#name-element-derivation-2
|
|
282
|
-
* @param hex 112-byte output of a hash function
|
|
283
|
-
*/
|
|
284
|
-
static hashToCurve(hex) {
|
|
285
|
-
hex = ensureBytes('decafHash', hex, 112);
|
|
286
|
-
const r1 = bytes448ToNumberLE(hex.slice(0, 56));
|
|
287
|
-
const R1 = calcElligatorDecafMap(r1);
|
|
288
|
-
const r2 = bytes448ToNumberLE(hex.slice(56, 112));
|
|
289
|
-
const R2 = calcElligatorDecafMap(r2);
|
|
290
|
-
return new DcfPoint(R1.add(R2));
|
|
291
|
-
}
|
|
292
|
-
/**
|
|
293
|
-
* Converts decaf-encoded string to decaf point.
|
|
294
|
-
* https://datatracker.ietf.org/doc/html/draft-irtf-cfrg-ristretto255-decaf448-07#name-decode-2
|
|
295
|
-
* @param hex Decaf-encoded 56 bytes. Not every 56-byte string is valid decaf encoding
|
|
296
|
-
*/
|
|
297
|
-
static fromHex(hex) {
|
|
298
|
-
hex = ensureBytes('decafHex', hex, 56);
|
|
299
|
-
const { d } = ed448.CURVE;
|
|
300
|
-
const P = ed448.CURVE.Fp.ORDER;
|
|
301
|
-
const mod = ed448.CURVE.Fp.create;
|
|
302
|
-
const emsg = 'DecafPoint.fromHex: the hex is not valid encoding of DecafPoint';
|
|
303
|
-
const s = bytes448ToNumberLE(hex);
|
|
304
|
-
// 1. Check that s_bytes is the canonical encoding of a field element, or else abort.
|
|
305
|
-
// 2. Check that s is non-negative, or else abort
|
|
306
|
-
if (!equalBytes(numberToBytesLE(s, 56), hex) || isNegativeLE(s, P))
|
|
307
|
-
throw new Error(emsg);
|
|
308
|
-
const s2 = mod(s * s); // 1
|
|
309
|
-
const u1 = mod(_1n + s2); // 2
|
|
310
|
-
const u1sq = mod(u1 * u1);
|
|
311
|
-
const u2 = mod(u1sq - _4n * d * s2); // 3
|
|
312
|
-
const { isValid, value: invsqrt } = invertSqrt(mod(u2 * u1sq)); // 4
|
|
313
|
-
let u3 = mod((s + s) * invsqrt * u1 * SQRT_MINUS_D); // 5
|
|
314
|
-
if (isNegativeLE(u3, P))
|
|
315
|
-
u3 = mod(-u3);
|
|
316
|
-
const x = mod(u3 * invsqrt * u2 * INVSQRT_MINUS_D); // 6
|
|
317
|
-
const y = mod((_1n - s2) * invsqrt * u1); // 7
|
|
318
|
-
const t = mod(x * y); // 8
|
|
319
|
-
if (!isValid)
|
|
320
|
-
throw new Error(emsg);
|
|
321
|
-
return new DcfPoint(new ed448.ExtendedPoint(x, y, _1n, t));
|
|
322
|
-
}
|
|
323
|
-
/**
|
|
324
|
-
* Encodes decaf point to Uint8Array.
|
|
325
|
-
* https://datatracker.ietf.org/doc/html/draft-irtf-cfrg-ristretto255-decaf448-07#name-encode-2
|
|
326
|
-
*/
|
|
327
|
-
toRawBytes() {
|
|
328
|
-
let { ex: x, ey: _y, ez: z, et: t } = this.ep;
|
|
329
|
-
const P = ed448.CURVE.Fp.ORDER;
|
|
330
|
-
const mod = ed448.CURVE.Fp.create;
|
|
331
|
-
const u1 = mod(mod(x + t) * mod(x - t)); // 1
|
|
332
|
-
const x2 = mod(x * x);
|
|
333
|
-
const { value: invsqrt } = invertSqrt(mod(u1 * ONE_MINUS_D * x2)); // 2
|
|
334
|
-
let ratio = mod(invsqrt * u1 * SQRT_MINUS_D); // 3
|
|
335
|
-
if (isNegativeLE(ratio, P))
|
|
336
|
-
ratio = mod(-ratio);
|
|
337
|
-
const u2 = mod(INVSQRT_MINUS_D * ratio * z - t); // 4
|
|
338
|
-
let s = mod(ONE_MINUS_D * invsqrt * x * u2); // 5
|
|
339
|
-
if (isNegativeLE(s, P))
|
|
340
|
-
s = mod(-s);
|
|
341
|
-
return numberToBytesLE(s, 56);
|
|
342
|
-
}
|
|
343
|
-
toHex() {
|
|
344
|
-
return bytesToHex(this.toRawBytes());
|
|
345
|
-
}
|
|
346
|
-
toString() {
|
|
347
|
-
return this.toHex();
|
|
348
|
-
}
|
|
349
|
-
// Compare one point to another.
|
|
350
|
-
// https://datatracker.ietf.org/doc/html/draft-irtf-cfrg-ristretto255-decaf448-07#name-equals-2
|
|
351
|
-
equals(other) {
|
|
352
|
-
assertDcfPoint(other);
|
|
353
|
-
const { ex: X1, ey: Y1 } = this.ep;
|
|
354
|
-
const { ex: X2, ey: Y2 } = other.ep;
|
|
355
|
-
const mod = ed448.CURVE.Fp.create;
|
|
356
|
-
// (x1 * y2 == y1 * x2)
|
|
357
|
-
return mod(X1 * Y2) === mod(Y1 * X2);
|
|
358
|
-
}
|
|
359
|
-
add(other) {
|
|
360
|
-
assertDcfPoint(other);
|
|
361
|
-
return new DcfPoint(this.ep.add(other.ep));
|
|
362
|
-
}
|
|
363
|
-
subtract(other) {
|
|
364
|
-
assertDcfPoint(other);
|
|
365
|
-
return new DcfPoint(this.ep.subtract(other.ep));
|
|
366
|
-
}
|
|
367
|
-
multiply(scalar) {
|
|
368
|
-
return new DcfPoint(this.ep.multiply(scalar));
|
|
369
|
-
}
|
|
370
|
-
multiplyUnsafe(scalar) {
|
|
371
|
-
return new DcfPoint(this.ep.multiplyUnsafe(scalar));
|
|
372
|
-
}
|
|
373
|
-
}
|
|
374
|
-
export const DecafPoint = /* @__PURE__ */ (() => {
|
|
375
|
-
// decaf448 base point is ed448 base x 2
|
|
376
|
-
// https://github.com/dalek-cryptography/curve25519-dalek/blob/59837c6ecff02b77b9d5ff84dbc239d0cf33ef90/vendor/ristretto.sage#L699
|
|
377
|
-
if (!DcfPoint.BASE)
|
|
378
|
-
DcfPoint.BASE = new DcfPoint(ed448.ExtendedPoint.BASE).multiply(_2n);
|
|
379
|
-
if (!DcfPoint.ZERO)
|
|
380
|
-
DcfPoint.ZERO = new DcfPoint(ed448.ExtendedPoint.ZERO);
|
|
381
|
-
return DcfPoint;
|
|
382
|
-
})();
|
|
383
|
-
// Hashing to decaf448. https://www.rfc-editor.org/rfc/rfc9380#appendix-C
|
|
384
|
-
export const hashToDecaf448 = (msg, options) => {
|
|
385
|
-
const d = options.DST;
|
|
386
|
-
const DST = typeof d === 'string' ? utf8ToBytes(d) : d;
|
|
387
|
-
const uniform_bytes = expand_message_xof(msg, DST, 112, 224, shake256);
|
|
388
|
-
const P = DcfPoint.hashToCurve(uniform_bytes);
|
|
389
|
-
return P;
|
|
390
|
-
};
|
|
391
|
-
export const hash_to_decaf448 = hashToDecaf448; // legacy
|
|
392
|
-
//# sourceMappingURL=ed448.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ed448.js","sourceRoot":"","sources":["../src/ed448.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAAA,MAAM,IAAI,KAAK,CAAC,4CAA4C,CAAC,CAAC"}
|
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
/*! noble-curves - MIT License (c) 2022 Paul Miller (paulmillr.com) */
|
|
2
|
-
import { sha512 } from '@noble/hashes/sha512';
|
|
3
|
-
import { concatBytes, randomBytes, utf8ToBytes } from '@noble/hashes/utils';
|
|
4
|
-
import { twistedEdwards } from './abstract/edwards.js';
|
|
5
|
-
import { blake2s } from '@noble/hashes/blake2s';
|
|
6
|
-
import { Field } from './abstract/modular.js';
|
|
7
|
-
/**
|
|
8
|
-
* jubjub Twisted Edwards curve.
|
|
9
|
-
* https://neuromancer.sk/std/other/JubJub
|
|
10
|
-
* jubjub does not use EdDSA, so `hash`/sha512 params are passed because interface expects them.
|
|
11
|
-
*/
|
|
12
|
-
export const jubjub = /* @__PURE__ */ twistedEdwards({
|
|
13
|
-
// Params: a, d
|
|
14
|
-
a: BigInt('0x73eda753299d7d483339d80809a1d80553bda402fffe5bfeffffffff00000000'),
|
|
15
|
-
d: BigInt('0x2a9318e74bfa2b48f5fd9207e6bd7fd4292d7f6d37579d2601065fd6d6343eb1'),
|
|
16
|
-
// Finite field 𝔽p over which we'll do calculations
|
|
17
|
-
// Same value as bls12-381 Fr (not Fp)
|
|
18
|
-
Fp: Field(BigInt('0x73eda753299d7d483339d80809a1d80553bda402fffe5bfeffffffff00000001')),
|
|
19
|
-
// Subgroup order: how many points curve has
|
|
20
|
-
n: BigInt('0xe7db4ea6533afa906673b0101343b00a6682093ccc81082d0970e5ed6f72cb7'),
|
|
21
|
-
// Cofactor
|
|
22
|
-
h: BigInt(8),
|
|
23
|
-
// Base point (x, y) aka generator point
|
|
24
|
-
Gx: BigInt('0x11dafe5d23e1218086a365b99fbf3d3be72f6afd7d1f72623e6b071492d1122b'),
|
|
25
|
-
Gy: BigInt('0x1d523cf1ddab1a1793132e78c866c0c33e26ba5cc220fed7cc3f870e59d292aa'),
|
|
26
|
-
hash: sha512,
|
|
27
|
-
randomBytes,
|
|
28
|
-
});
|
|
29
|
-
const GH_FIRST_BLOCK = utf8ToBytes('096b36a5804bfacef1691e173c366a47ff5ba84a44f26ddd7e8d9f79d5b42df0');
|
|
30
|
-
// Returns point at JubJub curve which is prime order and not zero
|
|
31
|
-
export function groupHash(tag, personalization) {
|
|
32
|
-
const h = blake2s.create({ personalization, dkLen: 32 });
|
|
33
|
-
h.update(GH_FIRST_BLOCK);
|
|
34
|
-
h.update(tag);
|
|
35
|
-
// NOTE: returns ExtendedPoint, in case it will be multiplied later
|
|
36
|
-
let p = jubjub.ExtendedPoint.fromHex(h.digest());
|
|
37
|
-
// NOTE: cannot replace with isSmallOrder, returns Point*8
|
|
38
|
-
p = p.multiply(jubjub.CURVE.h);
|
|
39
|
-
if (p.equals(jubjub.ExtendedPoint.ZERO))
|
|
40
|
-
throw new Error('Point has small order');
|
|
41
|
-
return p;
|
|
42
|
-
}
|
|
43
|
-
export function findGroupHash(m, personalization) {
|
|
44
|
-
const tag = concatBytes(m, new Uint8Array([0]));
|
|
45
|
-
for (let i = 0; i < 256; i++) {
|
|
46
|
-
tag[tag.length - 1] = i;
|
|
47
|
-
try {
|
|
48
|
-
return groupHash(tag, personalization);
|
|
49
|
-
}
|
|
50
|
-
catch (e) { }
|
|
51
|
-
}
|
|
52
|
-
throw new Error('findGroupHash tag overflow');
|
|
53
|
-
}
|
|
54
|
-
//# sourceMappingURL=jubjub.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"jubjub.js","sourceRoot":"","sources":["../src/jubjub.ts"],"names":[],"mappings":"AAAA,sEAAsE;AACtE,OAAO,EAAE,MAAM,EAAE,MAAM,sBAAsB,CAAC;AAC9C,OAAO,EAAE,WAAW,EAAE,WAAW,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAC5E,OAAO,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAC;AACvD,OAAO,EAAE,OAAO,EAAE,MAAM,uBAAuB,CAAC;AAChD,OAAO,EAAE,KAAK,EAAE,MAAM,uBAAuB,CAAC;AAE9C;;;;GAIG;AAEH,MAAM,CAAC,MAAM,MAAM,GAAG,eAAe,CAAC,cAAc,CAAC;IACnD,eAAe;IACf,CAAC,EAAE,MAAM,CAAC,oEAAoE,CAAC;IAC/E,CAAC,EAAE,MAAM,CAAC,oEAAoE,CAAC;IAC/E,oDAAoD;IACpD,sCAAsC;IACtC,EAAE,EAAE,KAAK,CAAC,MAAM,CAAC,oEAAoE,CAAC,CAAC;IACvF,4CAA4C;IAC5C,CAAC,EAAE,MAAM,CAAC,mEAAmE,CAAC;IAC9E,WAAW;IACX,CAAC,EAAE,MAAM,CAAC,CAAC,CAAC;IACZ,wCAAwC;IACxC,EAAE,EAAE,MAAM,CAAC,oEAAoE,CAAC;IAChF,EAAE,EAAE,MAAM,CAAC,oEAAoE,CAAC;IAChF,IAAI,EAAE,MAAM;IACZ,WAAW;CACH,CAAC,CAAC;AAEZ,MAAM,cAAc,GAAG,WAAW,CAChC,kEAAkE,CACnE,CAAC;AAEF,kEAAkE;AAClE,MAAM,UAAU,SAAS,CAAC,GAAe,EAAE,eAA2B;IACpE,MAAM,CAAC,GAAG,OAAO,CAAC,MAAM,CAAC,EAAE,eAAe,EAAE,KAAK,EAAE,EAAE,EAAE,CAAC,CAAC;IACzD,CAAC,CAAC,MAAM,CAAC,cAAc,CAAC,CAAC;IACzB,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC;IACd,mEAAmE;IACnE,IAAI,CAAC,GAAG,MAAM,CAAC,aAAa,CAAC,OAAO,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC;IACjD,0DAA0D;IAC1D,CAAC,GAAG,CAAC,CAAC,QAAQ,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;IAC/B,IAAI,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,aAAa,CAAC,IAAI,CAAC;QAAE,MAAM,IAAI,KAAK,CAAC,uBAAuB,CAAC,CAAC;IAClF,OAAO,CAAC,CAAC;AACX,CAAC;AAED,MAAM,UAAU,aAAa,CAAC,CAAa,EAAE,eAA2B;IACtE,MAAM,GAAG,GAAG,WAAW,CAAC,CAAC,EAAE,IAAI,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;IAChD,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE;QAC5B,GAAG,CAAC,GAAG,CAAC,MAAM,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC;QACxB,IAAI;YACF,OAAO,SAAS,CAAC,GAAG,EAAE,eAAe,CAAC,CAAC;SACxC;QAAC,OAAO,CAAC,EAAE,GAAE;KACf;IACD,MAAM,IAAI,KAAK,CAAC,4BAA4B,CAAC,CAAC;AAChD,CAAC"}
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
/*! noble-curves - MIT License (c) 2022 Paul Miller (paulmillr.com) */
|
|
2
|
-
import { createCurve } from './_shortw_utils.js';
|
|
3
|
-
import { sha256 } from '@noble/hashes/sha256';
|
|
4
|
-
import { Field } from './abstract/modular.js';
|
|
5
|
-
import { mapToCurveSimpleSWU } from './abstract/weierstrass.js';
|
|
6
|
-
import { createHasher } from './abstract/hash-to-curve.js';
|
|
7
|
-
// NIST secp256r1 aka p256
|
|
8
|
-
// https://www.secg.org/sec2-v2.pdf, https://neuromancer.sk/std/nist/P-256
|
|
9
|
-
const Fp = Field(BigInt('0xffffffff00000001000000000000000000000000ffffffffffffffffffffffff'));
|
|
10
|
-
const CURVE_A = Fp.create(BigInt('-3'));
|
|
11
|
-
const CURVE_B = BigInt('0x5ac635d8aa3a93e7b3ebbd55769886bc651d06b0cc53b0f63bce3c3e27d2604b');
|
|
12
|
-
// prettier-ignore
|
|
13
|
-
export const p256 = createCurve({
|
|
14
|
-
a: CURVE_A,
|
|
15
|
-
b: CURVE_B,
|
|
16
|
-
Fp,
|
|
17
|
-
// Curve order, total count of valid points in the field
|
|
18
|
-
n: BigInt('0xffffffff00000000ffffffffffffffffbce6faada7179e84f3b9cac2fc632551'),
|
|
19
|
-
// Base (generator) point (x, y)
|
|
20
|
-
Gx: BigInt('0x6b17d1f2e12c4247f8bce6e563a440f277037d812deb33a0f4a13945d898c296'),
|
|
21
|
-
Gy: BigInt('0x4fe342e2fe1a7f9b8ee7eb4a7c0f9e162bce33576b315ececbb6406837bf51f5'),
|
|
22
|
-
h: BigInt(1),
|
|
23
|
-
lowS: false,
|
|
24
|
-
}, sha256);
|
|
25
|
-
export const secp256r1 = p256;
|
|
26
|
-
const mapSWU = /* @__PURE__ */ (() => mapToCurveSimpleSWU(Fp, {
|
|
27
|
-
A: CURVE_A,
|
|
28
|
-
B: CURVE_B,
|
|
29
|
-
Z: Fp.create(BigInt('-10')),
|
|
30
|
-
}))();
|
|
31
|
-
const htf = /* @__PURE__ */ (() => createHasher(secp256r1.ProjectivePoint, (scalars) => mapSWU(scalars[0]), {
|
|
32
|
-
DST: 'P256_XMD:SHA-256_SSWU_RO_',
|
|
33
|
-
encodeDST: 'P256_XMD:SHA-256_SSWU_NU_',
|
|
34
|
-
p: Fp.ORDER,
|
|
35
|
-
m: 1,
|
|
36
|
-
k: 128,
|
|
37
|
-
expand: 'xmd',
|
|
38
|
-
hash: sha256,
|
|
39
|
-
}))();
|
|
40
|
-
export const hashToCurve = /* @__PURE__ */ (() => htf.hashToCurve)();
|
|
41
|
-
export const encodeToCurve = /* @__PURE__ */ (() => htf.encodeToCurve)();
|
|
42
|
-
//# sourceMappingURL=p256.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"p256.js","sourceRoot":"","sources":["../src/p256.ts"],"names":[],"mappings":"AAAA,sEAAsE;AACtE,OAAO,EAAE,WAAW,EAAE,MAAM,oBAAoB,CAAC;AACjD,OAAO,EAAE,MAAM,EAAE,MAAM,sBAAsB,CAAC;AAC9C,OAAO,EAAE,KAAK,EAAE,MAAM,uBAAuB,CAAC;AAC9C,OAAO,EAAE,mBAAmB,EAAE,MAAM,2BAA2B,CAAC;AAChE,OAAO,EAAE,YAAY,EAAE,MAAM,6BAA6B,CAAC;AAE3D,0BAA0B;AAC1B,0EAA0E;AAE1E,MAAM,EAAE,GAAG,KAAK,CAAC,MAAM,CAAC,oEAAoE,CAAC,CAAC,CAAC;AAC/F,MAAM,OAAO,GAAG,EAAE,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC;AACxC,MAAM,OAAO,GAAG,MAAM,CAAC,oEAAoE,CAAC,CAAC;AAE7F,kBAAkB;AAClB,MAAM,CAAC,MAAM,IAAI,GAAG,WAAW,CAAC;IAC9B,CAAC,EAAE,OAAO;IACV,CAAC,EAAE,OAAO;IACV,EAAE;IACF,wDAAwD;IACxD,CAAC,EAAE,MAAM,CAAC,oEAAoE,CAAC;IAC/E,gCAAgC;IAChC,EAAE,EAAE,MAAM,CAAC,oEAAoE,CAAC;IAChF,EAAE,EAAE,MAAM,CAAC,oEAAoE,CAAC;IAChF,CAAC,EAAE,MAAM,CAAC,CAAC,CAAC;IACZ,IAAI,EAAE,KAAK;CACH,EAAE,MAAM,CAAC,CAAC;AACpB,MAAM,CAAC,MAAM,SAAS,GAAG,IAAI,CAAC;AAE9B,MAAM,MAAM,GAAG,eAAe,CAAC,CAAC,GAAG,EAAE,CACnC,mBAAmB,CAAC,EAAE,EAAE;IACtB,CAAC,EAAE,OAAO;IACV,CAAC,EAAE,OAAO;IACV,CAAC,EAAE,EAAE,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;CAC5B,CAAC,CAAC,EAAE,CAAC;AAER,MAAM,GAAG,GAAG,eAAe,CAAC,CAAC,GAAG,EAAE,CAChC,YAAY,CAAC,SAAS,CAAC,eAAe,EAAE,CAAC,OAAiB,EAAE,EAAE,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,EAAE;IACjF,GAAG,EAAE,2BAA2B;IAChC,SAAS,EAAE,2BAA2B;IACtC,CAAC,EAAE,EAAE,CAAC,KAAK;IACX,CAAC,EAAE,CAAC;IACJ,CAAC,EAAE,GAAG;IACN,MAAM,EAAE,KAAK;IACb,IAAI,EAAE,MAAM;CACb,CAAC,CAAC,EAAE,CAAC;AACR,MAAM,CAAC,MAAM,WAAW,GAAG,eAAe,CAAC,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,WAAW,CAAC,EAAE,CAAC;AACrE,MAAM,CAAC,MAAM,aAAa,GAAG,eAAe,CAAC,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,aAAa,CAAC,EAAE,CAAC"}
|
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
/*! noble-curves - MIT License (c) 2022 Paul Miller (paulmillr.com) */
|
|
2
|
-
import { createCurve } from './_shortw_utils.js';
|
|
3
|
-
import { sha384 } from '@noble/hashes/sha512';
|
|
4
|
-
import { Field } from './abstract/modular.js';
|
|
5
|
-
import { mapToCurveSimpleSWU } from './abstract/weierstrass.js';
|
|
6
|
-
import { createHasher } from './abstract/hash-to-curve.js';
|
|
7
|
-
// NIST secp384r1 aka p384
|
|
8
|
-
// https://www.secg.org/sec2-v2.pdf, https://neuromancer.sk/std/nist/P-384
|
|
9
|
-
// Field over which we'll do calculations.
|
|
10
|
-
// prettier-ignore
|
|
11
|
-
const P = BigInt('0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffeffffffff0000000000000000ffffffff');
|
|
12
|
-
const Fp = Field(P);
|
|
13
|
-
const CURVE_A = Fp.create(BigInt('-3'));
|
|
14
|
-
// prettier-ignore
|
|
15
|
-
const CURVE_B = BigInt('0xb3312fa7e23ee7e4988e056be3f82d19181d9c6efe8141120314088f5013875ac656398d8a2ed19d2a85c8edd3ec2aef');
|
|
16
|
-
// prettier-ignore
|
|
17
|
-
export const p384 = createCurve({
|
|
18
|
-
a: CURVE_A,
|
|
19
|
-
b: CURVE_B,
|
|
20
|
-
Fp,
|
|
21
|
-
// Curve order, total count of valid points in the field.
|
|
22
|
-
n: BigInt('0xffffffffffffffffffffffffffffffffffffffffffffffffc7634d81f4372ddf581a0db248b0a77aecec196accc52973'),
|
|
23
|
-
// Base (generator) point (x, y)
|
|
24
|
-
Gx: BigInt('0xaa87ca22be8b05378eb1c71ef320ad746e1d3b628ba79b9859f741e082542a385502f25dbf55296c3a545e3872760ab7'),
|
|
25
|
-
Gy: BigInt('0x3617de4a96262c6f5d9e98bf9292dc29f8f41dbd289a147ce9da3113b5f0b8c00a60b1ce1d7e819d7a431d7c90ea0e5f'),
|
|
26
|
-
h: BigInt(1),
|
|
27
|
-
lowS: false,
|
|
28
|
-
}, sha384);
|
|
29
|
-
export const secp384r1 = p384;
|
|
30
|
-
const mapSWU = /* @__PURE__ */ (() => mapToCurveSimpleSWU(Fp, {
|
|
31
|
-
A: CURVE_A,
|
|
32
|
-
B: CURVE_B,
|
|
33
|
-
Z: Fp.create(BigInt('-12')),
|
|
34
|
-
}))();
|
|
35
|
-
const htf = /* @__PURE__ */ (() => createHasher(secp384r1.ProjectivePoint, (scalars) => mapSWU(scalars[0]), {
|
|
36
|
-
DST: 'P384_XMD:SHA-384_SSWU_RO_',
|
|
37
|
-
encodeDST: 'P384_XMD:SHA-384_SSWU_NU_',
|
|
38
|
-
p: Fp.ORDER,
|
|
39
|
-
m: 1,
|
|
40
|
-
k: 192,
|
|
41
|
-
expand: 'xmd',
|
|
42
|
-
hash: sha384,
|
|
43
|
-
}))();
|
|
44
|
-
export const hashToCurve = /* @__PURE__ */ (() => htf.hashToCurve)();
|
|
45
|
-
export const encodeToCurve = /* @__PURE__ */ (() => htf.encodeToCurve)();
|
|
46
|
-
//# sourceMappingURL=p384.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"p384.js","sourceRoot":"","sources":["../src/p384.ts"],"names":[],"mappings":"AAAA,sEAAsE;AACtE,OAAO,EAAE,WAAW,EAAE,MAAM,oBAAoB,CAAC;AACjD,OAAO,EAAE,MAAM,EAAE,MAAM,sBAAsB,CAAC;AAC9C,OAAO,EAAE,KAAK,EAAE,MAAM,uBAAuB,CAAC;AAC9C,OAAO,EAAE,mBAAmB,EAAE,MAAM,2BAA2B,CAAC;AAChE,OAAO,EAAE,YAAY,EAAE,MAAM,6BAA6B,CAAC;AAE3D,0BAA0B;AAC1B,0EAA0E;AAE1E,0CAA0C;AAC1C,kBAAkB;AAClB,MAAM,CAAC,GAAG,MAAM,CAAC,oGAAoG,CAAC,CAAC;AACvH,MAAM,EAAE,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;AACpB,MAAM,OAAO,GAAG,EAAE,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC;AACxC,kBAAkB;AAClB,MAAM,OAAO,GAAG,MAAM,CAAC,oGAAoG,CAAC,CAAC;AAE7H,kBAAkB;AAClB,MAAM,CAAC,MAAM,IAAI,GAAG,WAAW,CAAC;IAC9B,CAAC,EAAE,OAAO;IACV,CAAC,EAAE,OAAO;IACV,EAAE;IACF,yDAAyD;IACzD,CAAC,EAAE,MAAM,CAAC,oGAAoG,CAAC;IAC/G,gCAAgC;IAChC,EAAE,EAAE,MAAM,CAAC,oGAAoG,CAAC;IAChH,EAAE,EAAE,MAAM,CAAC,oGAAoG,CAAC;IAChH,CAAC,EAAE,MAAM,CAAC,CAAC,CAAC;IACZ,IAAI,EAAE,KAAK;CACH,EAAE,MAAM,CAAC,CAAC;AACpB,MAAM,CAAC,MAAM,SAAS,GAAG,IAAI,CAAC;AAE9B,MAAM,MAAM,GAAG,eAAe,CAAC,CAAC,GAAG,EAAE,CACnC,mBAAmB,CAAC,EAAE,EAAE;IACtB,CAAC,EAAE,OAAO;IACV,CAAC,EAAE,OAAO;IACV,CAAC,EAAE,EAAE,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;CAC5B,CAAC,CAAC,EAAE,CAAC;AAER,MAAM,GAAG,GAAG,eAAe,CAAC,CAAC,GAAG,EAAE,CAChC,YAAY,CAAC,SAAS,CAAC,eAAe,EAAE,CAAC,OAAiB,EAAE,EAAE,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,EAAE;IACjF,GAAG,EAAE,2BAA2B;IAChC,SAAS,EAAE,2BAA2B;IACtC,CAAC,EAAE,EAAE,CAAC,KAAK;IACX,CAAC,EAAE,CAAC;IACJ,CAAC,EAAE,GAAG;IACN,MAAM,EAAE,KAAK;IACb,IAAI,EAAE,MAAM;CACb,CAAC,CAAC,EAAE,CAAC;AACR,MAAM,CAAC,MAAM,WAAW,GAAG,eAAe,CAAC,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,WAAW,CAAC,EAAE,CAAC;AACrE,MAAM,CAAC,MAAM,aAAa,GAAG,eAAe,CAAC,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,aAAa,CAAC,EAAE,CAAC"}
|