├── .babelrc ├── .editorconfig ├── .env.example ├── .eslintignore ├── .eslintrc.js ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .mocharc.js ├── .nvmrc ├── .prettierignore ├── .prettierrc ├── .storybook ├── main.js ├── manager.js ├── preview.js ├── theme.js └── utils.ts ├── .vscode ├── css-custom-data.json ├── extensions.json └── settings.json ├── LICENSE ├── README.md ├── cypress.config.ts ├── docs ├── MOCHA_REACT_BUG.md └── images │ └── deth-tools.svg ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages ├── __snapshots__ │ └── event-decoder.test.snap ├── _app.page.tsx ├── base-conversion │ ├── base-conversion.test.tsx │ └── index.page.tsx ├── calldata-decoder │ ├── calldata-decoder.test.tsx │ └── index.page.tsx ├── constructor-encoder │ ├── constructor-encoder.test.tsx │ └── index.page.tsx ├── eth-unit-conversion │ ├── eth-unit-conversion.test.tsx │ └── index.page.tsx ├── event-decoder │ ├── event-decoder.test.tsx │ └── index.page.tsx ├── fixtures │ ├── abiForToggleTest.ts │ ├── hreAbi.ts │ └── jsonAbi.ts ├── index.page.tsx ├── string-bytes32-conversion │ ├── index.page.tsx │ └── string-bytes32-conversion.test.tsx ├── token-unit-conversion │ ├── index.page.tsx │ └── token-unit-conversion.test.tsx ├── tx-decoder │ ├── index.page.tsx │ └── tx-decoder.test.tsx ├── unix-epoch-utc-conversion │ ├── index.page.tsx │ └── unix-epoch-utc-conversion.test.tsx └── vanity-address-generator │ ├── index.page.tsx │ └── vanity-address-generator.test.tsx ├── postcss.config.js ├── public └── favicon.ico ├── raf.js ├── src ├── components │ ├── ConversionInput.tsx │ ├── CopyableConversionInput.tsx │ ├── CurrentEpochTime.tsx │ ├── DecimalCombobox.tsx │ ├── DecodedCalldataTree.tsx │ ├── FormLabel.tsx │ ├── InputWithPredefinedValues.tsx │ ├── Logo.tsx │ ├── MyLink.tsx │ ├── Navigation.tsx │ ├── NavigationSocial.tsx │ ├── Spinner.tsx │ ├── Tips │ │ ├── Tips.tsx │ │ ├── calculatorTips.ts │ │ └── index.tsx │ ├── ToolContainer.tsx │ ├── ToolTree.tsx │ ├── icons │ │ ├── AddressIcon.tsx │ │ ├── BugIcon.tsx │ │ ├── CalculatorIcon.tsx │ │ ├── CopyIcon.tsx │ │ ├── Currency.tsx │ │ ├── DecodersIcon.tsx │ │ ├── DethToolsLogo.tsx │ │ ├── DiscordIcon.tsx │ │ ├── DownIcon.tsx │ │ ├── EncodersIcon.tsx │ │ ├── GeneratorIcon.tsx │ │ ├── GithubIcon.tsx │ │ ├── HamburgerIcon.tsx │ │ ├── LighbulbIcon.tsx │ │ ├── MinusIcon.tsx │ │ ├── OkIcon.tsx │ │ ├── OthersIcon.tsx │ │ ├── PlusIcon.tsx │ │ ├── SettingsIcon.tsx │ │ ├── TwitterIcon.tsx │ │ └── UpIcon.tsx │ └── lib │ │ ├── AbiSourceTabs │ │ ├── AbiSourceTabs.stories.tsx │ │ ├── AbiSourceTabs.tsx │ │ └── index.ts │ │ ├── Button │ │ ├── Button.stories.tsx │ │ ├── Button.tsx │ │ └── index.tsx │ │ ├── DisclosureArrow │ │ └── index.tsx │ │ ├── Entity │ │ ├── Entity.stories.tsx │ │ ├── Entity.tsx │ │ └── index.tsx │ │ ├── Header │ │ ├── Header.stories.tsx │ │ ├── Header.tsx │ │ └── index.ts │ │ ├── Input │ │ ├── Input.stories.tsx │ │ ├── Input.tsx │ │ └── index.tsx │ │ ├── LoadingEntity │ │ ├── LoadingEntity.stories.tsx │ │ ├── LoadingEntity.tsx │ │ └── index.tsx │ │ ├── NodeBlock │ │ ├── NodeBlock.stories.tsx │ │ ├── NodeBlock.tsx │ │ └── index.ts │ │ ├── TextArea │ │ ├── TextArea.stories.tsx │ │ ├── TextArea.tsx │ │ └── index.ts │ │ └── Toggle │ │ ├── Toggle.stories.tsx │ │ ├── Toggle.tsx │ │ └── index.tsx ├── globals.css ├── hooks │ └── useToggle.tsx ├── layout │ └── README.md ├── lib │ ├── __snapshots__ │ │ ├── decodeEvent.test.snap │ │ └── decodeTx.test.snap │ ├── bufferToHexString.test.ts │ ├── bufferToHexString.ts │ ├── capitalizeFirstLetter.ts │ ├── convertBase.test.ts │ ├── convertBase.ts │ ├── convertBaseProperties.ts │ ├── convertProperties.ts │ ├── convertUnits.test.ts │ ├── convertUnits.ts │ ├── convertUnixEpochToUtc.test.ts │ ├── convertUnixEpochToUtc.ts │ ├── convertUtcProperties.ts │ ├── convertUtcToUnixEpoch.test.ts │ ├── convertUtcToUnixEpoch.ts │ ├── currentEpochTime.ts │ ├── decodeBySigHash.test.ts │ ├── decodeBySigHash.ts │ ├── decodeCalldata.test.ts │ ├── decodeCalldata.ts │ ├── decodeEvent.test.ts │ ├── decodeEvent.ts │ ├── decodeHex.test.ts │ ├── decodeHex.ts │ ├── decodeTx.test.ts │ ├── decodeTx.ts │ ├── encodeConstructor.test.ts │ ├── encodeContructor.ts │ ├── fixtures │ │ └── sigHashResponse.ts │ ├── parseAbi.test.ts │ ├── parseAbi.ts │ ├── stringBytes32Conversion │ │ ├── convertBytes32ToString.ts │ │ ├── convertStringToBytes32.ts │ │ └── types.d.ts │ ├── toEvenHex.test.ts │ ├── toEvenHex.ts │ └── vanity-address │ │ ├── index.ts │ │ ├── vanity-address-parallel.ts │ │ ├── vanity-address.test.ts │ │ ├── vanity-address.ts │ │ └── worker.ts ├── misc │ ├── assert.ts │ ├── combinations.test.ts │ ├── combinations.ts │ ├── constrain.ts │ ├── handleChangeValidated.ts │ ├── parseEthersErrorMessage.ts │ ├── stringToNumber.ts │ ├── toDefaultValues.test.ts │ ├── toDefaultValues.ts │ ├── types.d.ts │ ├── unsafeEntries.ts │ ├── validation │ │ ├── schemas │ │ │ ├── binarySchema.ts │ │ │ ├── decimalSchema.ts │ │ │ ├── hexSchema.ts │ │ │ ├── octalSchema.ts │ │ │ ├── stringSchema.ts │ │ │ ├── unitSchema.ts │ │ │ ├── unixEpochSchema.ts │ │ │ └── utcSchemas.ts │ │ └── validators │ │ │ ├── abiValidator.ts │ │ │ ├── hexValidator.ts │ │ │ ├── numberValidator.ts │ │ │ ├── result.d.ts │ │ │ └── stringValiator.ts │ └── zodResultMessage.ts └── types │ └── util.d.ts ├── tailwind.config.js ├── test ├── configure.ts ├── e2e │ ├── e2e.cy.ts │ └── e2e.helpers.ts ├── helpers │ └── changeTargetValue.ts ├── require-extensions.ts └── unexpectedCall.ts ├── tsconfig.json └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/.gitignore -------------------------------------------------------------------------------- /.mocharc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/.mocharc.js -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v14.19.0 -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | package.json 2 | **/build/** 3 | CHANGELOG.md 4 | .next 5 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/.prettierrc -------------------------------------------------------------------------------- /.storybook/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/.storybook/main.js -------------------------------------------------------------------------------- /.storybook/manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/.storybook/manager.js -------------------------------------------------------------------------------- /.storybook/preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/.storybook/preview.js -------------------------------------------------------------------------------- /.storybook/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/.storybook/theme.js -------------------------------------------------------------------------------- /.storybook/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/.storybook/utils.ts -------------------------------------------------------------------------------- /.vscode/css-custom-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/.vscode/css-custom-data.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["bradlc.vscode-tailwindcss"] 3 | } 4 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/README.md -------------------------------------------------------------------------------- /cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/cypress.config.ts -------------------------------------------------------------------------------- /docs/MOCHA_REACT_BUG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/docs/MOCHA_REACT_BUG.md -------------------------------------------------------------------------------- /docs/images/deth-tools.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/docs/images/deth-tools.svg -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/package.json -------------------------------------------------------------------------------- /pages/__snapshots__/event-decoder.test.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/pages/__snapshots__/event-decoder.test.snap -------------------------------------------------------------------------------- /pages/_app.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/pages/_app.page.tsx -------------------------------------------------------------------------------- /pages/base-conversion/base-conversion.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/pages/base-conversion/base-conversion.test.tsx -------------------------------------------------------------------------------- /pages/base-conversion/index.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/pages/base-conversion/index.page.tsx -------------------------------------------------------------------------------- /pages/calldata-decoder/calldata-decoder.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/pages/calldata-decoder/calldata-decoder.test.tsx -------------------------------------------------------------------------------- /pages/calldata-decoder/index.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/pages/calldata-decoder/index.page.tsx -------------------------------------------------------------------------------- /pages/constructor-encoder/constructor-encoder.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/pages/constructor-encoder/constructor-encoder.test.tsx -------------------------------------------------------------------------------- /pages/constructor-encoder/index.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/pages/constructor-encoder/index.page.tsx -------------------------------------------------------------------------------- /pages/eth-unit-conversion/eth-unit-conversion.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/pages/eth-unit-conversion/eth-unit-conversion.test.tsx -------------------------------------------------------------------------------- /pages/eth-unit-conversion/index.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/pages/eth-unit-conversion/index.page.tsx -------------------------------------------------------------------------------- /pages/event-decoder/event-decoder.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/pages/event-decoder/event-decoder.test.tsx -------------------------------------------------------------------------------- /pages/event-decoder/index.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/pages/event-decoder/index.page.tsx -------------------------------------------------------------------------------- /pages/fixtures/abiForToggleTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/pages/fixtures/abiForToggleTest.ts -------------------------------------------------------------------------------- /pages/fixtures/hreAbi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/pages/fixtures/hreAbi.ts -------------------------------------------------------------------------------- /pages/fixtures/jsonAbi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/pages/fixtures/jsonAbi.ts -------------------------------------------------------------------------------- /pages/index.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/pages/index.page.tsx -------------------------------------------------------------------------------- /pages/string-bytes32-conversion/index.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/pages/string-bytes32-conversion/index.page.tsx -------------------------------------------------------------------------------- /pages/string-bytes32-conversion/string-bytes32-conversion.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/pages/string-bytes32-conversion/string-bytes32-conversion.test.tsx -------------------------------------------------------------------------------- /pages/token-unit-conversion/index.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/pages/token-unit-conversion/index.page.tsx -------------------------------------------------------------------------------- /pages/token-unit-conversion/token-unit-conversion.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/pages/token-unit-conversion/token-unit-conversion.test.tsx -------------------------------------------------------------------------------- /pages/tx-decoder/index.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/pages/tx-decoder/index.page.tsx -------------------------------------------------------------------------------- /pages/tx-decoder/tx-decoder.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/pages/tx-decoder/tx-decoder.test.tsx -------------------------------------------------------------------------------- /pages/unix-epoch-utc-conversion/index.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/pages/unix-epoch-utc-conversion/index.page.tsx -------------------------------------------------------------------------------- /pages/unix-epoch-utc-conversion/unix-epoch-utc-conversion.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/pages/unix-epoch-utc-conversion/unix-epoch-utc-conversion.test.tsx -------------------------------------------------------------------------------- /pages/vanity-address-generator/index.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/pages/vanity-address-generator/index.page.tsx -------------------------------------------------------------------------------- /pages/vanity-address-generator/vanity-address-generator.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/pages/vanity-address-generator/vanity-address-generator.test.tsx -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /raf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/raf.js -------------------------------------------------------------------------------- /src/components/ConversionInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/components/ConversionInput.tsx -------------------------------------------------------------------------------- /src/components/CopyableConversionInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/components/CopyableConversionInput.tsx -------------------------------------------------------------------------------- /src/components/CurrentEpochTime.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/components/CurrentEpochTime.tsx -------------------------------------------------------------------------------- /src/components/DecimalCombobox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/components/DecimalCombobox.tsx -------------------------------------------------------------------------------- /src/components/DecodedCalldataTree.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/components/DecodedCalldataTree.tsx -------------------------------------------------------------------------------- /src/components/FormLabel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/components/FormLabel.tsx -------------------------------------------------------------------------------- /src/components/InputWithPredefinedValues.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/components/InputWithPredefinedValues.tsx -------------------------------------------------------------------------------- /src/components/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/components/Logo.tsx -------------------------------------------------------------------------------- /src/components/MyLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/components/MyLink.tsx -------------------------------------------------------------------------------- /src/components/Navigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/components/Navigation.tsx -------------------------------------------------------------------------------- /src/components/NavigationSocial.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/components/NavigationSocial.tsx -------------------------------------------------------------------------------- /src/components/Spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/components/Spinner.tsx -------------------------------------------------------------------------------- /src/components/Tips/Tips.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/components/Tips/Tips.tsx -------------------------------------------------------------------------------- /src/components/Tips/calculatorTips.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/components/Tips/calculatorTips.ts -------------------------------------------------------------------------------- /src/components/Tips/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/components/Tips/index.tsx -------------------------------------------------------------------------------- /src/components/ToolContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/components/ToolContainer.tsx -------------------------------------------------------------------------------- /src/components/ToolTree.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/components/ToolTree.tsx -------------------------------------------------------------------------------- /src/components/icons/AddressIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/components/icons/AddressIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/BugIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/components/icons/BugIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/CalculatorIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/components/icons/CalculatorIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/CopyIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/components/icons/CopyIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/Currency.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/components/icons/Currency.tsx -------------------------------------------------------------------------------- /src/components/icons/DecodersIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/components/icons/DecodersIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/DethToolsLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/components/icons/DethToolsLogo.tsx -------------------------------------------------------------------------------- /src/components/icons/DiscordIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/components/icons/DiscordIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/DownIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/components/icons/DownIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/EncodersIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/components/icons/EncodersIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/GeneratorIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/components/icons/GeneratorIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/GithubIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/components/icons/GithubIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/HamburgerIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/components/icons/HamburgerIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/LighbulbIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/components/icons/LighbulbIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/MinusIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/components/icons/MinusIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/OkIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/components/icons/OkIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/OthersIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/components/icons/OthersIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/PlusIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/components/icons/PlusIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/SettingsIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/components/icons/SettingsIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/TwitterIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/components/icons/TwitterIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/UpIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/components/icons/UpIcon.tsx -------------------------------------------------------------------------------- /src/components/lib/AbiSourceTabs/AbiSourceTabs.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/components/lib/AbiSourceTabs/AbiSourceTabs.stories.tsx -------------------------------------------------------------------------------- /src/components/lib/AbiSourceTabs/AbiSourceTabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/components/lib/AbiSourceTabs/AbiSourceTabs.tsx -------------------------------------------------------------------------------- /src/components/lib/AbiSourceTabs/index.ts: -------------------------------------------------------------------------------- 1 | export * from './AbiSourceTabs'; 2 | -------------------------------------------------------------------------------- /src/components/lib/Button/Button.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/components/lib/Button/Button.stories.tsx -------------------------------------------------------------------------------- /src/components/lib/Button/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/components/lib/Button/Button.tsx -------------------------------------------------------------------------------- /src/components/lib/Button/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './Button'; 2 | -------------------------------------------------------------------------------- /src/components/lib/DisclosureArrow/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/components/lib/DisclosureArrow/index.tsx -------------------------------------------------------------------------------- /src/components/lib/Entity/Entity.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/components/lib/Entity/Entity.stories.tsx -------------------------------------------------------------------------------- /src/components/lib/Entity/Entity.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/components/lib/Entity/Entity.tsx -------------------------------------------------------------------------------- /src/components/lib/Entity/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './Entity'; 2 | -------------------------------------------------------------------------------- /src/components/lib/Header/Header.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/components/lib/Header/Header.stories.tsx -------------------------------------------------------------------------------- /src/components/lib/Header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/components/lib/Header/Header.tsx -------------------------------------------------------------------------------- /src/components/lib/Header/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Header'; 2 | -------------------------------------------------------------------------------- /src/components/lib/Input/Input.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/components/lib/Input/Input.stories.tsx -------------------------------------------------------------------------------- /src/components/lib/Input/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/components/lib/Input/Input.tsx -------------------------------------------------------------------------------- /src/components/lib/Input/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './Input'; 2 | -------------------------------------------------------------------------------- /src/components/lib/LoadingEntity/LoadingEntity.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/components/lib/LoadingEntity/LoadingEntity.stories.tsx -------------------------------------------------------------------------------- /src/components/lib/LoadingEntity/LoadingEntity.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/components/lib/LoadingEntity/LoadingEntity.tsx -------------------------------------------------------------------------------- /src/components/lib/LoadingEntity/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './LoadingEntity'; 2 | -------------------------------------------------------------------------------- /src/components/lib/NodeBlock/NodeBlock.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/components/lib/NodeBlock/NodeBlock.stories.tsx -------------------------------------------------------------------------------- /src/components/lib/NodeBlock/NodeBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/components/lib/NodeBlock/NodeBlock.tsx -------------------------------------------------------------------------------- /src/components/lib/NodeBlock/index.ts: -------------------------------------------------------------------------------- 1 | export * from './NodeBlock'; 2 | -------------------------------------------------------------------------------- /src/components/lib/TextArea/TextArea.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/components/lib/TextArea/TextArea.stories.tsx -------------------------------------------------------------------------------- /src/components/lib/TextArea/TextArea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/components/lib/TextArea/TextArea.tsx -------------------------------------------------------------------------------- /src/components/lib/TextArea/index.ts: -------------------------------------------------------------------------------- 1 | export * from './TextArea'; 2 | -------------------------------------------------------------------------------- /src/components/lib/Toggle/Toggle.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/components/lib/Toggle/Toggle.stories.tsx -------------------------------------------------------------------------------- /src/components/lib/Toggle/Toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/components/lib/Toggle/Toggle.tsx -------------------------------------------------------------------------------- /src/components/lib/Toggle/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './Toggle'; 2 | -------------------------------------------------------------------------------- /src/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/globals.css -------------------------------------------------------------------------------- /src/hooks/useToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/hooks/useToggle.tsx -------------------------------------------------------------------------------- /src/layout/README.md: -------------------------------------------------------------------------------- 1 | See https://nextjs.org/docs/basic-features/layouts#with-typescript 2 | -------------------------------------------------------------------------------- /src/lib/__snapshots__/decodeEvent.test.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/lib/__snapshots__/decodeEvent.test.snap -------------------------------------------------------------------------------- /src/lib/__snapshots__/decodeTx.test.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/lib/__snapshots__/decodeTx.test.snap -------------------------------------------------------------------------------- /src/lib/bufferToHexString.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/lib/bufferToHexString.test.ts -------------------------------------------------------------------------------- /src/lib/bufferToHexString.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/lib/bufferToHexString.ts -------------------------------------------------------------------------------- /src/lib/capitalizeFirstLetter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/lib/capitalizeFirstLetter.ts -------------------------------------------------------------------------------- /src/lib/convertBase.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/lib/convertBase.test.ts -------------------------------------------------------------------------------- /src/lib/convertBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/lib/convertBase.ts -------------------------------------------------------------------------------- /src/lib/convertBaseProperties.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/lib/convertBaseProperties.ts -------------------------------------------------------------------------------- /src/lib/convertProperties.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/lib/convertProperties.ts -------------------------------------------------------------------------------- /src/lib/convertUnits.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/lib/convertUnits.test.ts -------------------------------------------------------------------------------- /src/lib/convertUnits.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/lib/convertUnits.ts -------------------------------------------------------------------------------- /src/lib/convertUnixEpochToUtc.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/lib/convertUnixEpochToUtc.test.ts -------------------------------------------------------------------------------- /src/lib/convertUnixEpochToUtc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/lib/convertUnixEpochToUtc.ts -------------------------------------------------------------------------------- /src/lib/convertUtcProperties.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/lib/convertUtcProperties.ts -------------------------------------------------------------------------------- /src/lib/convertUtcToUnixEpoch.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/lib/convertUtcToUnixEpoch.test.ts -------------------------------------------------------------------------------- /src/lib/convertUtcToUnixEpoch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/lib/convertUtcToUnixEpoch.ts -------------------------------------------------------------------------------- /src/lib/currentEpochTime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/lib/currentEpochTime.ts -------------------------------------------------------------------------------- /src/lib/decodeBySigHash.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/lib/decodeBySigHash.test.ts -------------------------------------------------------------------------------- /src/lib/decodeBySigHash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/lib/decodeBySigHash.ts -------------------------------------------------------------------------------- /src/lib/decodeCalldata.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/lib/decodeCalldata.test.ts -------------------------------------------------------------------------------- /src/lib/decodeCalldata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/lib/decodeCalldata.ts -------------------------------------------------------------------------------- /src/lib/decodeEvent.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/lib/decodeEvent.test.ts -------------------------------------------------------------------------------- /src/lib/decodeEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/lib/decodeEvent.ts -------------------------------------------------------------------------------- /src/lib/decodeHex.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/lib/decodeHex.test.ts -------------------------------------------------------------------------------- /src/lib/decodeHex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/lib/decodeHex.ts -------------------------------------------------------------------------------- /src/lib/decodeTx.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/lib/decodeTx.test.ts -------------------------------------------------------------------------------- /src/lib/decodeTx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/lib/decodeTx.ts -------------------------------------------------------------------------------- /src/lib/encodeConstructor.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/lib/encodeConstructor.test.ts -------------------------------------------------------------------------------- /src/lib/encodeContructor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/lib/encodeContructor.ts -------------------------------------------------------------------------------- /src/lib/fixtures/sigHashResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/lib/fixtures/sigHashResponse.ts -------------------------------------------------------------------------------- /src/lib/parseAbi.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/lib/parseAbi.test.ts -------------------------------------------------------------------------------- /src/lib/parseAbi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/lib/parseAbi.ts -------------------------------------------------------------------------------- /src/lib/stringBytes32Conversion/convertBytes32ToString.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/lib/stringBytes32Conversion/convertBytes32ToString.ts -------------------------------------------------------------------------------- /src/lib/stringBytes32Conversion/convertStringToBytes32.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/lib/stringBytes32Conversion/convertStringToBytes32.ts -------------------------------------------------------------------------------- /src/lib/stringBytes32Conversion/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/lib/stringBytes32Conversion/types.d.ts -------------------------------------------------------------------------------- /src/lib/toEvenHex.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/lib/toEvenHex.test.ts -------------------------------------------------------------------------------- /src/lib/toEvenHex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/lib/toEvenHex.ts -------------------------------------------------------------------------------- /src/lib/vanity-address/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/lib/vanity-address/index.ts -------------------------------------------------------------------------------- /src/lib/vanity-address/vanity-address-parallel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/lib/vanity-address/vanity-address-parallel.ts -------------------------------------------------------------------------------- /src/lib/vanity-address/vanity-address.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/lib/vanity-address/vanity-address.test.ts -------------------------------------------------------------------------------- /src/lib/vanity-address/vanity-address.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/lib/vanity-address/vanity-address.ts -------------------------------------------------------------------------------- /src/lib/vanity-address/worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/lib/vanity-address/worker.ts -------------------------------------------------------------------------------- /src/misc/assert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/misc/assert.ts -------------------------------------------------------------------------------- /src/misc/combinations.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/misc/combinations.test.ts -------------------------------------------------------------------------------- /src/misc/combinations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/misc/combinations.ts -------------------------------------------------------------------------------- /src/misc/constrain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/misc/constrain.ts -------------------------------------------------------------------------------- /src/misc/handleChangeValidated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/misc/handleChangeValidated.ts -------------------------------------------------------------------------------- /src/misc/parseEthersErrorMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/misc/parseEthersErrorMessage.ts -------------------------------------------------------------------------------- /src/misc/stringToNumber.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/misc/stringToNumber.ts -------------------------------------------------------------------------------- /src/misc/toDefaultValues.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/misc/toDefaultValues.test.ts -------------------------------------------------------------------------------- /src/misc/toDefaultValues.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/misc/toDefaultValues.ts -------------------------------------------------------------------------------- /src/misc/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/misc/types.d.ts -------------------------------------------------------------------------------- /src/misc/unsafeEntries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/misc/unsafeEntries.ts -------------------------------------------------------------------------------- /src/misc/validation/schemas/binarySchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/misc/validation/schemas/binarySchema.ts -------------------------------------------------------------------------------- /src/misc/validation/schemas/decimalSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/misc/validation/schemas/decimalSchema.ts -------------------------------------------------------------------------------- /src/misc/validation/schemas/hexSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/misc/validation/schemas/hexSchema.ts -------------------------------------------------------------------------------- /src/misc/validation/schemas/octalSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/misc/validation/schemas/octalSchema.ts -------------------------------------------------------------------------------- /src/misc/validation/schemas/stringSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/misc/validation/schemas/stringSchema.ts -------------------------------------------------------------------------------- /src/misc/validation/schemas/unitSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/misc/validation/schemas/unitSchema.ts -------------------------------------------------------------------------------- /src/misc/validation/schemas/unixEpochSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/misc/validation/schemas/unixEpochSchema.ts -------------------------------------------------------------------------------- /src/misc/validation/schemas/utcSchemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/misc/validation/schemas/utcSchemas.ts -------------------------------------------------------------------------------- /src/misc/validation/validators/abiValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/misc/validation/validators/abiValidator.ts -------------------------------------------------------------------------------- /src/misc/validation/validators/hexValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/misc/validation/validators/hexValidator.ts -------------------------------------------------------------------------------- /src/misc/validation/validators/numberValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/misc/validation/validators/numberValidator.ts -------------------------------------------------------------------------------- /src/misc/validation/validators/result.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/misc/validation/validators/result.d.ts -------------------------------------------------------------------------------- /src/misc/validation/validators/stringValiator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/misc/validation/validators/stringValiator.ts -------------------------------------------------------------------------------- /src/misc/zodResultMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/misc/zodResultMessage.ts -------------------------------------------------------------------------------- /src/types/util.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/src/types/util.d.ts -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /test/configure.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/test/configure.ts -------------------------------------------------------------------------------- /test/e2e/e2e.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/test/e2e/e2e.cy.ts -------------------------------------------------------------------------------- /test/e2e/e2e.helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/test/e2e/e2e.helpers.ts -------------------------------------------------------------------------------- /test/helpers/changeTargetValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/test/helpers/changeTargetValue.ts -------------------------------------------------------------------------------- /test/require-extensions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/test/require-extensions.ts -------------------------------------------------------------------------------- /test/unexpectedCall.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/test/unexpectedCall.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dethcrypto/dethtools/HEAD/yarn.lock --------------------------------------------------------------------------------