-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
217 additions
and
77 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# TVM Viewer | ||
# TVM Viewer (beta) | ||
|
||
Stack tracer for debugging smart contracts deployed on TON Blockchain. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,18 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<link rel="icon" type="image/svg+xml" href="./src/assets/robot.ico" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<meta | ||
name="description" | ||
content="TVM Viewer - see how tx was executed in TVM with stack." | ||
/> | ||
</head> | ||
<body> | ||
<div id="root"></div> | ||
<script type="module" src="/src/polyfills.ts"></script> | ||
<script type="module" src="/src/main.tsx"></script> | ||
</body> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<title>TVM Viewer</title> | ||
<link rel="icon" type="image/svg+xml" href="./src/assets/robot.ico" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<meta | ||
name="description" | ||
content="TVM Viewer - see how tx was executed in TVM with stack." | ||
/> | ||
</head> | ||
<body> | ||
<div id="root"></div> | ||
<script type="module" src="/src/polyfills.ts"></script> | ||
<script type="module" src="/src/main.tsx"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,54 +1,58 @@ | ||
{ | ||
"name": "tvm-viewer", | ||
"private": true, | ||
"version": "0.0.1", | ||
"main": "dist/index.js", | ||
"files": [ | ||
"dist/**/*" | ||
], | ||
"scripts": { | ||
"dev": "vite", | ||
"build": "tsc -b && vite build", | ||
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0", | ||
"preview": "vite preview" | ||
}, | ||
"dependencies": { | ||
"@chakra-ui/icons": "^2.1.1", | ||
"@chakra-ui/react": "^2.8.2", | ||
"@emotion/react": "^11.11.4", | ||
"@emotion/styled": "^11.11.5", | ||
"@orbs-network/ton-access": "^2.3.3", | ||
"@ton/core": "^0.56.3", | ||
"@ton/crypto": "3.2.0", | ||
"@ton/sandbox": "^0.20.0", | ||
"@ton/test-utils": "^0.3.1", | ||
"@ton/ton": "^13.11.0", | ||
"bigint-buffer": "^1.1.5", | ||
"buffer": "^6.0.3", | ||
"express": "^4.18.3", | ||
"framer-motion": "^11.3.2", | ||
"react": "^18.3.1", | ||
"react-dom": "^18.3.1", | ||
"vite-plugin-require": "^1.2.14" | ||
}, | ||
"devDependencies": { | ||
"@types/express": "^4.17.21", | ||
"@types/jest": "^29.5.12", | ||
"@types/jsonwebtoken": "^9.0.6", | ||
"@types/node": "^18.15.11", | ||
"@types/react": "^18.3.3", | ||
"@types/react-dom": "^18.3.0", | ||
"@typescript-eslint/eslint-plugin": "^7.13.1", | ||
"@typescript-eslint/parser": "^7.13.1", | ||
"@vitejs/plugin-react": "^4.3.1", | ||
"eslint": "^8.57.0", | ||
"eslint-plugin-react-hooks": "^4.6.2", | ||
"eslint-plugin-react-refresh": "^0.4.7", | ||
"jest": "^29.7.0", | ||
"nodemon": "^3.1.0", | ||
"ts-jest": "^29.2.2", | ||
"ts-node": "^10.9.2", | ||
"typescript": "^5.4.2", | ||
"vite": "^5.3.1" | ||
} | ||
"name": "tvm-viewer", | ||
"private": true, | ||
"version": "0.0.1", | ||
"main": "dist/index.js", | ||
"files": [ | ||
"dist/**/*" | ||
], | ||
"homepage": "https://1ixi1.github.io/tvm-viewer", | ||
"scripts": { | ||
"dev": "vite", | ||
"build": "tsc -b && vite build", | ||
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0", | ||
"preview": "vite preview", | ||
"predeploy": "yarn build", | ||
"deploy": "gh-pages -d dist" | ||
}, | ||
"dependencies": { | ||
"@chakra-ui/icons": "^2.1.1", | ||
"@chakra-ui/react": "^2.8.2", | ||
"@emotion/react": "^11.11.4", | ||
"@emotion/styled": "^11.11.5", | ||
"@orbs-network/ton-access": "^2.3.3", | ||
"@ton/core": "^0.56.3", | ||
"@ton/crypto": "3.2.0", | ||
"@ton/sandbox": "^0.20.0", | ||
"@ton/test-utils": "^0.3.1", | ||
"@ton/ton": "^13.11.0", | ||
"bigint-buffer": "^1.1.5", | ||
"buffer": "^6.0.3", | ||
"express": "^4.18.3", | ||
"framer-motion": "^11.3.2", | ||
"react": "^18.3.1", | ||
"react-dom": "^18.3.1", | ||
"vite-plugin-require": "^1.2.14" | ||
}, | ||
"devDependencies": { | ||
"@types/express": "^4.17.21", | ||
"@types/jest": "^29.5.12", | ||
"@types/jsonwebtoken": "^9.0.6", | ||
"@types/node": "^18.15.11", | ||
"@types/react": "^18.3.3", | ||
"@types/react-dom": "^18.3.0", | ||
"@typescript-eslint/eslint-plugin": "^7.13.1", | ||
"@typescript-eslint/parser": "^7.13.1", | ||
"@vitejs/plugin-react": "^4.3.1", | ||
"eslint": "^8.57.0", | ||
"eslint-plugin-react-hooks": "^4.6.2", | ||
"eslint-plugin-react-refresh": "^0.4.7", | ||
"gh-pages": "^6.1.1", | ||
"jest": "^29.7.0", | ||
"nodemon": "^3.1.0", | ||
"ts-jest": "^29.2.2", | ||
"ts-node": "^10.9.2", | ||
"typescript": "^5.4.2", | ||
"vite": "^5.3.1" | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.