essential-eth 0.4.6 → 0.4.9-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/..eslintrc.js.un~ +0 -0
- package/..npmignore.un~ +0 -0
- package/.env +1 -0
- package/.eslintignore +4 -0
- package/.eslintrc.js +34 -0
- package/.gitattributes +1 -0
- package/.github/workflows/.test.yml.un~ +0 -0
- package/.github/workflows/test.yml +29 -0
- package/.package.json.un~ +0 -0
- package/.prettierignore +7 -0
- package/.travis.yml +5 -0
- package/jest.config.js +9 -0
- package/package.json +34 -20
- package/readme.md +1 -2
- package/scripts/build-website.sh +4 -0
- package/scripts/bump-minor.sh +4 -0
- package/scripts/bump-patch.sh +4 -0
- package/scripts/fetch-chains-info.ts +70 -0
- package/scripts/pre-commit.sh +5 -0
- package/src/classes/Contract.ts +161 -0
- package/src/classes/test/Contract/crv-abi.ts +488 -0
- package/src/classes/test/Contract/crv.test.ts +56 -0
- package/src/classes/test/Contract/ens-abi.ts +452 -0
- package/src/classes/test/Contract/ens.test.ts +39 -0
- package/src/classes/test/Contract/fei-abi.ts +526 -0
- package/src/classes/test/Contract/fei.test.ts +86 -0
- package/src/classes/test/Contract/foo-abi.ts +42 -0
- package/src/classes/test/Contract/foo.test.ts +33 -0
- package/src/classes/test/Contract/uni.test.ts +72 -0
- package/src/classes/test/Contract/uniswap-abi.ts +121 -0
- package/src/classes/utils/clean-block.ts +49 -0
- package/src/classes/utils/clean-transaction.ts +35 -0
- package/src/classes/utils/encode-decode-transaction.ts +126 -0
- package/src/classes/utils/fetchers.ts +27 -0
- package/{lib/cjs/classes/utils/hex-to-decimal.d.ts → src/classes/utils/hex-to-decimal.ts} +3 -1
- package/src/index.ts +27 -0
- package/src/providers/JsonRpcProvider.ts +94 -0
- package/src/providers/test/get-block.test.ts +63 -0
- package/src/providers/test/get-network.test.ts +34 -0
- package/src/providers/utils/chains-info.ts +1079 -0
- package/src/shared/tiny-big/helpers.test.ts +30 -0
- package/src/shared/tiny-big/helpers.ts +89 -0
- package/src/shared/tiny-big/tiny-big.test.ts +10 -0
- package/src/shared/tiny-big/tiny-big.ts +36 -0
- package/src/shared/validate-type.ts +20 -0
- package/src/types/.Contract.types.ts.un~ +0 -0
- package/src/types/Block.types.ts +50 -0
- package/src/types/Contract.types.ts +67 -0
- package/src/types/Network.types.ts +8 -0
- package/src/types/Transaction.types.ts +35 -0
- package/{lib/cjs/utils/ether-to-wei.d.ts → src/utils/ether-to-wei.ts} +10 -2
- package/src/utils/index.ts +6 -0
- package/src/utils/is-address.ts +16 -0
- package/src/utils/tests/ether-to-wei.test.ts +65 -0
- package/src/utils/tests/is-address.test.ts +52 -0
- package/src/utils/tests/to-checksum-address.test.ts +43 -0
- package/src/utils/tests/wei-to-ether.test.ts +72 -0
- package/src/utils/to-checksum-address.ts +47 -0
- package/{lib/cjs/utils/wei-to-ether.d.ts → src/utils/wei-to-ether.ts} +8 -1
- package/test/global-setup.js +8 -0
- package/test/global-teardown.js +5 -0
- package/test/jest.setup-after-env.js +1 -0
- package/test/server.js +24 -0
- package/tsconfig-cjs.json +8 -0
- package/tsconfig.json +25 -0
- package/typedoc/options-new-version.js +8 -0
- package/typedoc/options.js +9 -0
- package/types/just-omit.d.ts +1 -0
- package/website/.nojekyll +1 -0
- package/website/assets/highlight.css +71 -0
- package/website/assets/icons.css +1043 -0
- package/website/assets/icons.png +0 -0
- package/website/assets/icons@2x.png +0 -0
- package/website/assets/main.js +52 -0
- package/website/assets/search.js +1 -0
- package/website/assets/style.css +1413 -0
- package/website/assets/widgets.png +0 -0
- package/website/assets/widgets@2x.png +0 -0
- package/website/classes/Contract.html +13 -0
- package/website/classes/JsonRpcProvider.html +8 -0
- package/website/classes/TinyBig.html +161 -0
- package/website/index.html +207 -0
- package/website/interfaces/Block.html +1 -0
- package/website/interfaces/JSONABIArgument.html +1 -0
- package/website/interfaces/Network.html +3 -0
- package/website/interfaces/Transaction.html +1 -0
- package/website/modules.html +32 -0
- package/website/versions/0.1.2/assets/highlight.css +57 -0
- package/website/versions/0.1.2/assets/icons.css +1043 -0
- package/website/versions/0.1.2/assets/icons.png +0 -0
- package/website/versions/0.1.2/assets/icons@2x.png +0 -0
- package/website/versions/0.1.2/assets/main.js +52 -0
- package/website/versions/0.1.2/assets/search.js +1 -0
- package/website/versions/0.1.2/assets/style.css +1341 -0
- package/website/versions/0.1.2/assets/widgets.png +0 -0
- package/website/versions/0.1.2/assets/widgets@2x.png +0 -0
- package/website/versions/0.1.2/classes/TinyBig.html +4 -0
- package/website/versions/0.1.2/index.html +20 -0
- package/website/versions/0.1.2/modules.html +23 -0
- package/website/versions/0.1.3/assets/highlight.css +64 -0
- package/website/versions/0.1.3/assets/icons.css +1043 -0
- package/website/versions/0.1.3/assets/icons.png +0 -0
- package/website/versions/0.1.3/assets/icons@2x.png +0 -0
- package/website/versions/0.1.3/assets/main.js +52 -0
- package/website/versions/0.1.3/assets/search.js +1 -0
- package/website/versions/0.1.3/assets/style.css +1341 -0
- package/website/versions/0.1.3/assets/widgets.png +0 -0
- package/website/versions/0.1.3/assets/widgets@2x.png +0 -0
- package/website/versions/0.1.3/classes/TinyBig.html +4 -0
- package/website/versions/0.1.3/index.html +53 -0
- package/website/versions/0.1.3/modules.html +23 -0
- package/website/versions/0.1.4/assets/highlight.css +64 -0
- package/website/versions/0.1.4/assets/icons.css +1043 -0
- package/website/versions/0.1.4/assets/icons.png +0 -0
- package/website/versions/0.1.4/assets/icons@2x.png +0 -0
- package/website/versions/0.1.4/assets/main.js +52 -0
- package/website/versions/0.1.4/assets/search.js +1 -0
- package/website/versions/0.1.4/assets/style.css +1341 -0
- package/website/versions/0.1.4/assets/widgets.png +0 -0
- package/website/versions/0.1.4/assets/widgets@2x.png +0 -0
- package/website/versions/0.1.4/classes/EssentialEth.html +1 -0
- package/website/versions/0.1.4/classes/TinyBig.html +4 -0
- package/website/versions/0.1.4/index.html +58 -0
- package/website/versions/0.1.4/modules.html +23 -0
- package/website/versions/0.2.0/assets/highlight.css +64 -0
- package/website/versions/0.2.0/assets/icons.css +1043 -0
- package/website/versions/0.2.0/assets/icons.png +0 -0
- package/website/versions/0.2.0/assets/icons@2x.png +0 -0
- package/website/versions/0.2.0/assets/main.js +52 -0
- package/website/versions/0.2.0/assets/search.js +1 -0
- package/website/versions/0.2.0/assets/style.css +1341 -0
- package/website/versions/0.2.0/assets/widgets.png +0 -0
- package/website/versions/0.2.0/assets/widgets@2x.png +0 -0
- package/website/versions/0.2.0/classes/EssentialEth.html +5 -0
- package/website/versions/0.2.0/classes/TinyBig.html +146 -0
- package/website/versions/0.2.0/index.html +89 -0
- package/website/versions/0.2.0/modules.html +25 -0
- package/website/versions/0.2.1/assets/highlight.css +64 -0
- package/website/versions/0.2.1/assets/icons.css +1043 -0
- package/website/versions/0.2.1/assets/icons.png +0 -0
- package/website/versions/0.2.1/assets/icons@2x.png +0 -0
- package/website/versions/0.2.1/assets/main.js +52 -0
- package/website/versions/0.2.1/assets/search.js +1 -0
- package/website/versions/0.2.1/assets/style.css +1341 -0
- package/website/versions/0.2.1/assets/widgets.png +0 -0
- package/website/versions/0.2.1/assets/widgets@2x.png +0 -0
- package/website/versions/0.2.1/classes/EssentialEth.html +5 -0
- package/website/versions/0.2.1/classes/TinyBig.html +146 -0
- package/website/versions/0.2.1/index.html +96 -0
- package/website/versions/0.2.1/modules.html +29 -0
- package/website/versions/0.2.2/assets/highlight.css +64 -0
- package/website/versions/0.2.2/assets/icons.css +1043 -0
- package/website/versions/0.2.2/assets/icons.png +0 -0
- package/website/versions/0.2.2/assets/icons@2x.png +0 -0
- package/website/versions/0.2.2/assets/main.js +52 -0
- package/website/versions/0.2.2/assets/search.js +1 -0
- package/website/versions/0.2.2/assets/style.css +1341 -0
- package/website/versions/0.2.2/assets/widgets.png +0 -0
- package/website/versions/0.2.2/assets/widgets@2x.png +0 -0
- package/website/versions/0.2.2/classes/EssentialEth.html +5 -0
- package/website/versions/0.2.2/classes/TinyBig.html +146 -0
- package/website/versions/0.2.2/index.html +96 -0
- package/website/versions/0.2.2/modules.html +29 -0
- package/website/versions/0.3.0/.nojekyll +1 -0
- package/website/versions/0.3.0/assets/highlight.css +71 -0
- package/website/versions/0.3.0/assets/icons.css +1043 -0
- package/website/versions/0.3.0/assets/icons.png +0 -0
- package/website/versions/0.3.0/assets/icons@2x.png +0 -0
- package/website/versions/0.3.0/assets/main.js +52 -0
- package/website/versions/0.3.0/assets/search.js +1 -0
- package/website/versions/0.3.0/assets/style.css +1384 -0
- package/website/versions/0.3.0/assets/widgets.png +0 -0
- package/website/versions/0.3.0/assets/widgets@2x.png +0 -0
- package/website/versions/0.3.0/classes/Contract.html +15 -0
- package/website/versions/0.3.0/classes/TinyBig.html +156 -0
- package/website/versions/0.3.0/index.html +123 -0
- package/website/versions/0.3.0/modules.html +32 -0
- package/website/versions/0.3.1/.nojekyll +1 -0
- package/website/versions/0.3.1/assets/highlight.css +71 -0
- package/website/versions/0.3.1/assets/icons.css +1043 -0
- package/website/versions/0.3.1/assets/icons.png +0 -0
- package/website/versions/0.3.1/assets/icons@2x.png +0 -0
- package/website/versions/0.3.1/assets/main.js +52 -0
- package/website/versions/0.3.1/assets/search.js +1 -0
- package/website/versions/0.3.1/assets/style.css +1384 -0
- package/website/versions/0.3.1/assets/widgets.png +0 -0
- package/website/versions/0.3.1/assets/widgets@2x.png +0 -0
- package/website/versions/0.3.1/classes/Contract.html +15 -0
- package/website/versions/0.3.1/classes/TinyBig.html +156 -0
- package/website/versions/0.3.1/index.html +123 -0
- package/website/versions/0.3.1/modules.html +32 -0
- package/website/versions/0.3.2/.nojekyll +1 -0
- package/website/versions/0.3.2/assets/highlight.css +71 -0
- package/website/versions/0.3.2/assets/icons.css +1043 -0
- package/website/versions/0.3.2/assets/icons.png +0 -0
- package/website/versions/0.3.2/assets/icons@2x.png +0 -0
- package/website/versions/0.3.2/assets/main.js +52 -0
- package/website/versions/0.3.2/assets/search.js +1 -0
- package/website/versions/0.3.2/assets/style.css +1384 -0
- package/website/versions/0.3.2/assets/widgets.png +0 -0
- package/website/versions/0.3.2/assets/widgets@2x.png +0 -0
- package/website/versions/0.3.2/classes/Contract.html +15 -0
- package/website/versions/0.3.2/classes/JsonRpcProvider.html +5 -0
- package/website/versions/0.3.2/classes/TinyBig.html +156 -0
- package/website/versions/0.3.2/index.html +123 -0
- package/website/versions/0.3.2/modules.html +32 -0
- package/website/versions/0.3.3/.nojekyll +1 -0
- package/website/versions/0.3.3/assets/highlight.css +71 -0
- package/website/versions/0.3.3/assets/icons.css +1043 -0
- package/website/versions/0.3.3/assets/icons.png +0 -0
- package/website/versions/0.3.3/assets/icons@2x.png +0 -0
- package/website/versions/0.3.3/assets/main.js +52 -0
- package/website/versions/0.3.3/assets/search.js +1 -0
- package/website/versions/0.3.3/assets/style.css +1384 -0
- package/website/versions/0.3.3/assets/widgets.png +0 -0
- package/website/versions/0.3.3/assets/widgets@2x.png +0 -0
- package/website/versions/0.3.3/classes/Contract.html +15 -0
- package/website/versions/0.3.3/classes/JsonRpcProvider.html +5 -0
- package/website/versions/0.3.3/classes/TinyBig.html +156 -0
- package/website/versions/0.3.3/index.html +123 -0
- package/website/versions/0.3.3/interfaces/Block.html +1 -0
- package/website/versions/0.3.3/interfaces/Transaction.html +1 -0
- package/website/versions/0.3.3/modules.html +32 -0
- package/website/versions/0.4.0/.nojekyll +1 -0
- package/website/versions/0.4.0/assets/highlight.css +71 -0
- package/website/versions/0.4.0/assets/icons.css +1043 -0
- package/website/versions/0.4.0/assets/icons.png +0 -0
- package/website/versions/0.4.0/assets/icons@2x.png +0 -0
- package/website/versions/0.4.0/assets/main.js +52 -0
- package/website/versions/0.4.0/assets/search.js +1 -0
- package/website/versions/0.4.0/assets/style.css +1384 -0
- package/website/versions/0.4.0/assets/widgets.png +0 -0
- package/website/versions/0.4.0/assets/widgets@2x.png +0 -0
- package/website/versions/0.4.0/classes/Contract.html +15 -0
- package/website/versions/0.4.0/classes/JsonRpcProvider.html +6 -0
- package/website/versions/0.4.0/classes/TinyBig.html +156 -0
- package/website/versions/0.4.0/index.html +148 -0
- package/website/versions/0.4.0/interfaces/Block.html +1 -0
- package/website/versions/0.4.0/interfaces/Transaction.html +1 -0
- package/website/versions/0.4.0/modules.html +32 -0
- package/website/versions/0.4.1/.nojekyll +1 -0
- package/website/versions/0.4.1/assets/highlight.css +71 -0
- package/website/versions/0.4.1/assets/icons.css +1043 -0
- package/website/versions/0.4.1/assets/icons.png +0 -0
- package/website/versions/0.4.1/assets/icons@2x.png +0 -0
- package/website/versions/0.4.1/assets/main.js +52 -0
- package/website/versions/0.4.1/assets/search.js +1 -0
- package/website/versions/0.4.1/assets/style.css +1384 -0
- package/website/versions/0.4.1/assets/widgets.png +0 -0
- package/website/versions/0.4.1/assets/widgets@2x.png +0 -0
- package/website/versions/0.4.1/classes/Contract.html +15 -0
- package/website/versions/0.4.1/classes/JsonRpcProvider.html +6 -0
- package/website/versions/0.4.1/classes/TinyBig.html +156 -0
- package/website/versions/0.4.1/index.html +148 -0
- package/website/versions/0.4.1/interfaces/Block.html +1 -0
- package/website/versions/0.4.1/interfaces/Transaction.html +1 -0
- package/website/versions/0.4.1/modules.html +32 -0
- package/website/versions/0.4.2/.nojekyll +1 -0
- package/website/versions/0.4.2/assets/highlight.css +71 -0
- package/website/versions/0.4.2/assets/icons.css +1043 -0
- package/website/versions/0.4.2/assets/icons.png +0 -0
- package/website/versions/0.4.2/assets/icons@2x.png +0 -0
- package/website/versions/0.4.2/assets/main.js +52 -0
- package/website/versions/0.4.2/assets/search.js +1 -0
- package/website/versions/0.4.2/assets/style.css +1384 -0
- package/website/versions/0.4.2/assets/widgets.png +0 -0
- package/website/versions/0.4.2/assets/widgets@2x.png +0 -0
- package/website/versions/0.4.2/classes/Contract.html +15 -0
- package/website/versions/0.4.2/classes/JsonRpcProvider.html +8 -0
- package/website/versions/0.4.2/classes/TinyBig.html +156 -0
- package/website/versions/0.4.2/index.html +199 -0
- package/website/versions/0.4.2/interfaces/Block.html +1 -0
- package/website/versions/0.4.2/interfaces/Transaction.html +1 -0
- package/website/versions/0.4.2/modules.html +34 -0
- package/website/versions/0.4.3/.nojekyll +1 -0
- package/website/versions/0.4.3/assets/highlight.css +71 -0
- package/website/versions/0.4.3/assets/icons.css +1043 -0
- package/website/versions/0.4.3/assets/icons.png +0 -0
- package/website/versions/0.4.3/assets/icons@2x.png +0 -0
- package/website/versions/0.4.3/assets/main.js +52 -0
- package/website/versions/0.4.3/assets/search.js +1 -0
- package/website/versions/0.4.3/assets/style.css +1384 -0
- package/website/versions/0.4.3/assets/widgets.png +0 -0
- package/website/versions/0.4.3/assets/widgets@2x.png +0 -0
- package/website/versions/0.4.3/classes/Contract.html +15 -0
- package/website/versions/0.4.3/classes/JsonRpcProvider.html +8 -0
- package/website/versions/0.4.3/classes/TinyBig.html +159 -0
- package/website/versions/0.4.3/index.html +199 -0
- package/website/versions/0.4.3/interfaces/Block.html +1 -0
- package/website/versions/0.4.3/interfaces/Transaction.html +1 -0
- package/website/versions/0.4.3/modules.html +34 -0
- package/website/versions/0.4.6/.nojekyll +1 -0
- package/website/versions/0.4.6/assets/highlight.css +71 -0
- package/website/versions/0.4.6/assets/icons.css +1043 -0
- package/website/versions/0.4.6/assets/icons.png +0 -0
- package/website/versions/0.4.6/assets/icons@2x.png +0 -0
- package/website/versions/0.4.6/assets/main.js +52 -0
- package/website/versions/0.4.6/assets/search.js +1 -0
- package/website/versions/0.4.6/assets/style.css +1413 -0
- package/website/versions/0.4.6/assets/widgets.png +0 -0
- package/website/versions/0.4.6/assets/widgets@2x.png +0 -0
- package/website/versions/0.4.6/classes/Contract.html +15 -0
- package/website/versions/0.4.6/classes/JsonRpcProvider.html +8 -0
- package/website/versions/0.4.6/classes/TinyBig.html +159 -0
- package/website/versions/0.4.6/index.html +207 -0
- package/website/versions/0.4.6/interfaces/Block.html +1 -0
- package/website/versions/0.4.6/interfaces/Transaction.html +1 -0
- package/website/versions/0.4.6/modules.html +34 -0
- package/website/versions/0.4.8/.nojekyll +1 -0
- package/website/versions/0.4.8/assets/highlight.css +71 -0
- package/website/versions/0.4.8/assets/icons.css +1043 -0
- package/website/versions/0.4.8/assets/icons.png +0 -0
- package/website/versions/0.4.8/assets/icons@2x.png +0 -0
- package/website/versions/0.4.8/assets/main.js +52 -0
- package/website/versions/0.4.8/assets/search.js +1 -0
- package/website/versions/0.4.8/assets/style.css +1413 -0
- package/website/versions/0.4.8/assets/widgets.png +0 -0
- package/website/versions/0.4.8/assets/widgets@2x.png +0 -0
- package/website/versions/0.4.8/classes/Contract.html +15 -0
- package/website/versions/0.4.8/classes/JsonRpcProvider.html +8 -0
- package/website/versions/0.4.8/classes/TinyBig.html +161 -0
- package/website/versions/0.4.8/index.html +207 -0
- package/website/versions/0.4.8/interfaces/Block.html +1 -0
- package/website/versions/0.4.8/interfaces/Transaction.html +1 -0
- package/website/versions/0.4.8/modules.html +34 -0
- package/website/versions/0.4.9-beta.0/.nojekyll +1 -0
- package/website/versions/0.4.9-beta.0/assets/highlight.css +71 -0
- package/website/versions/0.4.9-beta.0/assets/icons.css +1043 -0
- package/website/versions/0.4.9-beta.0/assets/icons.png +0 -0
- package/website/versions/0.4.9-beta.0/assets/icons@2x.png +0 -0
- package/website/versions/0.4.9-beta.0/assets/main.js +52 -0
- package/website/versions/0.4.9-beta.0/assets/search.js +1 -0
- package/website/versions/0.4.9-beta.0/assets/style.css +1413 -0
- package/website/versions/0.4.9-beta.0/assets/widgets.png +0 -0
- package/website/versions/0.4.9-beta.0/assets/widgets@2x.png +0 -0
- package/website/versions/0.4.9-beta.0/classes/Contract.html +13 -0
- package/website/versions/0.4.9-beta.0/classes/JsonRpcProvider.html +8 -0
- package/website/versions/0.4.9-beta.0/classes/TinyBig.html +161 -0
- package/website/versions/0.4.9-beta.0/index.html +207 -0
- package/website/versions/0.4.9-beta.0/interfaces/Block.html +1 -0
- package/website/versions/0.4.9-beta.0/interfaces/JSONABIArgument.html +1 -0
- package/website/versions/0.4.9-beta.0/interfaces/Network.html +3 -0
- package/website/versions/0.4.9-beta.0/interfaces/Transaction.html +1 -0
- package/website/versions/0.4.9-beta.0/modules.html +32 -0
- package/website/versions/versions/0.1.2/assets/highlight.css +57 -0
- package/website/versions/versions/0.1.2/assets/icons.css +1043 -0
- package/website/versions/versions/0.1.2/assets/icons.png +0 -0
- package/website/versions/versions/0.1.2/assets/icons@2x.png +0 -0
- package/website/versions/versions/0.1.2/assets/main.js +52 -0
- package/website/versions/versions/0.1.2/assets/search.js +1 -0
- package/website/versions/versions/0.1.2/assets/style.css +1341 -0
- package/website/versions/versions/0.1.2/assets/widgets.png +0 -0
- package/website/versions/versions/0.1.2/assets/widgets@2x.png +0 -0
- package/website/versions/versions/0.1.2/classes/TinyBig.html +4 -0
- package/website/versions/versions/0.1.2/index.html +20 -0
- package/website/versions/versions/0.1.2/modules.html +23 -0
- package/website/versions/versions/0.1.3/assets/highlight.css +64 -0
- package/website/versions/versions/0.1.3/assets/icons.css +1043 -0
- package/website/versions/versions/0.1.3/assets/icons.png +0 -0
- package/website/versions/versions/0.1.3/assets/icons@2x.png +0 -0
- package/website/versions/versions/0.1.3/assets/main.js +52 -0
- package/website/versions/versions/0.1.3/assets/search.js +1 -0
- package/website/versions/versions/0.1.3/assets/style.css +1341 -0
- package/website/versions/versions/0.1.3/assets/widgets.png +0 -0
- package/website/versions/versions/0.1.3/assets/widgets@2x.png +0 -0
- package/website/versions/versions/0.1.3/classes/TinyBig.html +4 -0
- package/website/versions/versions/0.1.3/index.html +53 -0
- package/website/versions/versions/0.1.3/modules.html +23 -0
- package/website/versions/versions/0.1.4/assets/highlight.css +64 -0
- package/website/versions/versions/0.1.4/assets/icons.css +1043 -0
- package/website/versions/versions/0.1.4/assets/icons.png +0 -0
- package/website/versions/versions/0.1.4/assets/icons@2x.png +0 -0
- package/website/versions/versions/0.1.4/assets/main.js +52 -0
- package/website/versions/versions/0.1.4/assets/search.js +1 -0
- package/website/versions/versions/0.1.4/assets/style.css +1341 -0
- package/website/versions/versions/0.1.4/assets/widgets.png +0 -0
- package/website/versions/versions/0.1.4/assets/widgets@2x.png +0 -0
- package/website/versions/versions/0.1.4/classes/TinyBig.html +4 -0
- package/website/versions/versions/0.1.4/index.html +58 -0
- package/website/versions/versions/0.1.4/modules.html +23 -0
- package/lib/cjs/classes/Contract.d.ts +0 -72
- package/lib/cjs/classes/Contract.js +0 -126
- package/lib/cjs/classes/test/Contract/crv-abi.d.ts +0 -2
- package/lib/cjs/classes/test/Contract/crv-abi.js +0 -488
- package/lib/cjs/classes/test/Contract/ens-abi.d.ts +0 -2
- package/lib/cjs/classes/test/Contract/ens-abi.js +0 -453
- package/lib/cjs/classes/test/Contract/fei-abi.d.ts +0 -2
- package/lib/cjs/classes/test/Contract/fei-abi.js +0 -526
- package/lib/cjs/classes/test/Contract/foo-abi.d.ts +0 -2
- package/lib/cjs/classes/test/Contract/foo-abi.js +0 -42
- package/lib/cjs/classes/test/Contract/uniswap-abi.d.ts +0 -2
- package/lib/cjs/classes/test/Contract/uniswap-abi.js +0 -121
- package/lib/cjs/classes/utils/clean-block.d.ts +0 -6
- package/lib/cjs/classes/utils/clean-block.js +0 -46
- package/lib/cjs/classes/utils/clean-transaction.d.ts +0 -5
- package/lib/cjs/classes/utils/clean-transaction.js +0 -38
- package/lib/cjs/classes/utils/encode-decode-transaction.d.ts +0 -3
- package/lib/cjs/classes/utils/encode-decode-transaction.js +0 -113
- package/lib/cjs/classes/utils/fetchers.d.ts +0 -9
- package/lib/cjs/classes/utils/fetchers.js +0 -33
- package/lib/cjs/classes/utils/hex-to-decimal.js +0 -11
- package/lib/cjs/index.d.ts +0 -12
- package/lib/cjs/index.js +0 -19
- package/lib/cjs/providers/JsonRpcProvider.d.ts +0 -22
- package/lib/cjs/providers/JsonRpcProvider.js +0 -69
- package/lib/cjs/providers/utils/chains-info.d.ts +0 -338
- package/lib/cjs/providers/utils/chains-info.js +0 -1015
- package/lib/cjs/shared/tiny-big/helpers.d.ts +0 -1
- package/lib/cjs/shared/tiny-big/helpers.js +0 -71
- package/lib/cjs/shared/tiny-big/tiny-big.d.ts +0 -19
- package/lib/cjs/shared/tiny-big/tiny-big.js +0 -41
- package/lib/cjs/shared/validate-type.d.ts +0 -3
- package/lib/cjs/shared/validate-type.js +0 -9
- package/lib/cjs/types/Block.types.d.ts +0 -47
- package/lib/cjs/types/Block.types.js +0 -2
- package/lib/cjs/types/Contract.types.d.ts +0 -24
- package/lib/cjs/types/Contract.types.js +0 -2
- package/lib/cjs/types/Network.types.d.ts +0 -8
- package/lib/cjs/types/Network.types.js +0 -2
- package/lib/cjs/types/Transaction.types.d.ts +0 -34
- package/lib/cjs/types/Transaction.types.js +0 -2
- package/lib/cjs/utils/ether-to-wei.js +0 -32
- package/lib/cjs/utils/is-address.d.ts +0 -5
- package/lib/cjs/utils/is-address.js +0 -20
- package/lib/cjs/utils/to-checksum-address.d.ts +0 -17
- package/lib/cjs/utils/to-checksum-address.js +0 -46
- package/lib/cjs/utils/wei-to-ether.js +0 -34
- package/lib/esm/classes/Contract.d.ts +0 -12
- package/lib/esm/classes/Contract.js +0 -63
- package/lib/esm/classes/test/Contract/crv-abi.d.ts +0 -2
- package/lib/esm/classes/test/Contract/crv-abi.js +0 -470
- package/lib/esm/classes/test/Contract/ens-abi.d.ts +0 -2
- package/lib/esm/classes/test/Contract/ens-abi.js +0 -435
- package/lib/esm/classes/test/Contract/fei-abi.d.ts +0 -2
- package/lib/esm/classes/test/Contract/fei-abi.js +0 -521
- package/lib/esm/classes/test/Contract/foo-abi.d.ts +0 -2
- package/lib/esm/classes/test/Contract/foo-abi.js +0 -33
- package/lib/esm/classes/test/Contract/uniswap-abi.d.ts +0 -2
- package/lib/esm/classes/test/Contract/uniswap-abi.js +0 -116
- package/lib/esm/classes/utils/clean-block.d.ts +0 -3
- package/lib/esm/classes/utils/clean-block.js +0 -35
- package/lib/esm/classes/utils/clean-transaction.d.ts +0 -2
- package/lib/esm/classes/utils/clean-transaction.js +0 -29
- package/lib/esm/classes/utils/encode-decode-transaction.d.ts +0 -3
- package/lib/esm/classes/utils/encode-decode-transaction.js +0 -98
- package/lib/esm/classes/utils/fetchers.d.ts +0 -9
- package/lib/esm/classes/utils/fetchers.js +0 -25
- package/lib/esm/classes/utils/hex-to-decimal.d.ts +0 -1
- package/lib/esm/classes/utils/hex-to-decimal.js +0 -3
- package/lib/esm/index.d.ts +0 -12
- package/lib/esm/index.js +0 -8
- package/lib/esm/providers/JsonRpcProvider.d.ts +0 -9
- package/lib/esm/providers/JsonRpcProvider.js +0 -49
- package/lib/esm/providers/utils/chains-info.d.ts +0 -338
- package/lib/esm/providers/utils/chains-info.js +0 -1011
- package/lib/esm/shared/tiny-big/helpers.d.ts +0 -1
- package/lib/esm/shared/tiny-big/helpers.js +0 -58
- package/lib/esm/shared/tiny-big/tiny-big.d.ts +0 -8
- package/lib/esm/shared/tiny-big/tiny-big.js +0 -22
- package/lib/esm/shared/validate-type.d.ts +0 -3
- package/lib/esm/shared/validate-type.js +0 -5
- package/lib/esm/types/Block.types.d.ts +0 -47
- package/lib/esm/types/Block.types.js +0 -1
- package/lib/esm/types/Contract.types.d.ts +0 -24
- package/lib/esm/types/Contract.types.js +0 -1
- package/lib/esm/types/Network.types.d.ts +0 -5
- package/lib/esm/types/Network.types.js +0 -1
- package/lib/esm/types/Transaction.types.d.ts +0 -34
- package/lib/esm/types/Transaction.types.js +0 -1
- package/lib/esm/utils/ether-to-wei.d.ts +0 -3
- package/lib/esm/utils/ether-to-wei.js +0 -7
- package/lib/esm/utils/is-address.d.ts +0 -1
- package/lib/esm/utils/is-address.js +0 -12
- package/lib/esm/utils/to-checksum-address.d.ts +0 -1
- package/lib/esm/utils/to-checksum-address.js +0 -25
- package/lib/esm/utils/wei-to-ether.d.ts +0 -3
- package/lib/esm/utils/wei-to-ether.js +0 -7
|
@@ -1,338 +0,0 @@
|
|
|
1
|
-
declare const _default: {
|
|
2
|
-
"1": string[];
|
|
3
|
-
"2": string[];
|
|
4
|
-
"3": string[];
|
|
5
|
-
"4": string[];
|
|
6
|
-
"5": string[];
|
|
7
|
-
"6": string[];
|
|
8
|
-
"7": string[];
|
|
9
|
-
"8": string[];
|
|
10
|
-
"9": string[];
|
|
11
|
-
"10": string[];
|
|
12
|
-
"11": string[];
|
|
13
|
-
"12": string[];
|
|
14
|
-
"13": string[];
|
|
15
|
-
"14": string[];
|
|
16
|
-
"15": string[];
|
|
17
|
-
"16": string[];
|
|
18
|
-
"17": string[];
|
|
19
|
-
"18": string[];
|
|
20
|
-
"19": string[];
|
|
21
|
-
"20": string[];
|
|
22
|
-
"21": string[];
|
|
23
|
-
"22": string[];
|
|
24
|
-
"23": string[];
|
|
25
|
-
"24": string[];
|
|
26
|
-
"25": string[];
|
|
27
|
-
"26": string[];
|
|
28
|
-
"27": string[];
|
|
29
|
-
"28": string[];
|
|
30
|
-
"29": string[];
|
|
31
|
-
"30": string[];
|
|
32
|
-
"31": string[];
|
|
33
|
-
"32": string[];
|
|
34
|
-
"33": string[];
|
|
35
|
-
"34": string[];
|
|
36
|
-
"35": string[];
|
|
37
|
-
"38": string[];
|
|
38
|
-
"40": string[];
|
|
39
|
-
"41": string[];
|
|
40
|
-
"42": string[];
|
|
41
|
-
"43": string[];
|
|
42
|
-
"44": string[];
|
|
43
|
-
"45": string[];
|
|
44
|
-
"50": string[];
|
|
45
|
-
"51": string[];
|
|
46
|
-
"52": string[];
|
|
47
|
-
"53": string[];
|
|
48
|
-
"55": string[];
|
|
49
|
-
"56": string[];
|
|
50
|
-
"57": string[];
|
|
51
|
-
"58": string[];
|
|
52
|
-
"59": string[];
|
|
53
|
-
"60": string[];
|
|
54
|
-
"61": string[];
|
|
55
|
-
"62": string[];
|
|
56
|
-
"63": string[];
|
|
57
|
-
"64": string[];
|
|
58
|
-
"65": string[];
|
|
59
|
-
"66": string[];
|
|
60
|
-
"67": string[];
|
|
61
|
-
"68": string[];
|
|
62
|
-
"69": string[];
|
|
63
|
-
"71": string[];
|
|
64
|
-
"74": string[];
|
|
65
|
-
"76": string[];
|
|
66
|
-
"77": string[];
|
|
67
|
-
"78": string[];
|
|
68
|
-
"80": string[];
|
|
69
|
-
"82": string[];
|
|
70
|
-
"83": string[];
|
|
71
|
-
"85": string[];
|
|
72
|
-
"86": string[];
|
|
73
|
-
"87": string[];
|
|
74
|
-
"88": string[];
|
|
75
|
-
"89": string[];
|
|
76
|
-
"90": string[];
|
|
77
|
-
"91": string[];
|
|
78
|
-
"92": string[];
|
|
79
|
-
"93": string[];
|
|
80
|
-
"95": string[];
|
|
81
|
-
"96": string[];
|
|
82
|
-
"97": string[];
|
|
83
|
-
"99": string[];
|
|
84
|
-
"100": string[];
|
|
85
|
-
"101": string[];
|
|
86
|
-
"102": string[];
|
|
87
|
-
"106": string[];
|
|
88
|
-
"107": string[];
|
|
89
|
-
"108": string[];
|
|
90
|
-
"110": string[];
|
|
91
|
-
"111": string[];
|
|
92
|
-
"122": string[];
|
|
93
|
-
"123": string[];
|
|
94
|
-
"124": string[];
|
|
95
|
-
"125": string[];
|
|
96
|
-
"126": string[];
|
|
97
|
-
"127": string[];
|
|
98
|
-
"128": string[];
|
|
99
|
-
"137": string[];
|
|
100
|
-
"142": string[];
|
|
101
|
-
"162": string[];
|
|
102
|
-
"163": string[];
|
|
103
|
-
"170": string[];
|
|
104
|
-
"172": string[];
|
|
105
|
-
"186": string[];
|
|
106
|
-
"188": string[];
|
|
107
|
-
"189": string[];
|
|
108
|
-
"199": string[];
|
|
109
|
-
"200": string[];
|
|
110
|
-
"211": string[];
|
|
111
|
-
"222": string[];
|
|
112
|
-
"246": string[];
|
|
113
|
-
"250": string[];
|
|
114
|
-
"256": string[];
|
|
115
|
-
"262": string[];
|
|
116
|
-
"269": string[];
|
|
117
|
-
"288": string[];
|
|
118
|
-
"321": string[];
|
|
119
|
-
"322": string[];
|
|
120
|
-
"333": string[];
|
|
121
|
-
"336": string[];
|
|
122
|
-
"338": string[];
|
|
123
|
-
"361": string[];
|
|
124
|
-
"363": string[];
|
|
125
|
-
"364": string[];
|
|
126
|
-
"365": string[];
|
|
127
|
-
"369": string[];
|
|
128
|
-
"385": string[];
|
|
129
|
-
"420": string[];
|
|
130
|
-
"499": string[];
|
|
131
|
-
"555": string[];
|
|
132
|
-
"558": string[];
|
|
133
|
-
"588": string[];
|
|
134
|
-
"595": string[];
|
|
135
|
-
"600": string[];
|
|
136
|
-
"666": string[];
|
|
137
|
-
"686": string[];
|
|
138
|
-
"707": string[];
|
|
139
|
-
"708": string[];
|
|
140
|
-
"721": string[];
|
|
141
|
-
"777": string[];
|
|
142
|
-
"787": string[];
|
|
143
|
-
"803": string[];
|
|
144
|
-
"820": string[];
|
|
145
|
-
"821": string[];
|
|
146
|
-
"880": string[];
|
|
147
|
-
"888": string[];
|
|
148
|
-
"900": string[];
|
|
149
|
-
"901": string[];
|
|
150
|
-
"902": string[];
|
|
151
|
-
"903": string[];
|
|
152
|
-
"940": string[];
|
|
153
|
-
"977": string[];
|
|
154
|
-
"998": string[];
|
|
155
|
-
"999": string[];
|
|
156
|
-
"1001": string[];
|
|
157
|
-
"1007": string[];
|
|
158
|
-
"1010": string[];
|
|
159
|
-
"1012": string[];
|
|
160
|
-
"1022": string[];
|
|
161
|
-
"1023": string[];
|
|
162
|
-
"1024": string[];
|
|
163
|
-
"1028": string[];
|
|
164
|
-
"1030": string[];
|
|
165
|
-
"1088": string[];
|
|
166
|
-
"1139": string[];
|
|
167
|
-
"1140": string[];
|
|
168
|
-
"1197": string[];
|
|
169
|
-
"1202": string[];
|
|
170
|
-
"1213": string[];
|
|
171
|
-
"1214": string[];
|
|
172
|
-
"1280": string[];
|
|
173
|
-
"1284": string[];
|
|
174
|
-
"1285": string[];
|
|
175
|
-
"1287": string[];
|
|
176
|
-
"1288": string[];
|
|
177
|
-
"1618": string[];
|
|
178
|
-
"1620": string[];
|
|
179
|
-
"1657": string[];
|
|
180
|
-
"1856": string[];
|
|
181
|
-
"1987": string[];
|
|
182
|
-
"2020": string[];
|
|
183
|
-
"2021": string[];
|
|
184
|
-
"2022": string[];
|
|
185
|
-
"2025": string[];
|
|
186
|
-
"2100": string[];
|
|
187
|
-
"2101": string[];
|
|
188
|
-
"2559": string[];
|
|
189
|
-
"3331": string[];
|
|
190
|
-
"3333": string[];
|
|
191
|
-
"3690": string[];
|
|
192
|
-
"4002": string[];
|
|
193
|
-
"4689": string[];
|
|
194
|
-
"4690": string[];
|
|
195
|
-
"5197": string[];
|
|
196
|
-
"5315": string[];
|
|
197
|
-
"5700": string[];
|
|
198
|
-
"5851": string[];
|
|
199
|
-
"5869": string[];
|
|
200
|
-
"6626": string[];
|
|
201
|
-
"7341": string[];
|
|
202
|
-
"7878": string[];
|
|
203
|
-
"8000": string[];
|
|
204
|
-
"8001": string[];
|
|
205
|
-
"8029": string[];
|
|
206
|
-
"8080": string[];
|
|
207
|
-
"8217": string[];
|
|
208
|
-
"8285": string[];
|
|
209
|
-
"8723": string[];
|
|
210
|
-
"8724": string[];
|
|
211
|
-
"8888": string[];
|
|
212
|
-
"8995": string[];
|
|
213
|
-
"9000": string[];
|
|
214
|
-
"9001": string[];
|
|
215
|
-
"9100": string[];
|
|
216
|
-
"9527": string[];
|
|
217
|
-
"9999": string[];
|
|
218
|
-
"10000": string[];
|
|
219
|
-
"10001": string[];
|
|
220
|
-
"10101": string[];
|
|
221
|
-
"11111": string[];
|
|
222
|
-
"11437": string[];
|
|
223
|
-
"12051": string[];
|
|
224
|
-
"12052": string[];
|
|
225
|
-
"13381": string[];
|
|
226
|
-
"16000": string[];
|
|
227
|
-
"16001": string[];
|
|
228
|
-
"19845": string[];
|
|
229
|
-
"24484": string[];
|
|
230
|
-
"24734": string[];
|
|
231
|
-
"31102": string[];
|
|
232
|
-
"31337": string[];
|
|
233
|
-
"32659": string[];
|
|
234
|
-
"39797": string[];
|
|
235
|
-
"42069": string[];
|
|
236
|
-
"42161": string[];
|
|
237
|
-
"42220": string[];
|
|
238
|
-
"42261": string[];
|
|
239
|
-
"42262": string[];
|
|
240
|
-
"43110": string[];
|
|
241
|
-
"43113": string[];
|
|
242
|
-
"43114": string[];
|
|
243
|
-
"44787": string[];
|
|
244
|
-
"47805": string[];
|
|
245
|
-
"49797": string[];
|
|
246
|
-
"55555": string[];
|
|
247
|
-
"55556": string[];
|
|
248
|
-
"60000": string[];
|
|
249
|
-
"60001": string[];
|
|
250
|
-
"60002": string[];
|
|
251
|
-
"60103": string[];
|
|
252
|
-
"62320": string[];
|
|
253
|
-
"63000": string[];
|
|
254
|
-
"63001": string[];
|
|
255
|
-
"70000": string[];
|
|
256
|
-
"70001": string[];
|
|
257
|
-
"70002": string[];
|
|
258
|
-
"70103": string[];
|
|
259
|
-
"71393": string[];
|
|
260
|
-
"73799": string[];
|
|
261
|
-
"78110": string[];
|
|
262
|
-
"80001": string[];
|
|
263
|
-
"99998": string[];
|
|
264
|
-
"99999": string[];
|
|
265
|
-
"100000": string[];
|
|
266
|
-
"100001": string[];
|
|
267
|
-
"100002": string[];
|
|
268
|
-
"100003": string[];
|
|
269
|
-
"100004": string[];
|
|
270
|
-
"100005": string[];
|
|
271
|
-
"100006": string[];
|
|
272
|
-
"100007": string[];
|
|
273
|
-
"100008": string[];
|
|
274
|
-
"108801": string[];
|
|
275
|
-
"110000": string[];
|
|
276
|
-
"110001": string[];
|
|
277
|
-
"110002": string[];
|
|
278
|
-
"110003": string[];
|
|
279
|
-
"110004": string[];
|
|
280
|
-
"110005": string[];
|
|
281
|
-
"110006": string[];
|
|
282
|
-
"110007": string[];
|
|
283
|
-
"110008": string[];
|
|
284
|
-
"200625": string[];
|
|
285
|
-
"201018": string[];
|
|
286
|
-
"201030": string[];
|
|
287
|
-
"210309": string[];
|
|
288
|
-
"210425": string[];
|
|
289
|
-
"246529": string[];
|
|
290
|
-
"246785": string[];
|
|
291
|
-
"281121": string[];
|
|
292
|
-
"333888": string[];
|
|
293
|
-
"333999": string[];
|
|
294
|
-
"421611": string[];
|
|
295
|
-
"666666": string[];
|
|
296
|
-
"888888": string[];
|
|
297
|
-
"955305": string[];
|
|
298
|
-
"1313114": string[];
|
|
299
|
-
"1313500": string[];
|
|
300
|
-
"1337702": string[];
|
|
301
|
-
"7762959": string[];
|
|
302
|
-
"11155111": string[];
|
|
303
|
-
"13371337": string[];
|
|
304
|
-
"18289463": string[];
|
|
305
|
-
"20181205": string[];
|
|
306
|
-
"28945486": string[];
|
|
307
|
-
"35855456": string[];
|
|
308
|
-
"61717561": string[];
|
|
309
|
-
"99415706": string[];
|
|
310
|
-
"192837465": string[];
|
|
311
|
-
"245022926": string[];
|
|
312
|
-
"245022934": string[];
|
|
313
|
-
"245022940": string[];
|
|
314
|
-
"311752642": string[];
|
|
315
|
-
"356256156": string[];
|
|
316
|
-
"486217935": string[];
|
|
317
|
-
"1122334455": string[];
|
|
318
|
-
"1313161554": string[];
|
|
319
|
-
"1313161555": string[];
|
|
320
|
-
"1313161556": string[];
|
|
321
|
-
"1666600000": string[];
|
|
322
|
-
"1666600001": string[];
|
|
323
|
-
"1666600002": string[];
|
|
324
|
-
"1666600003": string[];
|
|
325
|
-
"1666700000": string[];
|
|
326
|
-
"1666700001": string[];
|
|
327
|
-
"1666700002": string[];
|
|
328
|
-
"1666700003": string[];
|
|
329
|
-
"2021121117": string[];
|
|
330
|
-
"3125659152": string[];
|
|
331
|
-
"4216137055": string[];
|
|
332
|
-
"11297108099": string[];
|
|
333
|
-
"11297108109": string[];
|
|
334
|
-
"197710212030": string[];
|
|
335
|
-
"197710212031": string[];
|
|
336
|
-
"6022140761023": string[];
|
|
337
|
-
};
|
|
338
|
-
export default _default;
|