Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/joticajulian/koinos-contract
CLI tool to bootstrap a koinos contract
https://github.com/joticajulian/koinos-contract
Last synced: 3 months ago
JSON representation
CLI tool to bootstrap a koinos contract
- Host: GitHub
- URL: https://github.com/joticajulian/koinos-contract
- Owner: joticajulian
- License: mit
- Created: 2024-01-18T23:36:32.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-07-04T20:36:25.000Z (6 months ago)
- Last Synced: 2024-10-18T07:24:04.587Z (3 months ago)
- Language: TypeScript
- Size: 773 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# Arkinos
CLI tool to bootstrap a koinos contract.
To create a new project run:
```
npx arkinos
```Select between 4 different templates:
- Token Contract
- NFT Contract
- NFT Contract (+drops Kollection)
- Generic ContractSelect also if you want to create a frontend to interact with the contract. The frontend is powered by Next.js (React).
Once it is installed read the documentation in the README. You can launch your contract with simple steps:
```
# build the contract
yarn install
yarn build# generate keys to update the .env file
yarn keys# deploy in the blockchain
yarn deploy# bootstrap a frontend
yarn updateFrontend
yarn dev
```