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,297 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @_ignore
|
|
3
|
-
*/
|
|
4
|
-
import { getAddress, getCreateAddress } from "../address/index.js";
|
|
5
|
-
import { Signature } from "../crypto/index.js";
|
|
6
|
-
import { accessListify } from "../transaction/index.js";
|
|
7
|
-
import { getBigInt, getNumber, hexlify, isHexString, zeroPadValue, assert, assertArgument } from "../utils/index.js";
|
|
8
|
-
const BN_0 = BigInt(0);
|
|
9
|
-
export function allowNull(format, nullValue) {
|
|
10
|
-
return (function (value) {
|
|
11
|
-
if (value == null) {
|
|
12
|
-
return nullValue;
|
|
13
|
-
}
|
|
14
|
-
return format(value);
|
|
15
|
-
});
|
|
16
|
-
}
|
|
17
|
-
export function arrayOf(format, allowNull) {
|
|
18
|
-
return ((array) => {
|
|
19
|
-
if (allowNull && array == null) {
|
|
20
|
-
return null;
|
|
21
|
-
}
|
|
22
|
-
if (!Array.isArray(array)) {
|
|
23
|
-
throw new Error("not an array");
|
|
24
|
-
}
|
|
25
|
-
return array.map((i) => format(i));
|
|
26
|
-
});
|
|
27
|
-
}
|
|
28
|
-
// Requires an object which matches a fleet of other formatters
|
|
29
|
-
// Any FormatFunc may return `undefined` to have the value omitted
|
|
30
|
-
// from the result object. Calls preserve `this`.
|
|
31
|
-
export function object(format, altNames) {
|
|
32
|
-
return ((value) => {
|
|
33
|
-
const result = {};
|
|
34
|
-
for (const key in format) {
|
|
35
|
-
let srcKey = key;
|
|
36
|
-
if (altNames && key in altNames && !(srcKey in value)) {
|
|
37
|
-
for (const altKey of altNames[key]) {
|
|
38
|
-
if (altKey in value) {
|
|
39
|
-
srcKey = altKey;
|
|
40
|
-
break;
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
}
|
|
44
|
-
try {
|
|
45
|
-
const nv = format[key](value[srcKey]);
|
|
46
|
-
if (nv !== undefined) {
|
|
47
|
-
result[key] = nv;
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
catch (error) {
|
|
51
|
-
const message = (error instanceof Error) ? error.message : "not-an-error";
|
|
52
|
-
assert(false, `invalid value for value.${key} (${message})`, "BAD_DATA", { value });
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
return result;
|
|
56
|
-
});
|
|
57
|
-
}
|
|
58
|
-
export function formatBoolean(value) {
|
|
59
|
-
switch (value) {
|
|
60
|
-
case true:
|
|
61
|
-
case "true":
|
|
62
|
-
return true;
|
|
63
|
-
case false:
|
|
64
|
-
case "false":
|
|
65
|
-
return false;
|
|
66
|
-
}
|
|
67
|
-
assertArgument(false, `invalid boolean; ${JSON.stringify(value)}`, "value", value);
|
|
68
|
-
}
|
|
69
|
-
export function formatData(value) {
|
|
70
|
-
assertArgument(isHexString(value, true), "invalid data", "value", value);
|
|
71
|
-
return value;
|
|
72
|
-
}
|
|
73
|
-
export function formatHash(value) {
|
|
74
|
-
assertArgument(isHexString(value, 32), "invalid hash", "value", value);
|
|
75
|
-
return value;
|
|
76
|
-
}
|
|
77
|
-
export function formatUint256(value) {
|
|
78
|
-
if (!isHexString(value)) {
|
|
79
|
-
throw new Error("invalid uint256");
|
|
80
|
-
}
|
|
81
|
-
return zeroPadValue(value, 32);
|
|
82
|
-
}
|
|
83
|
-
const _formatLog = object({
|
|
84
|
-
address: getAddress,
|
|
85
|
-
blockHash: formatHash,
|
|
86
|
-
blockNumber: getNumber,
|
|
87
|
-
data: formatData,
|
|
88
|
-
index: getNumber,
|
|
89
|
-
removed: allowNull(formatBoolean, false),
|
|
90
|
-
topics: arrayOf(formatHash),
|
|
91
|
-
transactionHash: formatHash,
|
|
92
|
-
transactionIndex: getNumber,
|
|
93
|
-
}, {
|
|
94
|
-
index: ["logIndex"]
|
|
95
|
-
});
|
|
96
|
-
export function formatLog(value) {
|
|
97
|
-
return _formatLog(value);
|
|
98
|
-
}
|
|
99
|
-
const _formatBlock = object({
|
|
100
|
-
hash: allowNull(formatHash),
|
|
101
|
-
parentHash: formatHash,
|
|
102
|
-
parentBeaconBlockRoot: allowNull(formatHash, null),
|
|
103
|
-
number: getNumber,
|
|
104
|
-
timestamp: getNumber,
|
|
105
|
-
nonce: allowNull(formatData),
|
|
106
|
-
difficulty: getBigInt,
|
|
107
|
-
gasLimit: getBigInt,
|
|
108
|
-
gasUsed: getBigInt,
|
|
109
|
-
stateRoot: allowNull(formatHash, null),
|
|
110
|
-
receiptsRoot: allowNull(formatHash, null),
|
|
111
|
-
blobGasUsed: allowNull(getBigInt, null),
|
|
112
|
-
excessBlobGas: allowNull(getBigInt, null),
|
|
113
|
-
miner: allowNull(getAddress),
|
|
114
|
-
prevRandao: allowNull(formatHash, null),
|
|
115
|
-
extraData: formatData,
|
|
116
|
-
baseFeePerGas: allowNull(getBigInt)
|
|
117
|
-
}, {
|
|
118
|
-
prevRandao: ["mixHash"]
|
|
119
|
-
});
|
|
120
|
-
export function formatBlock(value) {
|
|
121
|
-
const result = _formatBlock(value);
|
|
122
|
-
result.transactions = value.transactions.map((tx) => {
|
|
123
|
-
if (typeof (tx) === "string") {
|
|
124
|
-
return tx;
|
|
125
|
-
}
|
|
126
|
-
return formatTransactionResponse(tx);
|
|
127
|
-
});
|
|
128
|
-
return result;
|
|
129
|
-
}
|
|
130
|
-
const _formatReceiptLog = object({
|
|
131
|
-
transactionIndex: getNumber,
|
|
132
|
-
blockNumber: getNumber,
|
|
133
|
-
transactionHash: formatHash,
|
|
134
|
-
address: getAddress,
|
|
135
|
-
topics: arrayOf(formatHash),
|
|
136
|
-
data: formatData,
|
|
137
|
-
index: getNumber,
|
|
138
|
-
blockHash: formatHash,
|
|
139
|
-
}, {
|
|
140
|
-
index: ["logIndex"]
|
|
141
|
-
});
|
|
142
|
-
export function formatReceiptLog(value) {
|
|
143
|
-
return _formatReceiptLog(value);
|
|
144
|
-
}
|
|
145
|
-
const _formatTransactionReceipt = object({
|
|
146
|
-
to: allowNull(getAddress, null),
|
|
147
|
-
from: allowNull(getAddress, null),
|
|
148
|
-
contractAddress: allowNull(getAddress, null),
|
|
149
|
-
// should be allowNull(hash), but broken-EIP-658 support is handled in receipt
|
|
150
|
-
index: getNumber,
|
|
151
|
-
root: allowNull(hexlify),
|
|
152
|
-
gasUsed: getBigInt,
|
|
153
|
-
blobGasUsed: allowNull(getBigInt, null),
|
|
154
|
-
logsBloom: allowNull(formatData),
|
|
155
|
-
blockHash: formatHash,
|
|
156
|
-
hash: formatHash,
|
|
157
|
-
logs: arrayOf(formatReceiptLog),
|
|
158
|
-
blockNumber: getNumber,
|
|
159
|
-
//confirmations: allowNull(getNumber, null),
|
|
160
|
-
cumulativeGasUsed: getBigInt,
|
|
161
|
-
effectiveGasPrice: allowNull(getBigInt),
|
|
162
|
-
blobGasPrice: allowNull(getBigInt, null),
|
|
163
|
-
status: allowNull(getNumber),
|
|
164
|
-
type: allowNull(getNumber, 0)
|
|
165
|
-
}, {
|
|
166
|
-
effectiveGasPrice: ["gasPrice"],
|
|
167
|
-
hash: ["transactionHash"],
|
|
168
|
-
index: ["transactionIndex"],
|
|
169
|
-
});
|
|
170
|
-
export function formatTransactionReceipt(value) {
|
|
171
|
-
return _formatTransactionReceipt(value);
|
|
172
|
-
}
|
|
173
|
-
export function formatTransactionResponse(value) {
|
|
174
|
-
// Some clients (TestRPC) do strange things like return 0x0 for the
|
|
175
|
-
// 0 address; correct this to be a real address
|
|
176
|
-
if (value.to && getBigInt(value.to) === BN_0) {
|
|
177
|
-
value.to = "0x0000000000000000000000000000000000000000";
|
|
178
|
-
}
|
|
179
|
-
const result = object({
|
|
180
|
-
hash: formatHash,
|
|
181
|
-
// Some nodes do not return this, usually test nodes (like Ganache)
|
|
182
|
-
index: allowNull(getNumber, undefined),
|
|
183
|
-
type: (value) => {
|
|
184
|
-
if (value === "0x" || value == null) {
|
|
185
|
-
return 0;
|
|
186
|
-
}
|
|
187
|
-
return getNumber(value);
|
|
188
|
-
},
|
|
189
|
-
accessList: allowNull(accessListify, null),
|
|
190
|
-
blobVersionedHashes: allowNull(arrayOf(formatHash, true), null),
|
|
191
|
-
authorizationList: allowNull(arrayOf((v) => {
|
|
192
|
-
let sig;
|
|
193
|
-
if (v.signature) {
|
|
194
|
-
sig = v.signature;
|
|
195
|
-
}
|
|
196
|
-
else {
|
|
197
|
-
let yParity = v.yParity;
|
|
198
|
-
if (yParity === "0x1b") {
|
|
199
|
-
yParity = 0;
|
|
200
|
-
}
|
|
201
|
-
else if (yParity === "0x1c") {
|
|
202
|
-
yParity = 1;
|
|
203
|
-
}
|
|
204
|
-
sig = Object.assign({}, v, { yParity });
|
|
205
|
-
}
|
|
206
|
-
return {
|
|
207
|
-
address: getAddress(v.address),
|
|
208
|
-
chainId: getBigInt(v.chainId),
|
|
209
|
-
nonce: getBigInt(v.nonce),
|
|
210
|
-
signature: Signature.from(sig)
|
|
211
|
-
};
|
|
212
|
-
}, false), null),
|
|
213
|
-
blockHash: allowNull(formatHash, null),
|
|
214
|
-
blockNumber: allowNull(getNumber, null),
|
|
215
|
-
transactionIndex: allowNull(getNumber, null),
|
|
216
|
-
from: getAddress,
|
|
217
|
-
// either (gasPrice) or (maxPriorityFeePerGas + maxFeePerGas) must be set
|
|
218
|
-
gasPrice: allowNull(getBigInt),
|
|
219
|
-
maxPriorityFeePerGas: allowNull(getBigInt),
|
|
220
|
-
maxFeePerGas: allowNull(getBigInt),
|
|
221
|
-
maxFeePerBlobGas: allowNull(getBigInt, null),
|
|
222
|
-
gasLimit: getBigInt,
|
|
223
|
-
to: allowNull(getAddress, null),
|
|
224
|
-
value: getBigInt,
|
|
225
|
-
nonce: getNumber,
|
|
226
|
-
data: formatData,
|
|
227
|
-
creates: allowNull(getAddress, null),
|
|
228
|
-
chainId: allowNull(getBigInt, null)
|
|
229
|
-
}, {
|
|
230
|
-
data: ["input"],
|
|
231
|
-
gasLimit: ["gas"],
|
|
232
|
-
index: ["transactionIndex"]
|
|
233
|
-
})(value);
|
|
234
|
-
// If to and creates are empty, populate the creates from the value
|
|
235
|
-
if (result.to == null && result.creates == null) {
|
|
236
|
-
result.creates = getCreateAddress(result);
|
|
237
|
-
}
|
|
238
|
-
// @TODO: Check fee data
|
|
239
|
-
// Add an access list to supported transaction types
|
|
240
|
-
if ((value.type === 1 || value.type === 2) && value.accessList == null) {
|
|
241
|
-
result.accessList = [];
|
|
242
|
-
}
|
|
243
|
-
// Compute the signature
|
|
244
|
-
if (value.signature) {
|
|
245
|
-
result.signature = Signature.from(value.signature);
|
|
246
|
-
}
|
|
247
|
-
else {
|
|
248
|
-
result.signature = Signature.from(value);
|
|
249
|
-
}
|
|
250
|
-
// Some backends omit ChainId on legacy transactions, but we can compute it
|
|
251
|
-
if (result.chainId == null) {
|
|
252
|
-
const chainId = result.signature.legacyChainId;
|
|
253
|
-
if (chainId != null) {
|
|
254
|
-
result.chainId = chainId;
|
|
255
|
-
}
|
|
256
|
-
}
|
|
257
|
-
// @TODO: check chainID
|
|
258
|
-
/*
|
|
259
|
-
if (value.chainId != null) {
|
|
260
|
-
let chainId = value.chainId;
|
|
261
|
-
|
|
262
|
-
if (isHexString(chainId)) {
|
|
263
|
-
chainId = BigNumber.from(chainId).toNumber();
|
|
264
|
-
}
|
|
265
|
-
|
|
266
|
-
result.chainId = chainId;
|
|
267
|
-
|
|
268
|
-
} else {
|
|
269
|
-
let chainId = value.networkId;
|
|
270
|
-
|
|
271
|
-
// geth-etc returns chainId
|
|
272
|
-
if (chainId == null && result.v == null) {
|
|
273
|
-
chainId = value.chainId;
|
|
274
|
-
}
|
|
275
|
-
|
|
276
|
-
if (isHexString(chainId)) {
|
|
277
|
-
chainId = BigNumber.from(chainId).toNumber();
|
|
278
|
-
}
|
|
279
|
-
|
|
280
|
-
if (typeof(chainId) !== "number" && result.v != null) {
|
|
281
|
-
chainId = (result.v - 35) / 2;
|
|
282
|
-
if (chainId < 0) { chainId = 0; }
|
|
283
|
-
chainId = parseInt(chainId);
|
|
284
|
-
}
|
|
285
|
-
|
|
286
|
-
if (typeof(chainId) !== "number") { chainId = 0; }
|
|
287
|
-
|
|
288
|
-
result.chainId = chainId;
|
|
289
|
-
}
|
|
290
|
-
*/
|
|
291
|
-
// 0x0000... should actually be null
|
|
292
|
-
if (result.blockHash && getBigInt(result.blockHash) === BN_0) {
|
|
293
|
-
result.blockHash = null;
|
|
294
|
-
}
|
|
295
|
-
return result;
|
|
296
|
-
}
|
|
297
|
-
//# sourceMappingURL=format.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"format.js","sourceRoot":"","sources":["../../src.ts/providers/format.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,318 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* About provider formatting?
|
|
3
|
-
*
|
|
4
|
-
* @_section: api/providers/formatting:Formatting [provider-formatting]
|
|
5
|
-
*/
|
|
6
|
-
import type { Signature } from "../crypto/index.js";
|
|
7
|
-
import type { Authorization, AccessList } from "../transaction/index.js";
|
|
8
|
-
/**
|
|
9
|
-
* a **BlockParams** encodes the minimal required properties for a
|
|
10
|
-
* formatted block.
|
|
11
|
-
*/
|
|
12
|
-
export interface BlockParams {
|
|
13
|
-
/**
|
|
14
|
-
* The block hash.
|
|
15
|
-
*/
|
|
16
|
-
hash?: null | string;
|
|
17
|
-
/**
|
|
18
|
-
* The block number.
|
|
19
|
-
*/
|
|
20
|
-
number: number;
|
|
21
|
-
/**
|
|
22
|
-
* The timestamp for this block, which is the number of seconds
|
|
23
|
-
* since epoch that this block was included.
|
|
24
|
-
*/
|
|
25
|
-
timestamp: number;
|
|
26
|
-
/**
|
|
27
|
-
* The hash of the previous block in the blockchain. The genesis block
|
|
28
|
-
* has the parentHash of the [[ZeroHash]].
|
|
29
|
-
*/
|
|
30
|
-
parentHash: string;
|
|
31
|
-
/**
|
|
32
|
-
* The hash tree root of the parent beacon block for the given
|
|
33
|
-
* execution block. See [[link-eip-4788]].
|
|
34
|
-
*/
|
|
35
|
-
parentBeaconBlockRoot?: null | string;
|
|
36
|
-
/**
|
|
37
|
-
* A random sequence provided during the mining process for
|
|
38
|
-
* proof-of-work networks.
|
|
39
|
-
*/
|
|
40
|
-
nonce: string;
|
|
41
|
-
/**
|
|
42
|
-
* For proof-of-work networks, the difficulty target is used to
|
|
43
|
-
* adjust the difficulty in mining to ensure an expected block rate.
|
|
44
|
-
*/
|
|
45
|
-
difficulty: bigint;
|
|
46
|
-
/**
|
|
47
|
-
* The maximum amount of gas a block can consume.
|
|
48
|
-
*/
|
|
49
|
-
gasLimit: bigint;
|
|
50
|
-
/**
|
|
51
|
-
* The amount of gas a block consumed.
|
|
52
|
-
*/
|
|
53
|
-
gasUsed: bigint;
|
|
54
|
-
/**
|
|
55
|
-
* The total amount of BLOb gas consumed by transactions within
|
|
56
|
-
* the block. See [[link-eip4844].
|
|
57
|
-
*/
|
|
58
|
-
blobGasUsed?: null | bigint;
|
|
59
|
-
/**
|
|
60
|
-
* The running total of BLOb gas consumed in excess of the target
|
|
61
|
-
* prior to the block. See [[link-eip-4844]].
|
|
62
|
-
*/
|
|
63
|
-
excessBlobGas?: null | bigint;
|
|
64
|
-
/**
|
|
65
|
-
* The miner (or author) of a block.
|
|
66
|
-
*/
|
|
67
|
-
miner: string;
|
|
68
|
-
/**
|
|
69
|
-
* The latest RANDAO mix of the post beacon state of
|
|
70
|
-
* the previous block.
|
|
71
|
-
*/
|
|
72
|
-
prevRandao?: null | string;
|
|
73
|
-
/**
|
|
74
|
-
* Additional data the miner choose to include.
|
|
75
|
-
*/
|
|
76
|
-
extraData: string;
|
|
77
|
-
/**
|
|
78
|
-
* The protocol-defined base fee per gas in an [[link-eip-1559]]
|
|
79
|
-
* block.
|
|
80
|
-
*/
|
|
81
|
-
baseFeePerGas: null | bigint;
|
|
82
|
-
/**
|
|
83
|
-
* The root hash for the global state after applying changes
|
|
84
|
-
* in this block.
|
|
85
|
-
*/
|
|
86
|
-
stateRoot?: null | string;
|
|
87
|
-
/**
|
|
88
|
-
* The hash of the transaction receipts trie.
|
|
89
|
-
*/
|
|
90
|
-
receiptsRoot?: null | string;
|
|
91
|
-
/**
|
|
92
|
-
* The list of transactions in the block.
|
|
93
|
-
*/
|
|
94
|
-
transactions: ReadonlyArray<string | TransactionResponseParams>;
|
|
95
|
-
}
|
|
96
|
-
/**
|
|
97
|
-
* a **LogParams** encodes the minimal required properties for a
|
|
98
|
-
* formatted log.
|
|
99
|
-
*/
|
|
100
|
-
export interface LogParams {
|
|
101
|
-
/**
|
|
102
|
-
* The transaction hash for the transaxction the log occurred in.
|
|
103
|
-
*/
|
|
104
|
-
transactionHash: string;
|
|
105
|
-
/**
|
|
106
|
-
* The block hash of the block that included the transaction for this
|
|
107
|
-
* log.
|
|
108
|
-
*/
|
|
109
|
-
blockHash: string;
|
|
110
|
-
/**
|
|
111
|
-
* The block number of the block that included the transaction for this
|
|
112
|
-
* log.
|
|
113
|
-
*/
|
|
114
|
-
blockNumber: number;
|
|
115
|
-
/**
|
|
116
|
-
* Whether this log was removed due to the transaction it was included
|
|
117
|
-
* in being removed dur to an orphaned block.
|
|
118
|
-
*/
|
|
119
|
-
removed: boolean;
|
|
120
|
-
/**
|
|
121
|
-
* The address of the contract that emitted this log.
|
|
122
|
-
*/
|
|
123
|
-
address: string;
|
|
124
|
-
/**
|
|
125
|
-
* The data emitted with this log.
|
|
126
|
-
*/
|
|
127
|
-
data: string;
|
|
128
|
-
/**
|
|
129
|
-
* The topics emitted with this log.
|
|
130
|
-
*/
|
|
131
|
-
topics: ReadonlyArray<string>;
|
|
132
|
-
/**
|
|
133
|
-
* The index of this log.
|
|
134
|
-
*/
|
|
135
|
-
index: number;
|
|
136
|
-
/**
|
|
137
|
-
* The transaction index of this log.
|
|
138
|
-
*/
|
|
139
|
-
transactionIndex: number;
|
|
140
|
-
}
|
|
141
|
-
/**
|
|
142
|
-
* a **TransactionReceiptParams** encodes the minimal required properties
|
|
143
|
-
* for a formatted transaction receipt.
|
|
144
|
-
*/
|
|
145
|
-
export interface TransactionReceiptParams {
|
|
146
|
-
/**
|
|
147
|
-
* The target of the transaction. If null, the transaction was trying
|
|
148
|
-
* to deploy a transaction with the ``data`` as the initi=code.
|
|
149
|
-
*/
|
|
150
|
-
to: null | string;
|
|
151
|
-
/**
|
|
152
|
-
* The sender of the transaction.
|
|
153
|
-
*/
|
|
154
|
-
from: string;
|
|
155
|
-
/**
|
|
156
|
-
* If the transaction was directly deploying a contract, the [[to]]
|
|
157
|
-
* will be null, the ``data`` will be initcode and if successful, this
|
|
158
|
-
* will be the address of the contract deployed.
|
|
159
|
-
*/
|
|
160
|
-
contractAddress: null | string;
|
|
161
|
-
/**
|
|
162
|
-
* The transaction hash.
|
|
163
|
-
*/
|
|
164
|
-
hash: string;
|
|
165
|
-
/**
|
|
166
|
-
* The transaction index.
|
|
167
|
-
*/
|
|
168
|
-
index: number;
|
|
169
|
-
/**
|
|
170
|
-
* The block hash of the block that included this transaction.
|
|
171
|
-
*/
|
|
172
|
-
blockHash: string;
|
|
173
|
-
/**
|
|
174
|
-
* The block number of the block that included this transaction.
|
|
175
|
-
*/
|
|
176
|
-
blockNumber: number;
|
|
177
|
-
/**
|
|
178
|
-
* The bloom filter for the logs emitted during execution of this
|
|
179
|
-
* transaction.
|
|
180
|
-
*/
|
|
181
|
-
logsBloom: string;
|
|
182
|
-
/**
|
|
183
|
-
* The logs emitted during the execution of this transaction.
|
|
184
|
-
*/
|
|
185
|
-
logs: ReadonlyArray<LogParams>;
|
|
186
|
-
/**
|
|
187
|
-
* The amount of gas consumed executing this transaction.
|
|
188
|
-
*/
|
|
189
|
-
gasUsed: bigint;
|
|
190
|
-
/**
|
|
191
|
-
* The amount of BLOb gas used. See [[link-eip-4844]].
|
|
192
|
-
*/
|
|
193
|
-
blobGasUsed?: null | bigint;
|
|
194
|
-
/**
|
|
195
|
-
* The total amount of gas consumed during the entire block up to
|
|
196
|
-
* and including this transaction.
|
|
197
|
-
*/
|
|
198
|
-
cumulativeGasUsed: bigint;
|
|
199
|
-
/**
|
|
200
|
-
* The actual gas price per gas charged for this transaction.
|
|
201
|
-
*/
|
|
202
|
-
gasPrice?: null | bigint;
|
|
203
|
-
/**
|
|
204
|
-
* The actual BLOb gas price that was charged. See [[link-eip-4844]].
|
|
205
|
-
*/
|
|
206
|
-
blobGasPrice?: null | bigint;
|
|
207
|
-
/**
|
|
208
|
-
* The actual gas price per gas charged for this transaction.
|
|
209
|
-
*/
|
|
210
|
-
effectiveGasPrice?: null | bigint;
|
|
211
|
-
/**
|
|
212
|
-
* The [[link-eip-2718]] envelope type.
|
|
213
|
-
*/
|
|
214
|
-
type: number;
|
|
215
|
-
/**
|
|
216
|
-
* The status of the transaction execution. If ``1`` then the
|
|
217
|
-
* the transaction returned success, if ``0`` then the transaction
|
|
218
|
-
* was reverted. For pre-byzantium blocks, this is usually null, but
|
|
219
|
-
* some nodes may have backfilled this data.
|
|
220
|
-
*/
|
|
221
|
-
status: null | number;
|
|
222
|
-
/**
|
|
223
|
-
* The root of this transaction in a pre-bazatium block. In
|
|
224
|
-
* post-byzantium blocks this is null.
|
|
225
|
-
*/
|
|
226
|
-
root: null | string;
|
|
227
|
-
}
|
|
228
|
-
/**
|
|
229
|
-
* a **TransactionResponseParams** encodes the minimal required properties
|
|
230
|
-
* for a formatted transaction response.
|
|
231
|
-
*/
|
|
232
|
-
export interface TransactionResponseParams {
|
|
233
|
-
/**
|
|
234
|
-
* The block number of the block that included this transaction.
|
|
235
|
-
*/
|
|
236
|
-
blockNumber: null | number;
|
|
237
|
-
/**
|
|
238
|
-
* The block hash of the block that included this transaction.
|
|
239
|
-
*/
|
|
240
|
-
blockHash: null | string;
|
|
241
|
-
/**
|
|
242
|
-
* The transaction hash.
|
|
243
|
-
*/
|
|
244
|
-
hash: string;
|
|
245
|
-
/**
|
|
246
|
-
* The transaction index.
|
|
247
|
-
*/
|
|
248
|
-
index: number;
|
|
249
|
-
/**
|
|
250
|
-
* The [[link-eip-2718]] transaction type.
|
|
251
|
-
*/
|
|
252
|
-
type: number;
|
|
253
|
-
/**
|
|
254
|
-
* The target of the transaction. If ``null``, the ``data`` is initcode
|
|
255
|
-
* and this transaction is a deployment transaction.
|
|
256
|
-
*/
|
|
257
|
-
to: null | string;
|
|
258
|
-
/**
|
|
259
|
-
* The sender of the transaction.
|
|
260
|
-
*/
|
|
261
|
-
from: string;
|
|
262
|
-
/**
|
|
263
|
-
* The nonce of the transaction, used for replay protection.
|
|
264
|
-
*/
|
|
265
|
-
nonce: number;
|
|
266
|
-
/**
|
|
267
|
-
* The maximum amount of gas this transaction is authorized to consume.
|
|
268
|
-
*/
|
|
269
|
-
gasLimit: bigint;
|
|
270
|
-
/**
|
|
271
|
-
* For legacy transactions, this is the gas price per gas to pay.
|
|
272
|
-
*/
|
|
273
|
-
gasPrice: bigint;
|
|
274
|
-
/**
|
|
275
|
-
* For [[link-eip-1559]] transactions, this is the maximum priority
|
|
276
|
-
* fee to allow a producer to claim.
|
|
277
|
-
*/
|
|
278
|
-
maxPriorityFeePerGas: null | bigint;
|
|
279
|
-
/**
|
|
280
|
-
* For [[link-eip-1559]] transactions, this is the maximum fee that
|
|
281
|
-
* will be paid.
|
|
282
|
-
*/
|
|
283
|
-
maxFeePerGas: null | bigint;
|
|
284
|
-
/**
|
|
285
|
-
* For [[link-eip-4844]] transactions, this is the maximum fee that
|
|
286
|
-
* will be paid per BLOb.
|
|
287
|
-
*/
|
|
288
|
-
maxFeePerBlobGas?: null | bigint;
|
|
289
|
-
/**
|
|
290
|
-
* The transaction data.
|
|
291
|
-
*/
|
|
292
|
-
data: string;
|
|
293
|
-
/**
|
|
294
|
-
* The transaction value (in wei).
|
|
295
|
-
*/
|
|
296
|
-
value: bigint;
|
|
297
|
-
/**
|
|
298
|
-
* The chain ID this transaction is valid on.
|
|
299
|
-
*/
|
|
300
|
-
chainId: bigint;
|
|
301
|
-
/**
|
|
302
|
-
* The signature of the transaction.
|
|
303
|
-
*/
|
|
304
|
-
signature: Signature;
|
|
305
|
-
/**
|
|
306
|
-
* The transaction access list.
|
|
307
|
-
*/
|
|
308
|
-
accessList: null | AccessList;
|
|
309
|
-
/**
|
|
310
|
-
* The [[link-eip-4844]] BLOb versioned hashes.
|
|
311
|
-
*/
|
|
312
|
-
blobVersionedHashes?: null | Array<string>;
|
|
313
|
-
/**
|
|
314
|
-
* The [[link-eip-7702]] authorizations (if any).
|
|
315
|
-
*/
|
|
316
|
-
authorizationList: null | Array<Authorization>;
|
|
317
|
-
}
|
|
318
|
-
//# sourceMappingURL=formatting.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"formatting.d.ts","sourceRoot":"","sources":["../../src.ts/providers/formatting.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"formatting.js","sourceRoot":"","sources":["../../src.ts/providers/formatting.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAiHF,CAAC;AA0SD,CAAC"}
|