Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/briangershon/create-solana-token
Create a new Solana fungible token using command-line tools and scripts. Plus: manage tokens safely across a team using a multisig wallet approach instead of a single owner.
https://github.com/briangershon/create-solana-token
arweave multisig solana solana-token
Last synced: 19 days ago
JSON representation
Create a new Solana fungible token using command-line tools and scripts. Plus: manage tokens safely across a team using a multisig wallet approach instead of a single owner.
- Host: GitHub
- URL: https://github.com/briangershon/create-solana-token
- Owner: briangershon
- License: mit
- Created: 2022-07-23T22:43:04.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-08-16T00:36:28.000Z (over 2 years ago)
- Last Synced: 2024-11-13T03:18:28.396Z (3 months ago)
- Topics: arweave, multisig, solana, solana-token
- Language: TypeScript
- Homepage: https://explorer.solana.com/address/7uVii1LGC5jCJAgHHmLqKZP3bpNtJS6ywHW6CUSocuyD
- Size: 926 KB
- Stars: 18
- Watchers: 2
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# create-solana-token
## Overview
Here are the steps for creating a new Solana fungible token using command-line tools and scripts.
Also manage tokens safely across a team using a multisig wallet approach instead of a single owner.
The example token created here is called `BUOY` and the final version exists live on Solana at [7uVii1LGC5jCJAgHHmLqKZP3bpNtJS6ywHW6CUSocuyD](https://explorer.solana.com/address/7uVii1LGC5jCJAgHHmLqKZP3bpNtJS6ywHW6CUSocuyD).
The token image was created from a photo by .
## Steps for creating new token
- [Getting started](./docs/getting-started.md) - install tools and choose keypair
- [Create token](./docs/create-token.md) and mint them
- [Add metadata](./docs/add-metadata.md) for your token and host on Arweave
- [Test token](./docs/test-token.md)
- Here's a [run through of the multisig signing process](./docs/multisig-signing-process.md)## Steps for creating a multisig mint authority for token
- [Setup team management of token](./docs/setup-team-management.md) using multisig approach
## Setup for multsig signers
Scenario: You've been asked to be one of the official approvers of token minting.
- you can generate your keypair and public key by following [Getting started](./docs/getting-started.md).
- then [run through the multisig signing process](./docs/multisig-signing-process.md)
## Credits
These useful resources served as an initial foundation for docs and scripts in this repo:
- Solana's Token Program and Documentation: [Solana's Token Program](https://spl.solana.com/token)
- [Token Creator source code](https://github.com/jacobcreech/Token-Creator)