Coder Social home page Coder Social logo

thirdweb-solana-token-deploy's Introduction

Solana Token deploy

This project demonstrates how you can create and deploy your own token on the Solana blockchain using thirdweb's Solana SDK.

Tools:

Using This Template

Create a project using this example:

npx thirdweb create --template solana-token-deploy
  • Export your wallet private key from phantom wallet and add it to the .env file.
PRIVATE_KEY=your_private_key

How It Works

Using the thirdweb SDK, you can create and deploy your own token on the Solana blockchain. We use @solana/web3.js package to create a wallet from the private key and pass it into thirdweb to initialize the SDK. Finally, we use the initialised sdk to create and deploy the token.

const sdk = ThirdwebSDK.fromPrivateKey("devnet", process.env.PRIVATE_KEY);

// Define the metadata for your program
const metadata = {
  symbol: "TOK",
  description: "My token",
  name: "My Token",
  initialSupply: 100,
};

// And deploy a new program from the connected wallet
const address = await sdk.deployer.createToken(metadata);

Next, we use the getToken function to get the token detail and show the total Supply:

const token = await sdk.getToken(address);
const supply = await token.totalSupply();

Join our Discord!

For any questions or suggestions, join our discord at https://discord.gg/thirdweb.

thirdweb-solana-token-deploy's People

Contributors

avneesh0612 avatar jarrodwatts avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.