├── .editorconfig ├── .github └── workflows │ ├── ci.yml │ ├── playwright.yml │ └── security.yml ├── .gitignore ├── .stylelintignore ├── .yarnrc.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── code-explorer └── index.html ├── cspell.json ├── docs └── cover.png ├── e2e-tests ├── code-explorer.spec.ts ├── fixtures │ └── fixtures.ts ├── links.spec.ts ├── main-workflow.spec.ts ├── pages │ ├── code-explorer-page.ts │ └── playground-page.ts ├── playground.spec.ts └── utils.ts ├── emulate └── index.html ├── eslint.config.js ├── index.html ├── package.json ├── play └── index.html ├── playwright.config.ts ├── public └── assets │ ├── asm │ ├── asm.json │ └── schema.json │ ├── code-explorer-cover.png │ ├── cover.png │ ├── emulate.png │ ├── favicon.ico │ ├── playground-cover.png │ ├── sandbox-cover.png │ ├── sandbox-examples │ ├── tact-sandbox-Proofs TEP89 proof should correctly work for discoverable jettons-2025-08-08T08-23-05.json │ └── tolk-sandbox-Counter should reset counter-2025-08-07T20-11-27.json │ └── spec-cover.png ├── sandbox └── index.html ├── spec ├── astro.config.mjs ├── grammars │ ├── grammar-func.json │ ├── grammar-tasm.json │ ├── grammar-tlb.json │ └── grammar-tolk.json ├── index.html ├── public │ ├── favicon.ico │ ├── logo-dark.svg │ └── logo-light.svg ├── spell │ ├── cspell-fift-words-adjusted.txt │ ├── cspell-list.txt │ └── cspell-tvm-instructions.txt ├── src │ ├── content │ │ ├── config.ts │ │ └── docs │ │ │ └── book │ │ │ └── continuations │ │ │ ├── basics-register-c0-cc-savelist-if-instruction.mdx │ │ │ ├── diving-deeper-exit-points-of-continuations.mdx │ │ │ └── manual-handling-and-jmp-vs-execute.mdx │ ├── env.d.ts │ └── starlight.custom.css └── themes │ └── one-light-mod.jsonc ├── src ├── app │ ├── ErrorBoundary.tsx │ ├── PageMetadata.tsx │ └── PageWrapper.tsx ├── entities │ └── transaction │ │ ├── index.ts │ │ └── types.ts ├── features │ ├── common │ │ ├── lib │ │ │ ├── control-registers │ │ │ │ └── control-registers.ts │ │ │ ├── error-codes │ │ │ │ └── error-codes.ts │ │ │ └── query-params.ts │ │ └── ui │ │ │ └── ExitCodeChip │ │ │ ├── ExitCodeChip.tsx │ │ │ └── ExitCodeViewer.module.css │ ├── godbolt │ │ └── lib │ │ │ ├── common │ │ │ └── compiler-errors.ts │ │ │ ├── func │ │ │ ├── compilation.ts │ │ │ ├── error-parser.ts │ │ │ ├── func-wasm │ │ │ │ ├── func-compile.ts │ │ │ │ ├── funcfiftlib.d.ts │ │ │ │ ├── funcfiftlib.js │ │ │ │ ├── funcfiftlib.wasm │ │ │ │ └── funcfiftlib.wasm.ts │ │ │ ├── stdlib.ts │ │ │ └── variables.ts │ │ │ └── tolk │ │ │ ├── compilation.ts │ │ │ ├── error-parser.ts │ │ │ └── types.ts │ ├── sandbox │ │ ├── lib │ │ │ ├── abi │ │ │ │ └── parser.ts │ │ │ ├── contract.ts │ │ │ ├── test-data.ts │ │ │ ├── transaction.ts │ │ │ ├── transport │ │ │ │ ├── contract.ts │ │ │ │ ├── message.ts │ │ │ │ ├── transaction.ts │ │ │ │ └── useWebsocket.ts │ │ │ └── useSandboxData.ts │ │ └── ui │ │ │ ├── ReserveModeViewer │ │ │ ├── ReserveModeViewer.module.css │ │ │ ├── ReserveModeViewer.tsx │ │ │ └── index.ts │ │ │ ├── SendModeViewer │ │ │ ├── SendModeViewer.module.css │ │ │ ├── SendModeViewer.tsx │ │ │ └── index.ts │ │ │ ├── abi │ │ │ ├── ParsedDataView.module.css │ │ │ ├── ParsedDataView.tsx │ │ │ └── index.ts │ │ │ └── index.ts │ ├── spec │ │ ├── gen │ │ │ ├── schema.json │ │ │ └── tvm-specification.json │ │ ├── popularity │ │ │ └── popularity.ts │ │ └── specification-schema.ts │ ├── tasm │ │ └── lib │ │ │ ├── documentation.ts │ │ │ ├── executor.ts │ │ │ ├── index.ts │ │ │ └── types.ts │ ├── themeSwitcher │ │ └── ui │ │ │ ├── ThemeToggleButton.module.css │ │ │ └── ThemeToggleButton.tsx │ └── txTrace │ │ ├── hooks │ │ ├── index.ts │ │ ├── useFuncLineStepper.ts │ │ ├── useLineExecutionData.ts │ │ └── useTraceStepper.ts │ │ ├── lib │ │ ├── actions.ts │ │ ├── errors.ts │ │ ├── links.spec.ts │ │ ├── links.ts │ │ └── traceTx.ts │ │ └── ui │ │ ├── ParsedBodyViewer.module.css │ │ ├── ParsedBodyViewer.tsx │ │ ├── RetraceResultView.tsx │ │ ├── StepInstructionBlock.module.css │ │ ├── StepInstructionBlock.tsx │ │ ├── TransactionDetailsTable.module.css │ │ ├── TransactionDetailsTable.tsx │ │ ├── VMLogsView.module.css │ │ ├── VMLogsView.tsx │ │ └── index.ts ├── index.css ├── pages │ ├── EmulatePage │ │ ├── EmulatePage.module.css │ │ ├── EmulatePage.tsx │ │ ├── emulateMessage.ts │ │ └── main.tsx │ ├── GodboltPage │ │ ├── GodboltPage.module.css │ │ ├── GodboltPage.tsx │ │ ├── Tutorial.ts │ │ ├── components │ │ │ ├── CompileButton.tsx │ │ │ ├── CompilerErrors.module.css │ │ │ ├── CompilerErrors.tsx │ │ │ ├── CustomSegmentedSelector.tsx │ │ │ ├── LanguageSelector.module.css │ │ │ ├── LanguageSelector.tsx │ │ │ ├── SettingsDropdown.tsx │ │ │ └── index.ts │ │ ├── hooks │ │ │ ├── index.ts │ │ │ ├── useFuncCompilation.ts │ │ │ ├── useGodboltSettings.ts │ │ │ ├── useSourceMapHighlight.ts │ │ │ └── useTolkCompilation.ts │ │ ├── main.tsx │ │ └── urlCodeSharing.ts │ ├── InstructionsPage │ │ ├── InstructionsPage.module.css │ │ ├── InstructionsPage.tsx │ │ ├── components │ │ │ ├── CategoryTabs │ │ │ │ ├── CategoryTabs.module.css │ │ │ │ ├── CategoryTabs.tsx │ │ │ │ └── index.ts │ │ │ ├── ContinuationsDocsBanner │ │ │ │ ├── ContinuationsDocsBanner.module.css │ │ │ │ └── ContinuationsDocsBanner.tsx │ │ │ ├── Footer │ │ │ │ ├── Footer.module.css │ │ │ │ ├── Footer.tsx │ │ │ │ └── index.ts │ │ │ ├── InstructionTable │ │ │ │ ├── AnchorButton │ │ │ │ │ ├── AnchorButton.module.css │ │ │ │ │ ├── AnchorButton.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── ArithmeticCalculator.module.css │ │ │ │ ├── ArithmeticCalculator.tsx │ │ │ │ ├── ExampleItem.module.css │ │ │ │ ├── ExampleItem.tsx │ │ │ │ ├── FiftInstructionDetail.module.css │ │ │ │ ├── FiftInstructionDetail.tsx │ │ │ │ ├── HighlightedAssembly.module.css │ │ │ │ ├── HighlightedAssembly.tsx │ │ │ │ ├── InlineOperand.module.css │ │ │ │ ├── InlineOperand.tsx │ │ │ │ ├── InstructionDetail.module.css │ │ │ │ ├── InstructionDetail.tsx │ │ │ │ ├── InstructionTable.module.css │ │ │ │ ├── InstructionTable.tsx │ │ │ │ ├── OperandsView.module.css │ │ │ │ ├── OperandsView.tsx │ │ │ │ ├── RegisterSquare.module.css │ │ │ │ ├── RegisterSquare.tsx │ │ │ │ ├── StackDisplay.module.css │ │ │ │ ├── StackDisplay.tsx │ │ │ │ ├── operands.tsx │ │ │ │ └── utils.ts │ │ │ ├── ReferenceBubble │ │ │ │ ├── ReferenceBubble.module.css │ │ │ │ └── ReferenceBubble.tsx │ │ │ ├── SearchColumnsSelector │ │ │ │ ├── SearchColumnsSelector.module.css │ │ │ │ ├── SearchColumnsSelector.tsx │ │ │ │ └── index.ts │ │ │ └── SortSelector │ │ │ │ ├── SortSelector.module.css │ │ │ │ ├── SortSelector.tsx │ │ │ │ └── index.ts │ │ ├── hooks │ │ │ └── useProcessedMarkdown.tsx │ │ ├── lib │ │ │ └── formatCategory.ts │ │ ├── main.tsx │ │ └── settings.ts │ ├── PlaygroundPage │ │ ├── PlaygroundPage.module.css │ │ ├── PlaygroundPage.tsx │ │ ├── Tutorial.ts │ │ ├── components │ │ │ └── ExecuteButton.tsx │ │ ├── hooks │ │ │ └── usePlaygroundSettings.ts │ │ └── main.tsx │ ├── SandboxPage │ │ ├── SandboxPage.module.css │ │ ├── SandboxPage.tsx │ │ ├── components │ │ │ ├── CodeBlock │ │ │ │ ├── CodeBlock.module.css │ │ │ │ ├── CodeBlock.tsx │ │ │ │ └── index.ts │ │ │ ├── ConnectionGuide │ │ │ │ ├── ConnectionGuide.module.css │ │ │ │ └── ConnectionGuide.tsx │ │ │ ├── ContractChip │ │ │ │ ├── ContractChip.module.css │ │ │ │ └── ContractChip.tsx │ │ │ ├── ContractDetails │ │ │ │ ├── ContractDetails.module.css │ │ │ │ └── ContractDetails.tsx │ │ │ ├── DaemonSettings │ │ │ │ ├── DaemonSettings.module.css │ │ │ │ └── DaemonSettings.tsx │ │ │ ├── DownloadTestDataButton.tsx │ │ │ ├── ExampleDataButtons.tsx │ │ │ ├── LoadingState │ │ │ │ ├── LoadingState.module.css │ │ │ │ └── LoadingState.tsx │ │ │ ├── TestInfo │ │ │ │ ├── TestInfo.module.css │ │ │ │ └── TestInfo.tsx │ │ │ ├── TransactionShortInfo │ │ │ │ ├── ActionsSummary.module.css │ │ │ │ ├── ActionsSummary.tsx │ │ │ │ ├── TransactionShortInfo.module.css │ │ │ │ └── TransactionShortInfo.tsx │ │ │ ├── TransactionTraceViewer │ │ │ │ ├── TransactionTraceViewer.module.css │ │ │ │ ├── TransactionTraceViewer.tsx │ │ │ │ └── index.ts │ │ │ ├── TransactionTree │ │ │ │ ├── SmartTooltip.module.css │ │ │ │ ├── SmartTooltip.tsx │ │ │ │ ├── TransactionTree.module.css │ │ │ │ ├── TransactionTree.tsx │ │ │ │ └── useTooltip.ts │ │ │ ├── UploadTestDataButton.tsx │ │ │ ├── examples.ts │ │ │ └── index.ts │ │ └── main.tsx │ └── TracePage │ │ ├── StackItemViewer.module.css │ │ ├── StackItemViewer.tsx │ │ ├── TracePage.module.css │ │ ├── TracePage.tsx │ │ └── main.tsx ├── polyfills.ts ├── setupTests.ts ├── shared │ ├── CopyButton │ │ ├── CopyButton.module.css │ │ └── CopyButton.tsx │ ├── lib │ │ ├── errorContext.tsx │ │ ├── format │ │ │ └── index.tsx │ │ ├── themeContext.tsx │ │ ├── useGlobalError.tsx │ │ ├── useTheme.ts │ │ └── useTxHistory.ts │ └── ui │ │ ├── AddressChip │ │ ├── AddressChip.module.css │ │ ├── AddressChip.tsx │ │ └── index.ts │ │ ├── AddressDetails │ │ ├── AddressDetails.module.css │ │ ├── AddressDetails.tsx │ │ └── index.ts │ │ ├── Badge │ │ ├── Badge.module.css │ │ ├── Badge.tsx │ │ └── index.ts │ │ ├── Button │ │ ├── Button.module.css │ │ ├── Button.tsx │ │ └── index.ts │ │ ├── ButtonLoader │ │ ├── ButtonLoader.module.css │ │ └── ButtonLoader.tsx │ │ ├── CellTreeView │ │ ├── CellTreeView.module.css │ │ └── CellTreeView.tsx │ │ ├── CodeEditor │ │ ├── CodeEditor.module.css │ │ ├── CodeEditor.tsx │ │ ├── hooks │ │ │ ├── index.ts │ │ │ ├── useDecorations.ts │ │ │ ├── useEditorEvents.ts │ │ │ ├── useFolding.ts │ │ │ ├── useFuncGasInlayProvider.ts │ │ │ ├── useFuncLanguageProviders.ts │ │ │ ├── useImplicitRetInlayProvider.ts │ │ │ ├── useMonacoSetup.ts │ │ │ ├── useTasmCodeLensProvider.ts │ │ │ ├── useTasmCompletionProvider.ts │ │ │ ├── useTasmHoverProvider.ts │ │ │ ├── useTasmInlayProvider.ts │ │ │ └── useTolkLanguageProviders.ts │ │ ├── index.ts │ │ ├── languages │ │ │ ├── FuncLanguageDefinition.ts │ │ │ ├── TasmLanguageDefinition.ts │ │ │ ├── TolkLanguageDefinition.ts │ │ │ └── index.ts │ │ └── themes.tsx │ │ ├── DataBlock │ │ ├── DataBlock.module.css │ │ ├── DataBlock.tsx │ │ └── index.ts │ │ ├── ErrorBanner │ │ ├── ErrorBanner.module.css │ │ └── ErrorBanner.tsx │ │ ├── FullScreenLoader │ │ ├── FullScreenLoader.module.css │ │ └── FullScreenLoader.tsx │ │ ├── Icon │ │ ├── CheckIcon.tsx │ │ ├── ChevronDownIcon.tsx │ │ ├── ChevronUpIcon.tsx │ │ ├── CodeIcon.tsx │ │ ├── EyeIcon.tsx │ │ ├── Icon.tsx │ │ ├── LightBulbIcon.tsx │ │ ├── MoonIcon.tsx │ │ ├── RefreshIcon.tsx │ │ ├── RocketIcon.tsx │ │ ├── SunIcon.tsx │ │ ├── ZapIcon.tsx │ │ └── index.ts │ │ ├── InlineLoader │ │ ├── InlineLoader.module.css │ │ ├── InlineLoader.tsx │ │ └── index.ts │ │ ├── Modal │ │ ├── Modal.module.css │ │ ├── Modal.tsx │ │ └── index.ts │ │ ├── OpcodeChip │ │ ├── OpcodeChip.module.css │ │ └── OpcodeChip.tsx │ │ ├── PageHeader │ │ ├── PageHeader.module.css │ │ ├── PageHeader.tsx │ │ └── index.ts │ │ ├── SearchInput │ │ ├── SearchInput.module.css │ │ ├── SearchInput.tsx │ │ └── index.ts │ │ ├── SettingsDropdown │ │ ├── SettingsDropdown.module.css │ │ └── SettingsDropdown.tsx │ │ ├── ShareButton │ │ └── ShareButton.tsx │ │ ├── StackEditor │ │ ├── StackEditor.module.css │ │ ├── StackEditor.tsx │ │ └── index.ts │ │ ├── StackItemDetails │ │ ├── StackItemDetails.module.css │ │ ├── StackItemDetails.tsx │ │ └── index.ts │ │ ├── StackViewer │ │ ├── StackViewer.module.css │ │ ├── StackViewer.tsx │ │ └── index.ts │ │ ├── StatusBadge │ │ ├── StatusBadge.module.css │ │ ├── StatusBadge.tsx │ │ └── index.ts │ │ ├── Tooltip │ │ ├── Tooltip.module.css │ │ ├── Tooltip.tsx │ │ └── index.ts │ │ ├── TooltipHint │ │ ├── TooltipHint.module.css │ │ ├── TooltipHint.tsx │ │ └── index.ts │ │ ├── TraceSidePanel │ │ ├── TraceSidePanel.module.css │ │ ├── TraceSidePanel.tsx │ │ └── index.ts │ │ └── Tutorial │ │ ├── Tutorial.module.css │ │ ├── Tutorial.tsx │ │ ├── index.ts │ │ └── useTutorial.ts └── vite-env.d.ts ├── stylelint.config.mjs ├── tsconfig.app.json ├── tsconfig.eslint.json ├── tsconfig.json ├── tsconfig.node.json ├── vite.config.ts └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/playwright.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/.github/workflows/playwright.yml -------------------------------------------------------------------------------- /.github/workflows/security.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/.github/workflows/security.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/.gitignore -------------------------------------------------------------------------------- /.stylelintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/.stylelintignore -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/README.md -------------------------------------------------------------------------------- /code-explorer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/code-explorer/index.html -------------------------------------------------------------------------------- /cspell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/cspell.json -------------------------------------------------------------------------------- /docs/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/docs/cover.png -------------------------------------------------------------------------------- /e2e-tests/code-explorer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/e2e-tests/code-explorer.spec.ts -------------------------------------------------------------------------------- /e2e-tests/fixtures/fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/e2e-tests/fixtures/fixtures.ts -------------------------------------------------------------------------------- /e2e-tests/links.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/e2e-tests/links.spec.ts -------------------------------------------------------------------------------- /e2e-tests/main-workflow.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/e2e-tests/main-workflow.spec.ts -------------------------------------------------------------------------------- /e2e-tests/pages/code-explorer-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/e2e-tests/pages/code-explorer-page.ts -------------------------------------------------------------------------------- /e2e-tests/pages/playground-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/e2e-tests/pages/playground-page.ts -------------------------------------------------------------------------------- /e2e-tests/playground.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/e2e-tests/playground.spec.ts -------------------------------------------------------------------------------- /e2e-tests/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/e2e-tests/utils.ts -------------------------------------------------------------------------------- /emulate/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/emulate/index.html -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/package.json -------------------------------------------------------------------------------- /play/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/play/index.html -------------------------------------------------------------------------------- /playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/playwright.config.ts -------------------------------------------------------------------------------- /public/assets/asm/asm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/public/assets/asm/asm.json -------------------------------------------------------------------------------- /public/assets/asm/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/public/assets/asm/schema.json -------------------------------------------------------------------------------- /public/assets/code-explorer-cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/public/assets/code-explorer-cover.png -------------------------------------------------------------------------------- /public/assets/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/public/assets/cover.png -------------------------------------------------------------------------------- /public/assets/emulate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/public/assets/emulate.png -------------------------------------------------------------------------------- /public/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/public/assets/favicon.ico -------------------------------------------------------------------------------- /public/assets/playground-cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/public/assets/playground-cover.png -------------------------------------------------------------------------------- /public/assets/sandbox-cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/public/assets/sandbox-cover.png -------------------------------------------------------------------------------- /public/assets/sandbox-examples/tact-sandbox-Proofs TEP89 proof should correctly work for discoverable jettons-2025-08-08T08-23-05.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/public/assets/sandbox-examples/tact-sandbox-Proofs TEP89 proof should correctly work for discoverable jettons-2025-08-08T08-23-05.json -------------------------------------------------------------------------------- /public/assets/sandbox-examples/tolk-sandbox-Counter should reset counter-2025-08-07T20-11-27.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/public/assets/sandbox-examples/tolk-sandbox-Counter should reset counter-2025-08-07T20-11-27.json -------------------------------------------------------------------------------- /public/assets/spec-cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/public/assets/spec-cover.png -------------------------------------------------------------------------------- /sandbox/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/sandbox/index.html -------------------------------------------------------------------------------- /spec/astro.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/spec/astro.config.mjs -------------------------------------------------------------------------------- /spec/grammars/grammar-func.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/spec/grammars/grammar-func.json -------------------------------------------------------------------------------- /spec/grammars/grammar-tasm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/spec/grammars/grammar-tasm.json -------------------------------------------------------------------------------- /spec/grammars/grammar-tlb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/spec/grammars/grammar-tlb.json -------------------------------------------------------------------------------- /spec/grammars/grammar-tolk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/spec/grammars/grammar-tolk.json -------------------------------------------------------------------------------- /spec/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/spec/index.html -------------------------------------------------------------------------------- /spec/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/spec/public/favicon.ico -------------------------------------------------------------------------------- /spec/public/logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/spec/public/logo-dark.svg -------------------------------------------------------------------------------- /spec/public/logo-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/spec/public/logo-light.svg -------------------------------------------------------------------------------- /spec/spell/cspell-fift-words-adjusted.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/spec/spell/cspell-fift-words-adjusted.txt -------------------------------------------------------------------------------- /spec/spell/cspell-list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/spec/spell/cspell-list.txt -------------------------------------------------------------------------------- /spec/spell/cspell-tvm-instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/spec/spell/cspell-tvm-instructions.txt -------------------------------------------------------------------------------- /spec/src/content/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/spec/src/content/config.ts -------------------------------------------------------------------------------- /spec/src/content/docs/book/continuations/basics-register-c0-cc-savelist-if-instruction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/spec/src/content/docs/book/continuations/basics-register-c0-cc-savelist-if-instruction.mdx -------------------------------------------------------------------------------- /spec/src/content/docs/book/continuations/diving-deeper-exit-points-of-continuations.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/spec/src/content/docs/book/continuations/diving-deeper-exit-points-of-continuations.mdx -------------------------------------------------------------------------------- /spec/src/content/docs/book/continuations/manual-handling-and-jmp-vs-execute.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/spec/src/content/docs/book/continuations/manual-handling-and-jmp-vs-execute.mdx -------------------------------------------------------------------------------- /spec/src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/spec/src/env.d.ts -------------------------------------------------------------------------------- /spec/src/starlight.custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/spec/src/starlight.custom.css -------------------------------------------------------------------------------- /spec/themes/one-light-mod.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/spec/themes/one-light-mod.jsonc -------------------------------------------------------------------------------- /src/app/ErrorBoundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/app/ErrorBoundary.tsx -------------------------------------------------------------------------------- /src/app/PageMetadata.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/app/PageMetadata.tsx -------------------------------------------------------------------------------- /src/app/PageWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/app/PageWrapper.tsx -------------------------------------------------------------------------------- /src/entities/transaction/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./types" 2 | -------------------------------------------------------------------------------- /src/entities/transaction/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/entities/transaction/types.ts -------------------------------------------------------------------------------- /src/features/common/lib/control-registers/control-registers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/common/lib/control-registers/control-registers.ts -------------------------------------------------------------------------------- /src/features/common/lib/error-codes/error-codes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/common/lib/error-codes/error-codes.ts -------------------------------------------------------------------------------- /src/features/common/lib/query-params.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/common/lib/query-params.ts -------------------------------------------------------------------------------- /src/features/common/ui/ExitCodeChip/ExitCodeChip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/common/ui/ExitCodeChip/ExitCodeChip.tsx -------------------------------------------------------------------------------- /src/features/common/ui/ExitCodeChip/ExitCodeViewer.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/common/ui/ExitCodeChip/ExitCodeViewer.module.css -------------------------------------------------------------------------------- /src/features/godbolt/lib/common/compiler-errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/godbolt/lib/common/compiler-errors.ts -------------------------------------------------------------------------------- /src/features/godbolt/lib/func/compilation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/godbolt/lib/func/compilation.ts -------------------------------------------------------------------------------- /src/features/godbolt/lib/func/error-parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/godbolt/lib/func/error-parser.ts -------------------------------------------------------------------------------- /src/features/godbolt/lib/func/func-wasm/func-compile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/godbolt/lib/func/func-wasm/func-compile.ts -------------------------------------------------------------------------------- /src/features/godbolt/lib/func/func-wasm/funcfiftlib.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/godbolt/lib/func/func-wasm/funcfiftlib.d.ts -------------------------------------------------------------------------------- /src/features/godbolt/lib/func/func-wasm/funcfiftlib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/godbolt/lib/func/func-wasm/funcfiftlib.js -------------------------------------------------------------------------------- /src/features/godbolt/lib/func/func-wasm/funcfiftlib.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/godbolt/lib/func/func-wasm/funcfiftlib.wasm -------------------------------------------------------------------------------- /src/features/godbolt/lib/func/func-wasm/funcfiftlib.wasm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/godbolt/lib/func/func-wasm/funcfiftlib.wasm.ts -------------------------------------------------------------------------------- /src/features/godbolt/lib/func/stdlib.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/godbolt/lib/func/stdlib.ts -------------------------------------------------------------------------------- /src/features/godbolt/lib/func/variables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/godbolt/lib/func/variables.ts -------------------------------------------------------------------------------- /src/features/godbolt/lib/tolk/compilation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/godbolt/lib/tolk/compilation.ts -------------------------------------------------------------------------------- /src/features/godbolt/lib/tolk/error-parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/godbolt/lib/tolk/error-parser.ts -------------------------------------------------------------------------------- /src/features/godbolt/lib/tolk/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/godbolt/lib/tolk/types.ts -------------------------------------------------------------------------------- /src/features/sandbox/lib/abi/parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/sandbox/lib/abi/parser.ts -------------------------------------------------------------------------------- /src/features/sandbox/lib/contract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/sandbox/lib/contract.ts -------------------------------------------------------------------------------- /src/features/sandbox/lib/test-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/sandbox/lib/test-data.ts -------------------------------------------------------------------------------- /src/features/sandbox/lib/transaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/sandbox/lib/transaction.ts -------------------------------------------------------------------------------- /src/features/sandbox/lib/transport/contract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/sandbox/lib/transport/contract.ts -------------------------------------------------------------------------------- /src/features/sandbox/lib/transport/message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/sandbox/lib/transport/message.ts -------------------------------------------------------------------------------- /src/features/sandbox/lib/transport/transaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/sandbox/lib/transport/transaction.ts -------------------------------------------------------------------------------- /src/features/sandbox/lib/transport/useWebsocket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/sandbox/lib/transport/useWebsocket.ts -------------------------------------------------------------------------------- /src/features/sandbox/lib/useSandboxData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/sandbox/lib/useSandboxData.ts -------------------------------------------------------------------------------- /src/features/sandbox/ui/ReserveModeViewer/ReserveModeViewer.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/sandbox/ui/ReserveModeViewer/ReserveModeViewer.module.css -------------------------------------------------------------------------------- /src/features/sandbox/ui/ReserveModeViewer/ReserveModeViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/sandbox/ui/ReserveModeViewer/ReserveModeViewer.tsx -------------------------------------------------------------------------------- /src/features/sandbox/ui/ReserveModeViewer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/sandbox/ui/ReserveModeViewer/index.ts -------------------------------------------------------------------------------- /src/features/sandbox/ui/SendModeViewer/SendModeViewer.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/sandbox/ui/SendModeViewer/SendModeViewer.module.css -------------------------------------------------------------------------------- /src/features/sandbox/ui/SendModeViewer/SendModeViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/sandbox/ui/SendModeViewer/SendModeViewer.tsx -------------------------------------------------------------------------------- /src/features/sandbox/ui/SendModeViewer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/sandbox/ui/SendModeViewer/index.ts -------------------------------------------------------------------------------- /src/features/sandbox/ui/abi/ParsedDataView.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/sandbox/ui/abi/ParsedDataView.module.css -------------------------------------------------------------------------------- /src/features/sandbox/ui/abi/ParsedDataView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/sandbox/ui/abi/ParsedDataView.tsx -------------------------------------------------------------------------------- /src/features/sandbox/ui/abi/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/sandbox/ui/abi/index.ts -------------------------------------------------------------------------------- /src/features/sandbox/ui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/sandbox/ui/index.ts -------------------------------------------------------------------------------- /src/features/spec/gen/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/spec/gen/schema.json -------------------------------------------------------------------------------- /src/features/spec/gen/tvm-specification.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/spec/gen/tvm-specification.json -------------------------------------------------------------------------------- /src/features/spec/popularity/popularity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/spec/popularity/popularity.ts -------------------------------------------------------------------------------- /src/features/spec/specification-schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/spec/specification-schema.ts -------------------------------------------------------------------------------- /src/features/tasm/lib/documentation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/tasm/lib/documentation.ts -------------------------------------------------------------------------------- /src/features/tasm/lib/executor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/tasm/lib/executor.ts -------------------------------------------------------------------------------- /src/features/tasm/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/tasm/lib/index.ts -------------------------------------------------------------------------------- /src/features/tasm/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/tasm/lib/types.ts -------------------------------------------------------------------------------- /src/features/themeSwitcher/ui/ThemeToggleButton.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/themeSwitcher/ui/ThemeToggleButton.module.css -------------------------------------------------------------------------------- /src/features/themeSwitcher/ui/ThemeToggleButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/themeSwitcher/ui/ThemeToggleButton.tsx -------------------------------------------------------------------------------- /src/features/txTrace/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/txTrace/hooks/index.ts -------------------------------------------------------------------------------- /src/features/txTrace/hooks/useFuncLineStepper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/txTrace/hooks/useFuncLineStepper.ts -------------------------------------------------------------------------------- /src/features/txTrace/hooks/useLineExecutionData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/txTrace/hooks/useLineExecutionData.ts -------------------------------------------------------------------------------- /src/features/txTrace/hooks/useTraceStepper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/txTrace/hooks/useTraceStepper.ts -------------------------------------------------------------------------------- /src/features/txTrace/lib/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/txTrace/lib/actions.ts -------------------------------------------------------------------------------- /src/features/txTrace/lib/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/txTrace/lib/errors.ts -------------------------------------------------------------------------------- /src/features/txTrace/lib/links.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/txTrace/lib/links.spec.ts -------------------------------------------------------------------------------- /src/features/txTrace/lib/links.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/txTrace/lib/links.ts -------------------------------------------------------------------------------- /src/features/txTrace/lib/traceTx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/txTrace/lib/traceTx.ts -------------------------------------------------------------------------------- /src/features/txTrace/ui/ParsedBodyViewer.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/txTrace/ui/ParsedBodyViewer.module.css -------------------------------------------------------------------------------- /src/features/txTrace/ui/ParsedBodyViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/txTrace/ui/ParsedBodyViewer.tsx -------------------------------------------------------------------------------- /src/features/txTrace/ui/RetraceResultView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/txTrace/ui/RetraceResultView.tsx -------------------------------------------------------------------------------- /src/features/txTrace/ui/StepInstructionBlock.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/txTrace/ui/StepInstructionBlock.module.css -------------------------------------------------------------------------------- /src/features/txTrace/ui/StepInstructionBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/txTrace/ui/StepInstructionBlock.tsx -------------------------------------------------------------------------------- /src/features/txTrace/ui/TransactionDetailsTable.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/txTrace/ui/TransactionDetailsTable.module.css -------------------------------------------------------------------------------- /src/features/txTrace/ui/TransactionDetailsTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/txTrace/ui/TransactionDetailsTable.tsx -------------------------------------------------------------------------------- /src/features/txTrace/ui/VMLogsView.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/txTrace/ui/VMLogsView.module.css -------------------------------------------------------------------------------- /src/features/txTrace/ui/VMLogsView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/txTrace/ui/VMLogsView.tsx -------------------------------------------------------------------------------- /src/features/txTrace/ui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/features/txTrace/ui/index.ts -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/index.css -------------------------------------------------------------------------------- /src/pages/EmulatePage/EmulatePage.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/EmulatePage/EmulatePage.module.css -------------------------------------------------------------------------------- /src/pages/EmulatePage/EmulatePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/EmulatePage/EmulatePage.tsx -------------------------------------------------------------------------------- /src/pages/EmulatePage/emulateMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/EmulatePage/emulateMessage.ts -------------------------------------------------------------------------------- /src/pages/EmulatePage/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/EmulatePage/main.tsx -------------------------------------------------------------------------------- /src/pages/GodboltPage/GodboltPage.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/GodboltPage/GodboltPage.module.css -------------------------------------------------------------------------------- /src/pages/GodboltPage/GodboltPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/GodboltPage/GodboltPage.tsx -------------------------------------------------------------------------------- /src/pages/GodboltPage/Tutorial.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/GodboltPage/Tutorial.ts -------------------------------------------------------------------------------- /src/pages/GodboltPage/components/CompileButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/GodboltPage/components/CompileButton.tsx -------------------------------------------------------------------------------- /src/pages/GodboltPage/components/CompilerErrors.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/GodboltPage/components/CompilerErrors.module.css -------------------------------------------------------------------------------- /src/pages/GodboltPage/components/CompilerErrors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/GodboltPage/components/CompilerErrors.tsx -------------------------------------------------------------------------------- /src/pages/GodboltPage/components/CustomSegmentedSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/GodboltPage/components/CustomSegmentedSelector.tsx -------------------------------------------------------------------------------- /src/pages/GodboltPage/components/LanguageSelector.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/GodboltPage/components/LanguageSelector.module.css -------------------------------------------------------------------------------- /src/pages/GodboltPage/components/LanguageSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/GodboltPage/components/LanguageSelector.tsx -------------------------------------------------------------------------------- /src/pages/GodboltPage/components/SettingsDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/GodboltPage/components/SettingsDropdown.tsx -------------------------------------------------------------------------------- /src/pages/GodboltPage/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/GodboltPage/components/index.ts -------------------------------------------------------------------------------- /src/pages/GodboltPage/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/GodboltPage/hooks/index.ts -------------------------------------------------------------------------------- /src/pages/GodboltPage/hooks/useFuncCompilation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/GodboltPage/hooks/useFuncCompilation.ts -------------------------------------------------------------------------------- /src/pages/GodboltPage/hooks/useGodboltSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/GodboltPage/hooks/useGodboltSettings.ts -------------------------------------------------------------------------------- /src/pages/GodboltPage/hooks/useSourceMapHighlight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/GodboltPage/hooks/useSourceMapHighlight.ts -------------------------------------------------------------------------------- /src/pages/GodboltPage/hooks/useTolkCompilation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/GodboltPage/hooks/useTolkCompilation.ts -------------------------------------------------------------------------------- /src/pages/GodboltPage/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/GodboltPage/main.tsx -------------------------------------------------------------------------------- /src/pages/GodboltPage/urlCodeSharing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/GodboltPage/urlCodeSharing.ts -------------------------------------------------------------------------------- /src/pages/InstructionsPage/InstructionsPage.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/InstructionsPage/InstructionsPage.module.css -------------------------------------------------------------------------------- /src/pages/InstructionsPage/InstructionsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/InstructionsPage/InstructionsPage.tsx -------------------------------------------------------------------------------- /src/pages/InstructionsPage/components/CategoryTabs/CategoryTabs.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/InstructionsPage/components/CategoryTabs/CategoryTabs.module.css -------------------------------------------------------------------------------- /src/pages/InstructionsPage/components/CategoryTabs/CategoryTabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/InstructionsPage/components/CategoryTabs/CategoryTabs.tsx -------------------------------------------------------------------------------- /src/pages/InstructionsPage/components/CategoryTabs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/InstructionsPage/components/CategoryTabs/index.ts -------------------------------------------------------------------------------- /src/pages/InstructionsPage/components/ContinuationsDocsBanner/ContinuationsDocsBanner.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/InstructionsPage/components/ContinuationsDocsBanner/ContinuationsDocsBanner.module.css -------------------------------------------------------------------------------- /src/pages/InstructionsPage/components/ContinuationsDocsBanner/ContinuationsDocsBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/InstructionsPage/components/ContinuationsDocsBanner/ContinuationsDocsBanner.tsx -------------------------------------------------------------------------------- /src/pages/InstructionsPage/components/Footer/Footer.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/InstructionsPage/components/Footer/Footer.module.css -------------------------------------------------------------------------------- /src/pages/InstructionsPage/components/Footer/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/InstructionsPage/components/Footer/Footer.tsx -------------------------------------------------------------------------------- /src/pages/InstructionsPage/components/Footer/index.ts: -------------------------------------------------------------------------------- 1 | export {default} from "./Footer" 2 | -------------------------------------------------------------------------------- /src/pages/InstructionsPage/components/InstructionTable/AnchorButton/AnchorButton.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/InstructionsPage/components/InstructionTable/AnchorButton/AnchorButton.module.css -------------------------------------------------------------------------------- /src/pages/InstructionsPage/components/InstructionTable/AnchorButton/AnchorButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/InstructionsPage/components/InstructionTable/AnchorButton/AnchorButton.tsx -------------------------------------------------------------------------------- /src/pages/InstructionsPage/components/InstructionTable/AnchorButton/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/InstructionsPage/components/InstructionTable/AnchorButton/index.ts -------------------------------------------------------------------------------- /src/pages/InstructionsPage/components/InstructionTable/ArithmeticCalculator.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/InstructionsPage/components/InstructionTable/ArithmeticCalculator.module.css -------------------------------------------------------------------------------- /src/pages/InstructionsPage/components/InstructionTable/ArithmeticCalculator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/InstructionsPage/components/InstructionTable/ArithmeticCalculator.tsx -------------------------------------------------------------------------------- /src/pages/InstructionsPage/components/InstructionTable/ExampleItem.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/InstructionsPage/components/InstructionTable/ExampleItem.module.css -------------------------------------------------------------------------------- /src/pages/InstructionsPage/components/InstructionTable/ExampleItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/InstructionsPage/components/InstructionTable/ExampleItem.tsx -------------------------------------------------------------------------------- /src/pages/InstructionsPage/components/InstructionTable/FiftInstructionDetail.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/InstructionsPage/components/InstructionTable/FiftInstructionDetail.module.css -------------------------------------------------------------------------------- /src/pages/InstructionsPage/components/InstructionTable/FiftInstructionDetail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/InstructionsPage/components/InstructionTable/FiftInstructionDetail.tsx -------------------------------------------------------------------------------- /src/pages/InstructionsPage/components/InstructionTable/HighlightedAssembly.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/InstructionsPage/components/InstructionTable/HighlightedAssembly.module.css -------------------------------------------------------------------------------- /src/pages/InstructionsPage/components/InstructionTable/HighlightedAssembly.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/InstructionsPage/components/InstructionTable/HighlightedAssembly.tsx -------------------------------------------------------------------------------- /src/pages/InstructionsPage/components/InstructionTable/InlineOperand.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/InstructionsPage/components/InstructionTable/InlineOperand.module.css -------------------------------------------------------------------------------- /src/pages/InstructionsPage/components/InstructionTable/InlineOperand.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/InstructionsPage/components/InstructionTable/InlineOperand.tsx -------------------------------------------------------------------------------- /src/pages/InstructionsPage/components/InstructionTable/InstructionDetail.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/InstructionsPage/components/InstructionTable/InstructionDetail.module.css -------------------------------------------------------------------------------- /src/pages/InstructionsPage/components/InstructionTable/InstructionDetail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/InstructionsPage/components/InstructionTable/InstructionDetail.tsx -------------------------------------------------------------------------------- /src/pages/InstructionsPage/components/InstructionTable/InstructionTable.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/InstructionsPage/components/InstructionTable/InstructionTable.module.css -------------------------------------------------------------------------------- /src/pages/InstructionsPage/components/InstructionTable/InstructionTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/InstructionsPage/components/InstructionTable/InstructionTable.tsx -------------------------------------------------------------------------------- /src/pages/InstructionsPage/components/InstructionTable/OperandsView.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/InstructionsPage/components/InstructionTable/OperandsView.module.css -------------------------------------------------------------------------------- /src/pages/InstructionsPage/components/InstructionTable/OperandsView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/InstructionsPage/components/InstructionTable/OperandsView.tsx -------------------------------------------------------------------------------- /src/pages/InstructionsPage/components/InstructionTable/RegisterSquare.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/InstructionsPage/components/InstructionTable/RegisterSquare.module.css -------------------------------------------------------------------------------- /src/pages/InstructionsPage/components/InstructionTable/RegisterSquare.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/InstructionsPage/components/InstructionTable/RegisterSquare.tsx -------------------------------------------------------------------------------- /src/pages/InstructionsPage/components/InstructionTable/StackDisplay.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/InstructionsPage/components/InstructionTable/StackDisplay.module.css -------------------------------------------------------------------------------- /src/pages/InstructionsPage/components/InstructionTable/StackDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/InstructionsPage/components/InstructionTable/StackDisplay.tsx -------------------------------------------------------------------------------- /src/pages/InstructionsPage/components/InstructionTable/operands.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/InstructionsPage/components/InstructionTable/operands.tsx -------------------------------------------------------------------------------- /src/pages/InstructionsPage/components/InstructionTable/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/InstructionsPage/components/InstructionTable/utils.ts -------------------------------------------------------------------------------- /src/pages/InstructionsPage/components/ReferenceBubble/ReferenceBubble.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/InstructionsPage/components/ReferenceBubble/ReferenceBubble.module.css -------------------------------------------------------------------------------- /src/pages/InstructionsPage/components/ReferenceBubble/ReferenceBubble.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/InstructionsPage/components/ReferenceBubble/ReferenceBubble.tsx -------------------------------------------------------------------------------- /src/pages/InstructionsPage/components/SearchColumnsSelector/SearchColumnsSelector.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/InstructionsPage/components/SearchColumnsSelector/SearchColumnsSelector.module.css -------------------------------------------------------------------------------- /src/pages/InstructionsPage/components/SearchColumnsSelector/SearchColumnsSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/InstructionsPage/components/SearchColumnsSelector/SearchColumnsSelector.tsx -------------------------------------------------------------------------------- /src/pages/InstructionsPage/components/SearchColumnsSelector/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/InstructionsPage/components/SearchColumnsSelector/index.ts -------------------------------------------------------------------------------- /src/pages/InstructionsPage/components/SortSelector/SortSelector.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/InstructionsPage/components/SortSelector/SortSelector.module.css -------------------------------------------------------------------------------- /src/pages/InstructionsPage/components/SortSelector/SortSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/InstructionsPage/components/SortSelector/SortSelector.tsx -------------------------------------------------------------------------------- /src/pages/InstructionsPage/components/SortSelector/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/InstructionsPage/components/SortSelector/index.ts -------------------------------------------------------------------------------- /src/pages/InstructionsPage/hooks/useProcessedMarkdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/InstructionsPage/hooks/useProcessedMarkdown.tsx -------------------------------------------------------------------------------- /src/pages/InstructionsPage/lib/formatCategory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/InstructionsPage/lib/formatCategory.ts -------------------------------------------------------------------------------- /src/pages/InstructionsPage/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/InstructionsPage/main.tsx -------------------------------------------------------------------------------- /src/pages/InstructionsPage/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/InstructionsPage/settings.ts -------------------------------------------------------------------------------- /src/pages/PlaygroundPage/PlaygroundPage.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/PlaygroundPage/PlaygroundPage.module.css -------------------------------------------------------------------------------- /src/pages/PlaygroundPage/PlaygroundPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/PlaygroundPage/PlaygroundPage.tsx -------------------------------------------------------------------------------- /src/pages/PlaygroundPage/Tutorial.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/PlaygroundPage/Tutorial.ts -------------------------------------------------------------------------------- /src/pages/PlaygroundPage/components/ExecuteButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/PlaygroundPage/components/ExecuteButton.tsx -------------------------------------------------------------------------------- /src/pages/PlaygroundPage/hooks/usePlaygroundSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/PlaygroundPage/hooks/usePlaygroundSettings.ts -------------------------------------------------------------------------------- /src/pages/PlaygroundPage/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/PlaygroundPage/main.tsx -------------------------------------------------------------------------------- /src/pages/SandboxPage/SandboxPage.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/SandboxPage/SandboxPage.module.css -------------------------------------------------------------------------------- /src/pages/SandboxPage/SandboxPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/SandboxPage/SandboxPage.tsx -------------------------------------------------------------------------------- /src/pages/SandboxPage/components/CodeBlock/CodeBlock.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/SandboxPage/components/CodeBlock/CodeBlock.module.css -------------------------------------------------------------------------------- /src/pages/SandboxPage/components/CodeBlock/CodeBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/SandboxPage/components/CodeBlock/CodeBlock.tsx -------------------------------------------------------------------------------- /src/pages/SandboxPage/components/CodeBlock/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/SandboxPage/components/CodeBlock/index.ts -------------------------------------------------------------------------------- /src/pages/SandboxPage/components/ConnectionGuide/ConnectionGuide.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/SandboxPage/components/ConnectionGuide/ConnectionGuide.module.css -------------------------------------------------------------------------------- /src/pages/SandboxPage/components/ConnectionGuide/ConnectionGuide.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/SandboxPage/components/ConnectionGuide/ConnectionGuide.tsx -------------------------------------------------------------------------------- /src/pages/SandboxPage/components/ContractChip/ContractChip.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/SandboxPage/components/ContractChip/ContractChip.module.css -------------------------------------------------------------------------------- /src/pages/SandboxPage/components/ContractChip/ContractChip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/SandboxPage/components/ContractChip/ContractChip.tsx -------------------------------------------------------------------------------- /src/pages/SandboxPage/components/ContractDetails/ContractDetails.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/SandboxPage/components/ContractDetails/ContractDetails.module.css -------------------------------------------------------------------------------- /src/pages/SandboxPage/components/ContractDetails/ContractDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/SandboxPage/components/ContractDetails/ContractDetails.tsx -------------------------------------------------------------------------------- /src/pages/SandboxPage/components/DaemonSettings/DaemonSettings.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/SandboxPage/components/DaemonSettings/DaemonSettings.module.css -------------------------------------------------------------------------------- /src/pages/SandboxPage/components/DaemonSettings/DaemonSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/SandboxPage/components/DaemonSettings/DaemonSettings.tsx -------------------------------------------------------------------------------- /src/pages/SandboxPage/components/DownloadTestDataButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/SandboxPage/components/DownloadTestDataButton.tsx -------------------------------------------------------------------------------- /src/pages/SandboxPage/components/ExampleDataButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/SandboxPage/components/ExampleDataButtons.tsx -------------------------------------------------------------------------------- /src/pages/SandboxPage/components/LoadingState/LoadingState.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/SandboxPage/components/LoadingState/LoadingState.module.css -------------------------------------------------------------------------------- /src/pages/SandboxPage/components/LoadingState/LoadingState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/SandboxPage/components/LoadingState/LoadingState.tsx -------------------------------------------------------------------------------- /src/pages/SandboxPage/components/TestInfo/TestInfo.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/SandboxPage/components/TestInfo/TestInfo.module.css -------------------------------------------------------------------------------- /src/pages/SandboxPage/components/TestInfo/TestInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/SandboxPage/components/TestInfo/TestInfo.tsx -------------------------------------------------------------------------------- /src/pages/SandboxPage/components/TransactionShortInfo/ActionsSummary.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/SandboxPage/components/TransactionShortInfo/ActionsSummary.module.css -------------------------------------------------------------------------------- /src/pages/SandboxPage/components/TransactionShortInfo/ActionsSummary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/SandboxPage/components/TransactionShortInfo/ActionsSummary.tsx -------------------------------------------------------------------------------- /src/pages/SandboxPage/components/TransactionShortInfo/TransactionShortInfo.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/SandboxPage/components/TransactionShortInfo/TransactionShortInfo.module.css -------------------------------------------------------------------------------- /src/pages/SandboxPage/components/TransactionShortInfo/TransactionShortInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/SandboxPage/components/TransactionShortInfo/TransactionShortInfo.tsx -------------------------------------------------------------------------------- /src/pages/SandboxPage/components/TransactionTraceViewer/TransactionTraceViewer.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/SandboxPage/components/TransactionTraceViewer/TransactionTraceViewer.module.css -------------------------------------------------------------------------------- /src/pages/SandboxPage/components/TransactionTraceViewer/TransactionTraceViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/SandboxPage/components/TransactionTraceViewer/TransactionTraceViewer.tsx -------------------------------------------------------------------------------- /src/pages/SandboxPage/components/TransactionTraceViewer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/SandboxPage/components/TransactionTraceViewer/index.ts -------------------------------------------------------------------------------- /src/pages/SandboxPage/components/TransactionTree/SmartTooltip.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/SandboxPage/components/TransactionTree/SmartTooltip.module.css -------------------------------------------------------------------------------- /src/pages/SandboxPage/components/TransactionTree/SmartTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/SandboxPage/components/TransactionTree/SmartTooltip.tsx -------------------------------------------------------------------------------- /src/pages/SandboxPage/components/TransactionTree/TransactionTree.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/SandboxPage/components/TransactionTree/TransactionTree.module.css -------------------------------------------------------------------------------- /src/pages/SandboxPage/components/TransactionTree/TransactionTree.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/SandboxPage/components/TransactionTree/TransactionTree.tsx -------------------------------------------------------------------------------- /src/pages/SandboxPage/components/TransactionTree/useTooltip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/SandboxPage/components/TransactionTree/useTooltip.ts -------------------------------------------------------------------------------- /src/pages/SandboxPage/components/UploadTestDataButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/SandboxPage/components/UploadTestDataButton.tsx -------------------------------------------------------------------------------- /src/pages/SandboxPage/components/examples.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/SandboxPage/components/examples.ts -------------------------------------------------------------------------------- /src/pages/SandboxPage/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/SandboxPage/components/index.ts -------------------------------------------------------------------------------- /src/pages/SandboxPage/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/SandboxPage/main.tsx -------------------------------------------------------------------------------- /src/pages/TracePage/StackItemViewer.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/TracePage/StackItemViewer.module.css -------------------------------------------------------------------------------- /src/pages/TracePage/StackItemViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/TracePage/StackItemViewer.tsx -------------------------------------------------------------------------------- /src/pages/TracePage/TracePage.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/TracePage/TracePage.module.css -------------------------------------------------------------------------------- /src/pages/TracePage/TracePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/TracePage/TracePage.tsx -------------------------------------------------------------------------------- /src/pages/TracePage/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/pages/TracePage/main.tsx -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/setupTests.ts: -------------------------------------------------------------------------------- 1 | import "@testing-library/jest-dom" 2 | -------------------------------------------------------------------------------- /src/shared/CopyButton/CopyButton.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/CopyButton/CopyButton.module.css -------------------------------------------------------------------------------- /src/shared/CopyButton/CopyButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/CopyButton/CopyButton.tsx -------------------------------------------------------------------------------- /src/shared/lib/errorContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/lib/errorContext.tsx -------------------------------------------------------------------------------- /src/shared/lib/format/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/lib/format/index.tsx -------------------------------------------------------------------------------- /src/shared/lib/themeContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/lib/themeContext.tsx -------------------------------------------------------------------------------- /src/shared/lib/useGlobalError.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/lib/useGlobalError.tsx -------------------------------------------------------------------------------- /src/shared/lib/useTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/lib/useTheme.ts -------------------------------------------------------------------------------- /src/shared/lib/useTxHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/lib/useTxHistory.ts -------------------------------------------------------------------------------- /src/shared/ui/AddressChip/AddressChip.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/AddressChip/AddressChip.module.css -------------------------------------------------------------------------------- /src/shared/ui/AddressChip/AddressChip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/AddressChip/AddressChip.tsx -------------------------------------------------------------------------------- /src/shared/ui/AddressChip/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/AddressChip/index.ts -------------------------------------------------------------------------------- /src/shared/ui/AddressDetails/AddressDetails.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/AddressDetails/AddressDetails.module.css -------------------------------------------------------------------------------- /src/shared/ui/AddressDetails/AddressDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/AddressDetails/AddressDetails.tsx -------------------------------------------------------------------------------- /src/shared/ui/AddressDetails/index.ts: -------------------------------------------------------------------------------- 1 | export {default} from "./AddressDetails" 2 | -------------------------------------------------------------------------------- /src/shared/ui/Badge/Badge.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/Badge/Badge.module.css -------------------------------------------------------------------------------- /src/shared/ui/Badge/Badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/Badge/Badge.tsx -------------------------------------------------------------------------------- /src/shared/ui/Badge/index.ts: -------------------------------------------------------------------------------- 1 | export {default} from "./Badge" 2 | -------------------------------------------------------------------------------- /src/shared/ui/Button/Button.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/Button/Button.module.css -------------------------------------------------------------------------------- /src/shared/ui/Button/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/Button/Button.tsx -------------------------------------------------------------------------------- /src/shared/ui/Button/index.ts: -------------------------------------------------------------------------------- 1 | export {default} from "./Button" 2 | -------------------------------------------------------------------------------- /src/shared/ui/ButtonLoader/ButtonLoader.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/ButtonLoader/ButtonLoader.module.css -------------------------------------------------------------------------------- /src/shared/ui/ButtonLoader/ButtonLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/ButtonLoader/ButtonLoader.tsx -------------------------------------------------------------------------------- /src/shared/ui/CellTreeView/CellTreeView.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/CellTreeView/CellTreeView.module.css -------------------------------------------------------------------------------- /src/shared/ui/CellTreeView/CellTreeView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/CellTreeView/CellTreeView.tsx -------------------------------------------------------------------------------- /src/shared/ui/CodeEditor/CodeEditor.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/CodeEditor/CodeEditor.module.css -------------------------------------------------------------------------------- /src/shared/ui/CodeEditor/CodeEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/CodeEditor/CodeEditor.tsx -------------------------------------------------------------------------------- /src/shared/ui/CodeEditor/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/CodeEditor/hooks/index.ts -------------------------------------------------------------------------------- /src/shared/ui/CodeEditor/hooks/useDecorations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/CodeEditor/hooks/useDecorations.ts -------------------------------------------------------------------------------- /src/shared/ui/CodeEditor/hooks/useEditorEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/CodeEditor/hooks/useEditorEvents.ts -------------------------------------------------------------------------------- /src/shared/ui/CodeEditor/hooks/useFolding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/CodeEditor/hooks/useFolding.ts -------------------------------------------------------------------------------- /src/shared/ui/CodeEditor/hooks/useFuncGasInlayProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/CodeEditor/hooks/useFuncGasInlayProvider.ts -------------------------------------------------------------------------------- /src/shared/ui/CodeEditor/hooks/useFuncLanguageProviders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/CodeEditor/hooks/useFuncLanguageProviders.ts -------------------------------------------------------------------------------- /src/shared/ui/CodeEditor/hooks/useImplicitRetInlayProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/CodeEditor/hooks/useImplicitRetInlayProvider.ts -------------------------------------------------------------------------------- /src/shared/ui/CodeEditor/hooks/useMonacoSetup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/CodeEditor/hooks/useMonacoSetup.ts -------------------------------------------------------------------------------- /src/shared/ui/CodeEditor/hooks/useTasmCodeLensProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/CodeEditor/hooks/useTasmCodeLensProvider.ts -------------------------------------------------------------------------------- /src/shared/ui/CodeEditor/hooks/useTasmCompletionProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/CodeEditor/hooks/useTasmCompletionProvider.ts -------------------------------------------------------------------------------- /src/shared/ui/CodeEditor/hooks/useTasmHoverProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/CodeEditor/hooks/useTasmHoverProvider.ts -------------------------------------------------------------------------------- /src/shared/ui/CodeEditor/hooks/useTasmInlayProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/CodeEditor/hooks/useTasmInlayProvider.ts -------------------------------------------------------------------------------- /src/shared/ui/CodeEditor/hooks/useTolkLanguageProviders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/CodeEditor/hooks/useTolkLanguageProviders.ts -------------------------------------------------------------------------------- /src/shared/ui/CodeEditor/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/CodeEditor/index.ts -------------------------------------------------------------------------------- /src/shared/ui/CodeEditor/languages/FuncLanguageDefinition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/CodeEditor/languages/FuncLanguageDefinition.ts -------------------------------------------------------------------------------- /src/shared/ui/CodeEditor/languages/TasmLanguageDefinition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/CodeEditor/languages/TasmLanguageDefinition.ts -------------------------------------------------------------------------------- /src/shared/ui/CodeEditor/languages/TolkLanguageDefinition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/CodeEditor/languages/TolkLanguageDefinition.ts -------------------------------------------------------------------------------- /src/shared/ui/CodeEditor/languages/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/CodeEditor/languages/index.ts -------------------------------------------------------------------------------- /src/shared/ui/CodeEditor/themes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/CodeEditor/themes.tsx -------------------------------------------------------------------------------- /src/shared/ui/DataBlock/DataBlock.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/DataBlock/DataBlock.module.css -------------------------------------------------------------------------------- /src/shared/ui/DataBlock/DataBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/DataBlock/DataBlock.tsx -------------------------------------------------------------------------------- /src/shared/ui/DataBlock/index.ts: -------------------------------------------------------------------------------- 1 | export {default} from "./DataBlock" 2 | -------------------------------------------------------------------------------- /src/shared/ui/ErrorBanner/ErrorBanner.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/ErrorBanner/ErrorBanner.module.css -------------------------------------------------------------------------------- /src/shared/ui/ErrorBanner/ErrorBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/ErrorBanner/ErrorBanner.tsx -------------------------------------------------------------------------------- /src/shared/ui/FullScreenLoader/FullScreenLoader.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/FullScreenLoader/FullScreenLoader.module.css -------------------------------------------------------------------------------- /src/shared/ui/FullScreenLoader/FullScreenLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/FullScreenLoader/FullScreenLoader.tsx -------------------------------------------------------------------------------- /src/shared/ui/Icon/CheckIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/Icon/CheckIcon.tsx -------------------------------------------------------------------------------- /src/shared/ui/Icon/ChevronDownIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/Icon/ChevronDownIcon.tsx -------------------------------------------------------------------------------- /src/shared/ui/Icon/ChevronUpIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/Icon/ChevronUpIcon.tsx -------------------------------------------------------------------------------- /src/shared/ui/Icon/CodeIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/Icon/CodeIcon.tsx -------------------------------------------------------------------------------- /src/shared/ui/Icon/EyeIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/Icon/EyeIcon.tsx -------------------------------------------------------------------------------- /src/shared/ui/Icon/Icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/Icon/Icon.tsx -------------------------------------------------------------------------------- /src/shared/ui/Icon/LightBulbIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/Icon/LightBulbIcon.tsx -------------------------------------------------------------------------------- /src/shared/ui/Icon/MoonIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/Icon/MoonIcon.tsx -------------------------------------------------------------------------------- /src/shared/ui/Icon/RefreshIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/Icon/RefreshIcon.tsx -------------------------------------------------------------------------------- /src/shared/ui/Icon/RocketIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/Icon/RocketIcon.tsx -------------------------------------------------------------------------------- /src/shared/ui/Icon/SunIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/Icon/SunIcon.tsx -------------------------------------------------------------------------------- /src/shared/ui/Icon/ZapIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/Icon/ZapIcon.tsx -------------------------------------------------------------------------------- /src/shared/ui/Icon/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/Icon/index.ts -------------------------------------------------------------------------------- /src/shared/ui/InlineLoader/InlineLoader.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/InlineLoader/InlineLoader.module.css -------------------------------------------------------------------------------- /src/shared/ui/InlineLoader/InlineLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/InlineLoader/InlineLoader.tsx -------------------------------------------------------------------------------- /src/shared/ui/InlineLoader/index.ts: -------------------------------------------------------------------------------- 1 | export {default} from "./InlineLoader" 2 | -------------------------------------------------------------------------------- /src/shared/ui/Modal/Modal.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/Modal/Modal.module.css -------------------------------------------------------------------------------- /src/shared/ui/Modal/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/Modal/Modal.tsx -------------------------------------------------------------------------------- /src/shared/ui/Modal/index.ts: -------------------------------------------------------------------------------- 1 | export {default} from "./Modal" 2 | -------------------------------------------------------------------------------- /src/shared/ui/OpcodeChip/OpcodeChip.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/OpcodeChip/OpcodeChip.module.css -------------------------------------------------------------------------------- /src/shared/ui/OpcodeChip/OpcodeChip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/OpcodeChip/OpcodeChip.tsx -------------------------------------------------------------------------------- /src/shared/ui/PageHeader/PageHeader.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/PageHeader/PageHeader.module.css -------------------------------------------------------------------------------- /src/shared/ui/PageHeader/PageHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/PageHeader/PageHeader.tsx -------------------------------------------------------------------------------- /src/shared/ui/PageHeader/index.ts: -------------------------------------------------------------------------------- 1 | export {default} from "./PageHeader.tsx" 2 | -------------------------------------------------------------------------------- /src/shared/ui/SearchInput/SearchInput.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/SearchInput/SearchInput.module.css -------------------------------------------------------------------------------- /src/shared/ui/SearchInput/SearchInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/SearchInput/SearchInput.tsx -------------------------------------------------------------------------------- /src/shared/ui/SearchInput/index.ts: -------------------------------------------------------------------------------- 1 | export {default} from "./SearchInput" 2 | -------------------------------------------------------------------------------- /src/shared/ui/SettingsDropdown/SettingsDropdown.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/SettingsDropdown/SettingsDropdown.module.css -------------------------------------------------------------------------------- /src/shared/ui/SettingsDropdown/SettingsDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/SettingsDropdown/SettingsDropdown.tsx -------------------------------------------------------------------------------- /src/shared/ui/ShareButton/ShareButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/ShareButton/ShareButton.tsx -------------------------------------------------------------------------------- /src/shared/ui/StackEditor/StackEditor.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/StackEditor/StackEditor.module.css -------------------------------------------------------------------------------- /src/shared/ui/StackEditor/StackEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/StackEditor/StackEditor.tsx -------------------------------------------------------------------------------- /src/shared/ui/StackEditor/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/StackEditor/index.ts -------------------------------------------------------------------------------- /src/shared/ui/StackItemDetails/StackItemDetails.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/StackItemDetails/StackItemDetails.module.css -------------------------------------------------------------------------------- /src/shared/ui/StackItemDetails/StackItemDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/StackItemDetails/StackItemDetails.tsx -------------------------------------------------------------------------------- /src/shared/ui/StackItemDetails/index.ts: -------------------------------------------------------------------------------- 1 | export {default} from "./StackItemDetails" 2 | -------------------------------------------------------------------------------- /src/shared/ui/StackViewer/StackViewer.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/StackViewer/StackViewer.module.css -------------------------------------------------------------------------------- /src/shared/ui/StackViewer/StackViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/StackViewer/StackViewer.tsx -------------------------------------------------------------------------------- /src/shared/ui/StackViewer/index.ts: -------------------------------------------------------------------------------- 1 | export {default} from "./StackViewer" 2 | -------------------------------------------------------------------------------- /src/shared/ui/StatusBadge/StatusBadge.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/StatusBadge/StatusBadge.module.css -------------------------------------------------------------------------------- /src/shared/ui/StatusBadge/StatusBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/StatusBadge/StatusBadge.tsx -------------------------------------------------------------------------------- /src/shared/ui/StatusBadge/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/StatusBadge/index.ts -------------------------------------------------------------------------------- /src/shared/ui/Tooltip/Tooltip.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/Tooltip/Tooltip.module.css -------------------------------------------------------------------------------- /src/shared/ui/Tooltip/Tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/Tooltip/Tooltip.tsx -------------------------------------------------------------------------------- /src/shared/ui/Tooltip/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/Tooltip/index.ts -------------------------------------------------------------------------------- /src/shared/ui/TooltipHint/TooltipHint.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/TooltipHint/TooltipHint.module.css -------------------------------------------------------------------------------- /src/shared/ui/TooltipHint/TooltipHint.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/TooltipHint/TooltipHint.tsx -------------------------------------------------------------------------------- /src/shared/ui/TooltipHint/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./TooltipHint" 2 | -------------------------------------------------------------------------------- /src/shared/ui/TraceSidePanel/TraceSidePanel.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/TraceSidePanel/TraceSidePanel.module.css -------------------------------------------------------------------------------- /src/shared/ui/TraceSidePanel/TraceSidePanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/TraceSidePanel/TraceSidePanel.tsx -------------------------------------------------------------------------------- /src/shared/ui/TraceSidePanel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/TraceSidePanel/index.ts -------------------------------------------------------------------------------- /src/shared/ui/Tutorial/Tutorial.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/Tutorial/Tutorial.module.css -------------------------------------------------------------------------------- /src/shared/ui/Tutorial/Tutorial.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/Tutorial/Tutorial.tsx -------------------------------------------------------------------------------- /src/shared/ui/Tutorial/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/Tutorial/index.ts -------------------------------------------------------------------------------- /src/shared/ui/Tutorial/useTutorial.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/src/shared/ui/Tutorial/useTutorial.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /stylelint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/stylelint.config.mjs -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/tsconfig.eslint.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/vite.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-blockchain/TxTracer/HEAD/yarn.lock --------------------------------------------------------------------------------