├── .devcontainer └── devcontainer.json ├── .dockerignore ├── .editorconfig ├── .gitattributes ├── .github └── workflows │ ├── docker-build.yml │ └── release-extension.yml ├── .gitignore ├── .npmrc ├── .vscode └── settings.json ├── Dockerfile ├── LICENSE ├── app ├── css │ ├── bulma-badge.css │ ├── bulma-divider.css │ ├── bulma.css │ └── interceptor.css ├── fonts │ ├── Atkinson-Hyperlegible-Regular-102a.woff2 │ └── InterVariable.woff2 ├── html │ ├── addressBook.html │ ├── background.html │ ├── changeChain.html │ ├── confirmTransaction.html │ ├── favicon.ico │ ├── interceptorAccess.html │ ├── popup.html │ ├── settingsView.html │ └── websiteAccess.html ├── html3 │ ├── addressBookV3.html │ ├── changeChainV3.html │ ├── confirmTransactionV3.html │ ├── favicon.ico │ ├── interceptorAccessV3.html │ ├── popupV3.html │ ├── settingsViewV3.html │ └── websiteAccessV3.html ├── img │ ├── LOGOA.svg │ ├── LOGOA_400x400.png │ ├── access-hand-key-icon.svg │ ├── access-key.svg │ ├── address-book.svg │ ├── coins │ │ └── ethereum.png │ ├── contracts │ │ └── rhino.png │ ├── error-icon.svg │ ├── head-access-denied.png │ ├── head-interceptor-disabled-shield.png │ ├── head-interceptor-disabled.png │ ├── head-not-active-shield.png │ ├── head-not-active.png │ ├── head-shield.png │ ├── head-signing-shield.png │ ├── head-signing-unsupported-network-shield.png │ ├── head-signing-unsupported-network.png │ ├── head-signing.png │ ├── head-simulating-shield.png │ ├── head-simulating.png │ ├── head.png │ ├── internet.svg │ ├── question-mark-sign.svg │ ├── refresh.svg │ ├── rename.svg │ ├── settings.svg │ ├── signers │ │ ├── brave.svg │ │ ├── coinbasewallet.svg │ │ └── metamask.svg │ ├── success-icon.svg │ ├── tokens │ │ ├── 0x1f9840a85d5af5bf1d1762f925bdaddc4201f984.png │ │ ├── 0x2260fac5e5542a773aa44fbcfedf7c193bc2c599.png │ │ ├── 0x2af5d2ad76741191d15dfe7bf6ac92d4bd912ca3.png │ │ ├── 0x2b591e99afe9f32eaa6214f7b7629768c40eeb39.png │ │ ├── 0x39aa39c021dfbae8fac545936693ac917d5e7563.png │ │ ├── 0x4a220e6096b25eadb88358cb44068a3248254675.jpg │ │ ├── 0x4d224452801aced8b2f0aebe155379bb5d594381.jpg │ │ ├── 0x4fabb145d64652a948d72533023f6e7a623c7c53.png │ │ ├── 0x514910771af9ca656af840dff83e8264ecf986ca.png │ │ ├── 0x5d3a536e4d6dbd6114cc1ead35777bab948e3643.png │ │ ├── 0x6b175474e89094c44da98b954eedeac495271d0f.png │ │ ├── 0x6e1a19f235be7ed8e3369ef73b196c07257494de.png │ │ ├── 0x75231f58b43240c9718dd58b4967c5114342a86c.png │ │ ├── 0x79be75ffc64dd58e66787e4eae470c8a1fd08ba4.png │ │ ├── 0x7d1afa7b718fb893db30a3abc0cfc608aacfebb0.png │ │ ├── 0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce.png │ │ ├── 0x9ee91f9f426fa633d227f7a9b000e28b9dfd8599.png │ │ ├── 0xa0b73e1ff0b80914ab6fe0444e65848c4c34450b.jpeg │ │ ├── 0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48.png │ │ ├── 0xa2cd3d43c775978a96bdbf12d733d5a1ed94fb18.png │ │ ├── 0xae7ab96520de3a18e5e111b5eaab095312d7fe84.png │ │ ├── 0xbcca60bb61934080951369a648fb03df4f96263c.png │ │ ├── 0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2.png │ │ ├── 0xc17c30e98541188614df99239cabd40280810ca3.png │ │ ├── 0xc2bde1a2fa26890c8e6acb10c91cc6d9c11f4a73.jpg │ │ ├── 0xcf0c122c6b73ff809c693db761e7baebe62b6a2e.png │ │ ├── 0xd33526068d116ce69f19a9ee46f0bd304f21a51f.png │ │ └── 0xdac17f958d2ee523a2206206994597c13d831ec7.png │ ├── warning-sign-black.svg │ └── warning-sign.svg ├── inpage │ └── ts │ │ ├── document_start.ts │ │ ├── inpage.ts │ │ └── listenContentScript.ts ├── manifestV2.json ├── manifestV3.json └── ts │ ├── AddressBook.tsx │ ├── addressBookRender.ts │ ├── background │ ├── accessManagement.ts │ ├── background-startup.ts │ ├── background.ts │ ├── backgroundUtils.ts │ ├── iconHandler.ts │ ├── medataSearch.ts │ ├── messageSending.ts │ ├── metadataUtils.ts │ ├── popupMessageHandlers.ts │ ├── providerMessageHandlers.ts │ ├── settings.ts │ ├── simulationModeHanders.ts │ ├── simulationUpdating.ts │ ├── sleeping.ts │ ├── storageVariables.ts │ ├── websiteAccessSearch.ts │ └── windows │ │ ├── changeChain.ts │ │ ├── confirmTransaction.ts │ │ ├── interceptorAccess.ts │ │ └── personalSign.ts │ ├── backgroundServiceWorker.ts │ ├── changeChain.ts │ ├── components │ ├── App.tsx │ ├── formVisualizerResults.ts │ ├── pages │ │ ├── AddNewAddress.tsx │ │ ├── ChangeActiveAddress.tsx │ │ ├── ChangeChain.tsx │ │ ├── ConfirmTransaction.tsx │ │ ├── EditEnsLabelHash.tsx │ │ ├── Home.tsx │ │ ├── InterceptorAccess.tsx │ │ ├── InterceptorAccessList.tsx │ │ ├── PersonalSign.tsx │ │ ├── SettingsView.tsx │ │ └── WebsiteAccess.tsx │ ├── simulationExplaining │ │ ├── SimulationSummary.tsx │ │ ├── SwapTransactions.tsx │ │ ├── Transactions.tsx │ │ ├── customExplainers │ │ │ ├── CatchAllVisualizer.tsx │ │ │ ├── EnsEventExplainer.tsx │ │ │ ├── GnosisSafeVisualizer.tsx │ │ │ ├── GovernanceVoteVisualizer.tsx │ │ │ ├── OpenSeaOrder.tsx │ │ │ ├── ProxySendVisualisations.tsx │ │ │ ├── SimpleSendVisualisations.tsx │ │ │ └── SimpleTokenApprovalVisualisation.tsx │ │ └── identifyTransaction.tsx │ ├── subcomponents │ │ ├── AbbreviatedValue.tsx │ │ ├── AutosizingInput.tsx │ │ ├── ChainSelector.tsx │ │ ├── Collapsible.tsx │ │ ├── ConfigureRpcConnection.tsx │ │ ├── CopyToClipboard.tsx │ │ ├── DataURLCache.ts │ │ ├── DinoSays.tsx │ │ ├── DropDownMenu.tsx │ │ ├── DynamicScroller.tsx │ │ ├── EnsGradient.tsx │ │ ├── Error.tsx │ │ ├── Hint.tsx │ │ ├── InlineCard.tsx │ │ ├── LICENSE_ens.md │ │ ├── LICENSE_zorb.md │ │ ├── Modal.tsx │ │ ├── MultilineCard.tsx │ │ ├── ParsedInputData.tsx │ │ ├── PasteCatcher.tsx │ │ ├── SVGBlockie.tsx │ │ ├── SomeTimeAgo.tsx │ │ ├── Spinner.tsx │ │ ├── Switch.tsx │ │ ├── TextField.tsx │ │ ├── TimePicker.tsx │ │ ├── ToggleButton.tsx │ │ ├── Tooltip.tsx │ │ ├── ViewSelector.tsx │ │ ├── address.tsx │ │ ├── clipboardcopy.ts │ │ ├── coins.tsx │ │ ├── ens.tsx │ │ ├── icons.tsx │ │ ├── link.tsx │ │ ├── misc.tsx │ │ ├── signers.tsx │ │ └── solidityType.tsx │ └── ui-utils.tsx │ ├── confirmTransaction.ts │ ├── interceptorAccess.ts │ ├── popup.ts │ ├── settingsView.ts │ ├── simulation │ ├── SimulationStackExtraction.ts │ ├── compoundGovernanceFaking.ts │ ├── logHandlers.ts │ ├── protectors │ │ ├── chainIdMismatch.ts │ │ ├── commonTokenOops.ts │ │ ├── eoaApproval.ts │ │ ├── eoaCalldata.ts │ │ ├── feeOops.ts │ │ ├── selfTokenOops.ts │ │ ├── sendToNonContactAddress.ts │ │ └── tokenToContract.ts │ ├── services │ │ ├── EtherScanAbiFetcher.ts │ │ ├── EthereumClientService.ts │ │ ├── EthereumJSONRpcRequestHandler.ts │ │ ├── EthereumSubscriptionService.ts │ │ ├── LogSummarizer.ts │ │ ├── SimulationModeEthereumClientService.ts │ │ └── priceEstimator.ts │ └── simulator.ts │ ├── types │ ├── EnrichedEthereumData.ts │ ├── JsonRpc-types.ts │ ├── accessRequest.ts │ ├── addressBookTypes.ts │ ├── eip721.ts │ ├── ens.ts │ ├── ethSimulate-types.ts │ ├── etherscan.ts │ ├── exportedSettingsTypes.ts │ ├── interceptor-messages.ts │ ├── jsonRpc-signing-types.ts │ ├── personal-message-definitions.ts │ ├── rpc.ts │ ├── signerTypes.ts │ ├── simulationStackTypes.ts │ ├── solidityType.ts │ ├── user-interface-types.ts │ ├── visualizer-types.ts │ ├── websiteAccessTypes.ts │ └── wire-types.ts │ ├── utils │ ├── OptionalSignal.ts │ ├── abi.ts │ ├── anySignal.ts │ ├── bigint.ts │ ├── calldata.ts │ ├── chainNames.ts │ ├── constants.ts │ ├── contentScriptsUpdating.ts │ ├── eip712.ts │ ├── eip712Parsing.ts │ ├── errorDecoding.ts │ ├── errors.ts │ ├── ethereum.ts │ ├── ethereumByteCodes.ts │ ├── ethereumNameService.ts │ ├── findDeadEnds.ts │ ├── future.ts │ ├── imageToUri.ts │ ├── json.ts │ ├── preact-utilities.ts │ ├── requests.ts │ ├── semaphore.ts │ ├── sleep.ts │ ├── solidityTypes.ts │ ├── storageUtils.ts │ ├── tokenIdentification.ts │ ├── typed-arrays.ts │ ├── typescript.ts │ ├── uniswap.ts │ └── websiteData.ts │ ├── version.ts │ └── websiteAccess.ts ├── biome.jsonc ├── knip.jsonc ├── package.json ├── popup_view.png ├── readme.md ├── test ├── MockRequestHandler.ts ├── RPCResponses.ts ├── micro-should.ts ├── run-all.ts └── tests │ ├── SimulationModeEthereumClientService.ts │ ├── data │ └── eip712Data.ts │ ├── metadataUtils.ts │ ├── nethermindComparison.ts │ ├── signTypedData.ts │ ├── utils.bigint.ts │ └── websiteAccessSearch.ts ├── transaction_outcome.png ├── tsconfig-inpage.json ├── tsconfig-test.json └── tsconfig.json /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/docker-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/.github/workflows/docker-build.yml -------------------------------------------------------------------------------- /.github/workflows/release-extension.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/.github/workflows/release-extension.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/.npmrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/LICENSE -------------------------------------------------------------------------------- /app/css/bulma-badge.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/css/bulma-badge.css -------------------------------------------------------------------------------- /app/css/bulma-divider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/css/bulma-divider.css -------------------------------------------------------------------------------- /app/css/bulma.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/css/bulma.css -------------------------------------------------------------------------------- /app/css/interceptor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/css/interceptor.css -------------------------------------------------------------------------------- /app/fonts/Atkinson-Hyperlegible-Regular-102a.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/fonts/Atkinson-Hyperlegible-Regular-102a.woff2 -------------------------------------------------------------------------------- /app/fonts/InterVariable.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/fonts/InterVariable.woff2 -------------------------------------------------------------------------------- /app/html/addressBook.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/html/addressBook.html -------------------------------------------------------------------------------- /app/html/background.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/html/background.html -------------------------------------------------------------------------------- /app/html/changeChain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/html/changeChain.html -------------------------------------------------------------------------------- /app/html/confirmTransaction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/html/confirmTransaction.html -------------------------------------------------------------------------------- /app/html/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/html/favicon.ico -------------------------------------------------------------------------------- /app/html/interceptorAccess.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/html/interceptorAccess.html -------------------------------------------------------------------------------- /app/html/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/html/popup.html -------------------------------------------------------------------------------- /app/html/settingsView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/html/settingsView.html -------------------------------------------------------------------------------- /app/html/websiteAccess.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/html/websiteAccess.html -------------------------------------------------------------------------------- /app/html3/addressBookV3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/html3/addressBookV3.html -------------------------------------------------------------------------------- /app/html3/changeChainV3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/html3/changeChainV3.html -------------------------------------------------------------------------------- /app/html3/confirmTransactionV3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/html3/confirmTransactionV3.html -------------------------------------------------------------------------------- /app/html3/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/html3/favicon.ico -------------------------------------------------------------------------------- /app/html3/interceptorAccessV3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/html3/interceptorAccessV3.html -------------------------------------------------------------------------------- /app/html3/popupV3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/html3/popupV3.html -------------------------------------------------------------------------------- /app/html3/settingsViewV3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/html3/settingsViewV3.html -------------------------------------------------------------------------------- /app/html3/websiteAccessV3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/html3/websiteAccessV3.html -------------------------------------------------------------------------------- /app/img/LOGOA.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/img/LOGOA.svg -------------------------------------------------------------------------------- /app/img/LOGOA_400x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/img/LOGOA_400x400.png -------------------------------------------------------------------------------- /app/img/access-hand-key-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/img/access-hand-key-icon.svg -------------------------------------------------------------------------------- /app/img/access-key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/img/access-key.svg -------------------------------------------------------------------------------- /app/img/address-book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/img/address-book.svg -------------------------------------------------------------------------------- /app/img/coins/ethereum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/img/coins/ethereum.png -------------------------------------------------------------------------------- /app/img/contracts/rhino.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/img/contracts/rhino.png -------------------------------------------------------------------------------- /app/img/error-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/img/error-icon.svg -------------------------------------------------------------------------------- /app/img/head-access-denied.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/img/head-access-denied.png -------------------------------------------------------------------------------- /app/img/head-interceptor-disabled-shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/img/head-interceptor-disabled-shield.png -------------------------------------------------------------------------------- /app/img/head-interceptor-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/img/head-interceptor-disabled.png -------------------------------------------------------------------------------- /app/img/head-not-active-shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/img/head-not-active-shield.png -------------------------------------------------------------------------------- /app/img/head-not-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/img/head-not-active.png -------------------------------------------------------------------------------- /app/img/head-shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/img/head-shield.png -------------------------------------------------------------------------------- /app/img/head-signing-shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/img/head-signing-shield.png -------------------------------------------------------------------------------- /app/img/head-signing-unsupported-network-shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/img/head-signing-unsupported-network-shield.png -------------------------------------------------------------------------------- /app/img/head-signing-unsupported-network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/img/head-signing-unsupported-network.png -------------------------------------------------------------------------------- /app/img/head-signing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/img/head-signing.png -------------------------------------------------------------------------------- /app/img/head-simulating-shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/img/head-simulating-shield.png -------------------------------------------------------------------------------- /app/img/head-simulating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/img/head-simulating.png -------------------------------------------------------------------------------- /app/img/head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/img/head.png -------------------------------------------------------------------------------- /app/img/internet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/img/internet.svg -------------------------------------------------------------------------------- /app/img/question-mark-sign.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/img/question-mark-sign.svg -------------------------------------------------------------------------------- /app/img/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/img/refresh.svg -------------------------------------------------------------------------------- /app/img/rename.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/img/rename.svg -------------------------------------------------------------------------------- /app/img/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/img/settings.svg -------------------------------------------------------------------------------- /app/img/signers/brave.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/img/signers/brave.svg -------------------------------------------------------------------------------- /app/img/signers/coinbasewallet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/img/signers/coinbasewallet.svg -------------------------------------------------------------------------------- /app/img/signers/metamask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/img/signers/metamask.svg -------------------------------------------------------------------------------- /app/img/success-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/img/success-icon.svg -------------------------------------------------------------------------------- /app/img/tokens/0x1f9840a85d5af5bf1d1762f925bdaddc4201f984.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/img/tokens/0x1f9840a85d5af5bf1d1762f925bdaddc4201f984.png -------------------------------------------------------------------------------- /app/img/tokens/0x2260fac5e5542a773aa44fbcfedf7c193bc2c599.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/img/tokens/0x2260fac5e5542a773aa44fbcfedf7c193bc2c599.png -------------------------------------------------------------------------------- /app/img/tokens/0x2af5d2ad76741191d15dfe7bf6ac92d4bd912ca3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/img/tokens/0x2af5d2ad76741191d15dfe7bf6ac92d4bd912ca3.png -------------------------------------------------------------------------------- /app/img/tokens/0x2b591e99afe9f32eaa6214f7b7629768c40eeb39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/img/tokens/0x2b591e99afe9f32eaa6214f7b7629768c40eeb39.png -------------------------------------------------------------------------------- /app/img/tokens/0x39aa39c021dfbae8fac545936693ac917d5e7563.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/img/tokens/0x39aa39c021dfbae8fac545936693ac917d5e7563.png -------------------------------------------------------------------------------- /app/img/tokens/0x4a220e6096b25eadb88358cb44068a3248254675.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/img/tokens/0x4a220e6096b25eadb88358cb44068a3248254675.jpg -------------------------------------------------------------------------------- /app/img/tokens/0x4d224452801aced8b2f0aebe155379bb5d594381.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/img/tokens/0x4d224452801aced8b2f0aebe155379bb5d594381.jpg -------------------------------------------------------------------------------- /app/img/tokens/0x4fabb145d64652a948d72533023f6e7a623c7c53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/img/tokens/0x4fabb145d64652a948d72533023f6e7a623c7c53.png -------------------------------------------------------------------------------- /app/img/tokens/0x514910771af9ca656af840dff83e8264ecf986ca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/img/tokens/0x514910771af9ca656af840dff83e8264ecf986ca.png -------------------------------------------------------------------------------- /app/img/tokens/0x5d3a536e4d6dbd6114cc1ead35777bab948e3643.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/img/tokens/0x5d3a536e4d6dbd6114cc1ead35777bab948e3643.png -------------------------------------------------------------------------------- /app/img/tokens/0x6b175474e89094c44da98b954eedeac495271d0f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/img/tokens/0x6b175474e89094c44da98b954eedeac495271d0f.png -------------------------------------------------------------------------------- /app/img/tokens/0x6e1a19f235be7ed8e3369ef73b196c07257494de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/img/tokens/0x6e1a19f235be7ed8e3369ef73b196c07257494de.png -------------------------------------------------------------------------------- /app/img/tokens/0x75231f58b43240c9718dd58b4967c5114342a86c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/img/tokens/0x75231f58b43240c9718dd58b4967c5114342a86c.png -------------------------------------------------------------------------------- /app/img/tokens/0x79be75ffc64dd58e66787e4eae470c8a1fd08ba4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/img/tokens/0x79be75ffc64dd58e66787e4eae470c8a1fd08ba4.png -------------------------------------------------------------------------------- /app/img/tokens/0x7d1afa7b718fb893db30a3abc0cfc608aacfebb0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/img/tokens/0x7d1afa7b718fb893db30a3abc0cfc608aacfebb0.png -------------------------------------------------------------------------------- /app/img/tokens/0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/img/tokens/0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce.png -------------------------------------------------------------------------------- /app/img/tokens/0x9ee91f9f426fa633d227f7a9b000e28b9dfd8599.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/img/tokens/0x9ee91f9f426fa633d227f7a9b000e28b9dfd8599.png -------------------------------------------------------------------------------- /app/img/tokens/0xa0b73e1ff0b80914ab6fe0444e65848c4c34450b.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/img/tokens/0xa0b73e1ff0b80914ab6fe0444e65848c4c34450b.jpeg -------------------------------------------------------------------------------- /app/img/tokens/0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/img/tokens/0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48.png -------------------------------------------------------------------------------- /app/img/tokens/0xa2cd3d43c775978a96bdbf12d733d5a1ed94fb18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/img/tokens/0xa2cd3d43c775978a96bdbf12d733d5a1ed94fb18.png -------------------------------------------------------------------------------- /app/img/tokens/0xae7ab96520de3a18e5e111b5eaab095312d7fe84.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/img/tokens/0xae7ab96520de3a18e5e111b5eaab095312d7fe84.png -------------------------------------------------------------------------------- /app/img/tokens/0xbcca60bb61934080951369a648fb03df4f96263c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/img/tokens/0xbcca60bb61934080951369a648fb03df4f96263c.png -------------------------------------------------------------------------------- /app/img/tokens/0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/img/tokens/0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2.png -------------------------------------------------------------------------------- /app/img/tokens/0xc17c30e98541188614df99239cabd40280810ca3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/img/tokens/0xc17c30e98541188614df99239cabd40280810ca3.png -------------------------------------------------------------------------------- /app/img/tokens/0xc2bde1a2fa26890c8e6acb10c91cc6d9c11f4a73.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/img/tokens/0xc2bde1a2fa26890c8e6acb10c91cc6d9c11f4a73.jpg -------------------------------------------------------------------------------- /app/img/tokens/0xcf0c122c6b73ff809c693db761e7baebe62b6a2e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/img/tokens/0xcf0c122c6b73ff809c693db761e7baebe62b6a2e.png -------------------------------------------------------------------------------- /app/img/tokens/0xd33526068d116ce69f19a9ee46f0bd304f21a51f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/img/tokens/0xd33526068d116ce69f19a9ee46f0bd304f21a51f.png -------------------------------------------------------------------------------- /app/img/tokens/0xdac17f958d2ee523a2206206994597c13d831ec7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/img/tokens/0xdac17f958d2ee523a2206206994597c13d831ec7.png -------------------------------------------------------------------------------- /app/img/warning-sign-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/img/warning-sign-black.svg -------------------------------------------------------------------------------- /app/img/warning-sign.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/img/warning-sign.svg -------------------------------------------------------------------------------- /app/inpage/ts/document_start.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/inpage/ts/document_start.ts -------------------------------------------------------------------------------- /app/inpage/ts/inpage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/inpage/ts/inpage.ts -------------------------------------------------------------------------------- /app/inpage/ts/listenContentScript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/inpage/ts/listenContentScript.ts -------------------------------------------------------------------------------- /app/manifestV2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/manifestV2.json -------------------------------------------------------------------------------- /app/manifestV3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/manifestV3.json -------------------------------------------------------------------------------- /app/ts/AddressBook.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/AddressBook.tsx -------------------------------------------------------------------------------- /app/ts/addressBookRender.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/addressBookRender.ts -------------------------------------------------------------------------------- /app/ts/background/accessManagement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/background/accessManagement.ts -------------------------------------------------------------------------------- /app/ts/background/background-startup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/background/background-startup.ts -------------------------------------------------------------------------------- /app/ts/background/background.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/background/background.ts -------------------------------------------------------------------------------- /app/ts/background/backgroundUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/background/backgroundUtils.ts -------------------------------------------------------------------------------- /app/ts/background/iconHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/background/iconHandler.ts -------------------------------------------------------------------------------- /app/ts/background/medataSearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/background/medataSearch.ts -------------------------------------------------------------------------------- /app/ts/background/messageSending.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/background/messageSending.ts -------------------------------------------------------------------------------- /app/ts/background/metadataUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/background/metadataUtils.ts -------------------------------------------------------------------------------- /app/ts/background/popupMessageHandlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/background/popupMessageHandlers.ts -------------------------------------------------------------------------------- /app/ts/background/providerMessageHandlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/background/providerMessageHandlers.ts -------------------------------------------------------------------------------- /app/ts/background/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/background/settings.ts -------------------------------------------------------------------------------- /app/ts/background/simulationModeHanders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/background/simulationModeHanders.ts -------------------------------------------------------------------------------- /app/ts/background/simulationUpdating.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/background/simulationUpdating.ts -------------------------------------------------------------------------------- /app/ts/background/sleeping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/background/sleeping.ts -------------------------------------------------------------------------------- /app/ts/background/storageVariables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/background/storageVariables.ts -------------------------------------------------------------------------------- /app/ts/background/websiteAccessSearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/background/websiteAccessSearch.ts -------------------------------------------------------------------------------- /app/ts/background/windows/changeChain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/background/windows/changeChain.ts -------------------------------------------------------------------------------- /app/ts/background/windows/confirmTransaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/background/windows/confirmTransaction.ts -------------------------------------------------------------------------------- /app/ts/background/windows/interceptorAccess.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/background/windows/interceptorAccess.ts -------------------------------------------------------------------------------- /app/ts/background/windows/personalSign.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/background/windows/personalSign.ts -------------------------------------------------------------------------------- /app/ts/backgroundServiceWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/backgroundServiceWorker.ts -------------------------------------------------------------------------------- /app/ts/changeChain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/changeChain.ts -------------------------------------------------------------------------------- /app/ts/components/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/components/App.tsx -------------------------------------------------------------------------------- /app/ts/components/formVisualizerResults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/components/formVisualizerResults.ts -------------------------------------------------------------------------------- /app/ts/components/pages/AddNewAddress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/components/pages/AddNewAddress.tsx -------------------------------------------------------------------------------- /app/ts/components/pages/ChangeActiveAddress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/components/pages/ChangeActiveAddress.tsx -------------------------------------------------------------------------------- /app/ts/components/pages/ChangeChain.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/components/pages/ChangeChain.tsx -------------------------------------------------------------------------------- /app/ts/components/pages/ConfirmTransaction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/components/pages/ConfirmTransaction.tsx -------------------------------------------------------------------------------- /app/ts/components/pages/EditEnsLabelHash.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/components/pages/EditEnsLabelHash.tsx -------------------------------------------------------------------------------- /app/ts/components/pages/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/components/pages/Home.tsx -------------------------------------------------------------------------------- /app/ts/components/pages/InterceptorAccess.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/components/pages/InterceptorAccess.tsx -------------------------------------------------------------------------------- /app/ts/components/pages/InterceptorAccessList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/components/pages/InterceptorAccessList.tsx -------------------------------------------------------------------------------- /app/ts/components/pages/PersonalSign.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/components/pages/PersonalSign.tsx -------------------------------------------------------------------------------- /app/ts/components/pages/SettingsView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/components/pages/SettingsView.tsx -------------------------------------------------------------------------------- /app/ts/components/pages/WebsiteAccess.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/components/pages/WebsiteAccess.tsx -------------------------------------------------------------------------------- /app/ts/components/simulationExplaining/SimulationSummary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/components/simulationExplaining/SimulationSummary.tsx -------------------------------------------------------------------------------- /app/ts/components/simulationExplaining/SwapTransactions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/components/simulationExplaining/SwapTransactions.tsx -------------------------------------------------------------------------------- /app/ts/components/simulationExplaining/Transactions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/components/simulationExplaining/Transactions.tsx -------------------------------------------------------------------------------- /app/ts/components/simulationExplaining/customExplainers/CatchAllVisualizer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/components/simulationExplaining/customExplainers/CatchAllVisualizer.tsx -------------------------------------------------------------------------------- /app/ts/components/simulationExplaining/customExplainers/EnsEventExplainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/components/simulationExplaining/customExplainers/EnsEventExplainer.tsx -------------------------------------------------------------------------------- /app/ts/components/simulationExplaining/customExplainers/GnosisSafeVisualizer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/components/simulationExplaining/customExplainers/GnosisSafeVisualizer.tsx -------------------------------------------------------------------------------- /app/ts/components/simulationExplaining/customExplainers/GovernanceVoteVisualizer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/components/simulationExplaining/customExplainers/GovernanceVoteVisualizer.tsx -------------------------------------------------------------------------------- /app/ts/components/simulationExplaining/customExplainers/OpenSeaOrder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/components/simulationExplaining/customExplainers/OpenSeaOrder.tsx -------------------------------------------------------------------------------- /app/ts/components/simulationExplaining/customExplainers/ProxySendVisualisations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/components/simulationExplaining/customExplainers/ProxySendVisualisations.tsx -------------------------------------------------------------------------------- /app/ts/components/simulationExplaining/customExplainers/SimpleSendVisualisations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/components/simulationExplaining/customExplainers/SimpleSendVisualisations.tsx -------------------------------------------------------------------------------- /app/ts/components/simulationExplaining/customExplainers/SimpleTokenApprovalVisualisation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/components/simulationExplaining/customExplainers/SimpleTokenApprovalVisualisation.tsx -------------------------------------------------------------------------------- /app/ts/components/simulationExplaining/identifyTransaction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/components/simulationExplaining/identifyTransaction.tsx -------------------------------------------------------------------------------- /app/ts/components/subcomponents/AbbreviatedValue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/components/subcomponents/AbbreviatedValue.tsx -------------------------------------------------------------------------------- /app/ts/components/subcomponents/AutosizingInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/components/subcomponents/AutosizingInput.tsx -------------------------------------------------------------------------------- /app/ts/components/subcomponents/ChainSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/components/subcomponents/ChainSelector.tsx -------------------------------------------------------------------------------- /app/ts/components/subcomponents/Collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/components/subcomponents/Collapsible.tsx -------------------------------------------------------------------------------- /app/ts/components/subcomponents/ConfigureRpcConnection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/components/subcomponents/ConfigureRpcConnection.tsx -------------------------------------------------------------------------------- /app/ts/components/subcomponents/CopyToClipboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/components/subcomponents/CopyToClipboard.tsx -------------------------------------------------------------------------------- /app/ts/components/subcomponents/DataURLCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/components/subcomponents/DataURLCache.ts -------------------------------------------------------------------------------- /app/ts/components/subcomponents/DinoSays.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/components/subcomponents/DinoSays.tsx -------------------------------------------------------------------------------- /app/ts/components/subcomponents/DropDownMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/components/subcomponents/DropDownMenu.tsx -------------------------------------------------------------------------------- /app/ts/components/subcomponents/DynamicScroller.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/components/subcomponents/DynamicScroller.tsx -------------------------------------------------------------------------------- /app/ts/components/subcomponents/EnsGradient.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/components/subcomponents/EnsGradient.tsx -------------------------------------------------------------------------------- /app/ts/components/subcomponents/Error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/components/subcomponents/Error.tsx -------------------------------------------------------------------------------- /app/ts/components/subcomponents/Hint.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/components/subcomponents/Hint.tsx -------------------------------------------------------------------------------- /app/ts/components/subcomponents/InlineCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/components/subcomponents/InlineCard.tsx -------------------------------------------------------------------------------- /app/ts/components/subcomponents/LICENSE_ens.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/components/subcomponents/LICENSE_ens.md -------------------------------------------------------------------------------- /app/ts/components/subcomponents/LICENSE_zorb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/components/subcomponents/LICENSE_zorb.md -------------------------------------------------------------------------------- /app/ts/components/subcomponents/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/components/subcomponents/Modal.tsx -------------------------------------------------------------------------------- /app/ts/components/subcomponents/MultilineCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/components/subcomponents/MultilineCard.tsx -------------------------------------------------------------------------------- /app/ts/components/subcomponents/ParsedInputData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/components/subcomponents/ParsedInputData.tsx -------------------------------------------------------------------------------- /app/ts/components/subcomponents/PasteCatcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/components/subcomponents/PasteCatcher.tsx -------------------------------------------------------------------------------- /app/ts/components/subcomponents/SVGBlockie.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/components/subcomponents/SVGBlockie.tsx -------------------------------------------------------------------------------- /app/ts/components/subcomponents/SomeTimeAgo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/components/subcomponents/SomeTimeAgo.tsx -------------------------------------------------------------------------------- /app/ts/components/subcomponents/Spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/components/subcomponents/Spinner.tsx -------------------------------------------------------------------------------- /app/ts/components/subcomponents/Switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/components/subcomponents/Switch.tsx -------------------------------------------------------------------------------- /app/ts/components/subcomponents/TextField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/components/subcomponents/TextField.tsx -------------------------------------------------------------------------------- /app/ts/components/subcomponents/TimePicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/components/subcomponents/TimePicker.tsx -------------------------------------------------------------------------------- /app/ts/components/subcomponents/ToggleButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/components/subcomponents/ToggleButton.tsx -------------------------------------------------------------------------------- /app/ts/components/subcomponents/Tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/components/subcomponents/Tooltip.tsx -------------------------------------------------------------------------------- /app/ts/components/subcomponents/ViewSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/components/subcomponents/ViewSelector.tsx -------------------------------------------------------------------------------- /app/ts/components/subcomponents/address.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/components/subcomponents/address.tsx -------------------------------------------------------------------------------- /app/ts/components/subcomponents/clipboardcopy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/components/subcomponents/clipboardcopy.ts -------------------------------------------------------------------------------- /app/ts/components/subcomponents/coins.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/components/subcomponents/coins.tsx -------------------------------------------------------------------------------- /app/ts/components/subcomponents/ens.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/components/subcomponents/ens.tsx -------------------------------------------------------------------------------- /app/ts/components/subcomponents/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/components/subcomponents/icons.tsx -------------------------------------------------------------------------------- /app/ts/components/subcomponents/link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/components/subcomponents/link.tsx -------------------------------------------------------------------------------- /app/ts/components/subcomponents/misc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/components/subcomponents/misc.tsx -------------------------------------------------------------------------------- /app/ts/components/subcomponents/signers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/components/subcomponents/signers.tsx -------------------------------------------------------------------------------- /app/ts/components/subcomponents/solidityType.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/components/subcomponents/solidityType.tsx -------------------------------------------------------------------------------- /app/ts/components/ui-utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/components/ui-utils.tsx -------------------------------------------------------------------------------- /app/ts/confirmTransaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/confirmTransaction.ts -------------------------------------------------------------------------------- /app/ts/interceptorAccess.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/interceptorAccess.ts -------------------------------------------------------------------------------- /app/ts/popup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/popup.ts -------------------------------------------------------------------------------- /app/ts/settingsView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/settingsView.ts -------------------------------------------------------------------------------- /app/ts/simulation/SimulationStackExtraction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/simulation/SimulationStackExtraction.ts -------------------------------------------------------------------------------- /app/ts/simulation/compoundGovernanceFaking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/simulation/compoundGovernanceFaking.ts -------------------------------------------------------------------------------- /app/ts/simulation/logHandlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/simulation/logHandlers.ts -------------------------------------------------------------------------------- /app/ts/simulation/protectors/chainIdMismatch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/simulation/protectors/chainIdMismatch.ts -------------------------------------------------------------------------------- /app/ts/simulation/protectors/commonTokenOops.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/simulation/protectors/commonTokenOops.ts -------------------------------------------------------------------------------- /app/ts/simulation/protectors/eoaApproval.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/simulation/protectors/eoaApproval.ts -------------------------------------------------------------------------------- /app/ts/simulation/protectors/eoaCalldata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/simulation/protectors/eoaCalldata.ts -------------------------------------------------------------------------------- /app/ts/simulation/protectors/feeOops.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/simulation/protectors/feeOops.ts -------------------------------------------------------------------------------- /app/ts/simulation/protectors/selfTokenOops.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/simulation/protectors/selfTokenOops.ts -------------------------------------------------------------------------------- /app/ts/simulation/protectors/sendToNonContactAddress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/simulation/protectors/sendToNonContactAddress.ts -------------------------------------------------------------------------------- /app/ts/simulation/protectors/tokenToContract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/simulation/protectors/tokenToContract.ts -------------------------------------------------------------------------------- /app/ts/simulation/services/EtherScanAbiFetcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/simulation/services/EtherScanAbiFetcher.ts -------------------------------------------------------------------------------- /app/ts/simulation/services/EthereumClientService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/simulation/services/EthereumClientService.ts -------------------------------------------------------------------------------- /app/ts/simulation/services/EthereumJSONRpcRequestHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/simulation/services/EthereumJSONRpcRequestHandler.ts -------------------------------------------------------------------------------- /app/ts/simulation/services/EthereumSubscriptionService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/simulation/services/EthereumSubscriptionService.ts -------------------------------------------------------------------------------- /app/ts/simulation/services/LogSummarizer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/simulation/services/LogSummarizer.ts -------------------------------------------------------------------------------- /app/ts/simulation/services/SimulationModeEthereumClientService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/simulation/services/SimulationModeEthereumClientService.ts -------------------------------------------------------------------------------- /app/ts/simulation/services/priceEstimator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/simulation/services/priceEstimator.ts -------------------------------------------------------------------------------- /app/ts/simulation/simulator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/simulation/simulator.ts -------------------------------------------------------------------------------- /app/ts/types/EnrichedEthereumData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/types/EnrichedEthereumData.ts -------------------------------------------------------------------------------- /app/ts/types/JsonRpc-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/types/JsonRpc-types.ts -------------------------------------------------------------------------------- /app/ts/types/accessRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/types/accessRequest.ts -------------------------------------------------------------------------------- /app/ts/types/addressBookTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/types/addressBookTypes.ts -------------------------------------------------------------------------------- /app/ts/types/eip721.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/types/eip721.ts -------------------------------------------------------------------------------- /app/ts/types/ens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/types/ens.ts -------------------------------------------------------------------------------- /app/ts/types/ethSimulate-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/types/ethSimulate-types.ts -------------------------------------------------------------------------------- /app/ts/types/etherscan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/types/etherscan.ts -------------------------------------------------------------------------------- /app/ts/types/exportedSettingsTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/types/exportedSettingsTypes.ts -------------------------------------------------------------------------------- /app/ts/types/interceptor-messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/types/interceptor-messages.ts -------------------------------------------------------------------------------- /app/ts/types/jsonRpc-signing-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/types/jsonRpc-signing-types.ts -------------------------------------------------------------------------------- /app/ts/types/personal-message-definitions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/types/personal-message-definitions.ts -------------------------------------------------------------------------------- /app/ts/types/rpc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/types/rpc.ts -------------------------------------------------------------------------------- /app/ts/types/signerTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/types/signerTypes.ts -------------------------------------------------------------------------------- /app/ts/types/simulationStackTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/types/simulationStackTypes.ts -------------------------------------------------------------------------------- /app/ts/types/solidityType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/types/solidityType.ts -------------------------------------------------------------------------------- /app/ts/types/user-interface-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/types/user-interface-types.ts -------------------------------------------------------------------------------- /app/ts/types/visualizer-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/types/visualizer-types.ts -------------------------------------------------------------------------------- /app/ts/types/websiteAccessTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/types/websiteAccessTypes.ts -------------------------------------------------------------------------------- /app/ts/types/wire-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/types/wire-types.ts -------------------------------------------------------------------------------- /app/ts/utils/OptionalSignal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/utils/OptionalSignal.ts -------------------------------------------------------------------------------- /app/ts/utils/abi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/utils/abi.ts -------------------------------------------------------------------------------- /app/ts/utils/anySignal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/utils/anySignal.ts -------------------------------------------------------------------------------- /app/ts/utils/bigint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/utils/bigint.ts -------------------------------------------------------------------------------- /app/ts/utils/calldata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/utils/calldata.ts -------------------------------------------------------------------------------- /app/ts/utils/chainNames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/utils/chainNames.ts -------------------------------------------------------------------------------- /app/ts/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/utils/constants.ts -------------------------------------------------------------------------------- /app/ts/utils/contentScriptsUpdating.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/utils/contentScriptsUpdating.ts -------------------------------------------------------------------------------- /app/ts/utils/eip712.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/utils/eip712.ts -------------------------------------------------------------------------------- /app/ts/utils/eip712Parsing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/utils/eip712Parsing.ts -------------------------------------------------------------------------------- /app/ts/utils/errorDecoding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/utils/errorDecoding.ts -------------------------------------------------------------------------------- /app/ts/utils/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/utils/errors.ts -------------------------------------------------------------------------------- /app/ts/utils/ethereum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/utils/ethereum.ts -------------------------------------------------------------------------------- /app/ts/utils/ethereumByteCodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/utils/ethereumByteCodes.ts -------------------------------------------------------------------------------- /app/ts/utils/ethereumNameService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/utils/ethereumNameService.ts -------------------------------------------------------------------------------- /app/ts/utils/findDeadEnds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/utils/findDeadEnds.ts -------------------------------------------------------------------------------- /app/ts/utils/future.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/utils/future.ts -------------------------------------------------------------------------------- /app/ts/utils/imageToUri.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/utils/imageToUri.ts -------------------------------------------------------------------------------- /app/ts/utils/json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/utils/json.ts -------------------------------------------------------------------------------- /app/ts/utils/preact-utilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/utils/preact-utilities.ts -------------------------------------------------------------------------------- /app/ts/utils/requests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/utils/requests.ts -------------------------------------------------------------------------------- /app/ts/utils/semaphore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/utils/semaphore.ts -------------------------------------------------------------------------------- /app/ts/utils/sleep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/utils/sleep.ts -------------------------------------------------------------------------------- /app/ts/utils/solidityTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/utils/solidityTypes.ts -------------------------------------------------------------------------------- /app/ts/utils/storageUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/utils/storageUtils.ts -------------------------------------------------------------------------------- /app/ts/utils/tokenIdentification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/utils/tokenIdentification.ts -------------------------------------------------------------------------------- /app/ts/utils/typed-arrays.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/utils/typed-arrays.ts -------------------------------------------------------------------------------- /app/ts/utils/typescript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/utils/typescript.ts -------------------------------------------------------------------------------- /app/ts/utils/uniswap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/utils/uniswap.ts -------------------------------------------------------------------------------- /app/ts/utils/websiteData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/utils/websiteData.ts -------------------------------------------------------------------------------- /app/ts/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/version.ts -------------------------------------------------------------------------------- /app/ts/websiteAccess.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/app/ts/websiteAccess.ts -------------------------------------------------------------------------------- /biome.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/biome.jsonc -------------------------------------------------------------------------------- /knip.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/knip.jsonc -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/package.json -------------------------------------------------------------------------------- /popup_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/popup_view.png -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/readme.md -------------------------------------------------------------------------------- /test/MockRequestHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/test/MockRequestHandler.ts -------------------------------------------------------------------------------- /test/RPCResponses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/test/RPCResponses.ts -------------------------------------------------------------------------------- /test/micro-should.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/test/micro-should.ts -------------------------------------------------------------------------------- /test/run-all.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/test/run-all.ts -------------------------------------------------------------------------------- /test/tests/SimulationModeEthereumClientService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/test/tests/SimulationModeEthereumClientService.ts -------------------------------------------------------------------------------- /test/tests/data/eip712Data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/test/tests/data/eip712Data.ts -------------------------------------------------------------------------------- /test/tests/metadataUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/test/tests/metadataUtils.ts -------------------------------------------------------------------------------- /test/tests/nethermindComparison.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/test/tests/nethermindComparison.ts -------------------------------------------------------------------------------- /test/tests/signTypedData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/test/tests/signTypedData.ts -------------------------------------------------------------------------------- /test/tests/utils.bigint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/test/tests/utils.bigint.ts -------------------------------------------------------------------------------- /test/tests/websiteAccessSearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/test/tests/websiteAccessSearch.ts -------------------------------------------------------------------------------- /transaction_outcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/transaction_outcome.png -------------------------------------------------------------------------------- /tsconfig-inpage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/tsconfig-inpage.json -------------------------------------------------------------------------------- /tsconfig-test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/tsconfig-test.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkFlorist/TheInterceptor/HEAD/tsconfig.json --------------------------------------------------------------------------------