https://github.com/gregnazario/test-token-faucet
A faucet for creating test tokens to any account
https://github.com/gregnazario/test-token-faucet
Last synced: 2 months ago
JSON representation
A faucet for creating test tokens to any account
- Host: GitHub
- URL: https://github.com/gregnazario/test-token-faucet
- Owner: gregnazario
- License: apache-2.0
- Created: 2024-08-03T05:29:58.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-09-10T00:50:19.000Z (9 months ago)
- Last Synced: 2025-01-28T22:31:31.787Z (4 months ago)
- Language: TypeScript
- Homepage: https://test-token-faucet.vercel.app
- Size: 109 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Create Aptos Dapp Boilerplate Template
The Boilerplate template provides a starter dapp with all necessary dapp infrastructure and a simple wallet info implementation.
The Boilerplate template provides:
- **Folder structure** - A pre-made dapp folder structure with a `frontend` and `move` folders.
- **Dapp infrastructure** - All required dependencies a dapp needs to start building on the Aptos network.
- **Wallet Info implementation** - Pre-made `WalletInfo` components to demonstrate how one can use to read a connected Wallet info.### What tools the template uses?
- React framework
- Vite development tool
- shadcn/ui + tailwind for styling
- Aptos TS SDK
- Aptos Wallet Adapter
- Node based Move commands### What Move commands are available?
The tool utilizes [aptos-cli npm package](https://github.com/aptos-labs/aptos-cli) that lets us run Aptos CLI in a Node environment.
Some commands are built-in the template and can be ran as a npm script, for example:
- `npm run move:init` - a command to initialize an account to publish the Move contract and to configure the development environment
- `npm run move:publish` - a command to publish the Move contract
- `npm run move:test` - a command to run Move unit tests
- `npm run move:compile` - a command to compile the Move contractFor all other available CLI commands, can run `npx aptos` and see a list of all available commands.