Skip to content
Merged
Show file tree
Hide file tree
Changes from 15 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,17 @@ An open source Jetton deployer webapp, based on [jetton contracts starter templa
## How to use

Instructions:
Make sure you have a TON wallet with at least 0.25 TON balance. Supported wallets include TonHub and Chrome Extension.
Make sure you have a TON wallet with at least 0.25 TON balance.

Use your web browser to open the site of the deploy form: https://minter.ton.org

To use the Testnet version open this link: https://minter.ton.org?testnet=true

> Safety Notice: The form is based on this repo and served from GitHub Pages

Click the "Connect Wallet" button to connect your wallet.

Fill in the information about your Jetton in the form - choose a name, ticker and image URI.
Fill in the information about your Jetton in the form - choose a name, ticker and image URL.

Deploy and approve the deploy transaction in your wallet.

Expand Down
145 changes: 78 additions & 67 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^13.5.0",
"@tonconnect/ui-react": "^1.0.0-beta.6",
"@tonconnect/ui-react": "^2.0.11",
"@types/jest": "^27.5.1",
"@types/node": "^16.11.36",
"@types/react": "^18.0.9",
Expand Down
16 changes: 8 additions & 8 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />

<title>Ton Minter</title>
<title>TON Minter</title>
<meta
name="description"
content="Ton Minter - create and deploy your own fungible token jetton smart contract to TON blockchain mainnet in one click"
content="TON Minter - create and deploy your own fungible token jetton smart contract to TON Blockchain in one click"
/>

<!-- Google / Search Engine Tags -->
<meta itemprop="name" content="Ton Minter" />
<meta itemprop="name" content="TON Minter" />
<meta
itemprop="description"
content="Ton Minter - create and deploy your own fungible token jetton smart contract to TON blockchain mainnet in one click"
content="TON Minter - create and deploy your own fungible token jetton smart contract to TON Blockchain in one click"
/>
<meta itemprop="image" content="%PUBLIC_URL%/logo192.png" />

Expand All @@ -26,16 +26,16 @@
<meta property="og:title" content="Ton Minter" />
<meta
property="og:description"
content="Ton Minter - create and deploy your own fungible token jetton smart contract to TON blockchain mainnet in one click"
content="TON Minter - create and deploy your own fungible token jetton smart contract to TON Blockchain in one click"
/>
<meta property="og:image" content="%PUBLIC_URL%/logo192.png" />

<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Ton Minter" />
<meta name="twitter:title" content="TON Minter" />
<meta
name="twitter:description"
content="Ton Minter - create and deploy your own fungible token jetton smart contract to TON blockchain mainnet in one click"
content="TON Minter - create and deploy your own fungible token jetton smart contract to TON Blockchain in one click"
/>
<meta name="twitter:image" content="%PUBLIC_URL%/logo192.png" />

Expand Down Expand Up @@ -63,7 +63,7 @@
Learn how to configure a non-root public URL by running `npm run build`.
-->

<title>Ton Minter</title>
<title>TON Minter</title>
</head>

<body>
Expand Down
7 changes: 5 additions & 2 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,12 +85,15 @@ const App = () => {
resetJetton();
}, [location.pathname]);

const isSandbox = window.location.search.includes("sandbox");
const isTestnet = window.location.search.includes("testnet");

return (
<AppWrapper>
<EnvContext.Provider
value={{
isSandbox: window.location.search.includes("sandbox"),
isTestnet: window.location.search.includes("testnet"),
isSandbox: isSandbox,
isTestnet: isTestnet,
}}>
<ScreensWrapper>
<Routes>
Expand Down
2 changes: 1 addition & 1 deletion src/assets/icons/bullet.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/assets/icons/github-hover.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/assets/icons/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading