https://github.com/0xjonaseb11/token-algorand
Create a fungible token on Algorand blockchain | Algorand blockchain | Multi-chain development
https://github.com/0xjonaseb11/token-algorand
algorand algorand-blockchain blockchain fungible-tokens multi-chains ppos web3
Last synced: 7 months ago
JSON representation
Create a fungible token on Algorand blockchain | Algorand blockchain | Multi-chain development
- Host: GitHub
- URL: https://github.com/0xjonaseb11/token-algorand
- Owner: 0xJonaseb11
- Created: 2024-05-13T10:14:35.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-14T07:27:51.000Z (over 1 year ago)
- Last Synced: 2025-01-20T14:58:39.241Z (9 months ago)
- Topics: algorand, algorand-blockchain, blockchain, fungible-tokens, multi-chains, ppos, web3
- Language: JavaScript
- Homepage:
- Size: 1.34 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# token-algorand
## About
`Why Algorand?`
**Algorand is the Layer-1 protocol that supports developing dApps, uses the Pure Proof of Stake (PPoS) consensus mechanism, is a sustainable green blockchain, and is also in partnership with ClimateTrade. It is energy efficient as compared to other blockchains.Not only this, Algorand is fast, secure, and scalable: Algorand smart contracts operate at over 1,000 TPS (transaction per second).**
_Algorand is an exciting new blockchain technology that offers decentralization, scalability, security, and environmental sustainability. The Algorand Virtual Machine (AVM) and Algorand Standard Assets (ASA) are two key features that make Algorand stand out among other blockchains._
### Getting started
```sh
# install prerequisites and setup
# init package.json
npm init -y
# insall algosdk
npm install algosdk
# list algosdks
npm list algosdk # should see something like this => algosdk@2.7.0
```## `Generating account details`
```sh
cd token
node CreateAccount.js
# The `passphrase/mnemonic`, `privateKey` and `address` will be generated
```## `Creating asset`
```sh
cd token
node CreateAsset.js
````After running task, you should see something like this`
```sh
Creating token Metadata....
Token deployed successfully!!
Asset ID created: 663539668
Asset Url: https://testnet.explorer.perawallet.app/asset/663539668
``````sh
# click the token link in the console
# It is in format of this
https://testnet.explorer.perawallet.app/asset/```
## `After, click the token link and you should see something like this`
---------
@0xJonaseb11