1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- import "./spl_token.sol";
- import "./mpl_metadata.sol";
- @program_id("8eZPhSaXfHqbcrfskVThtCG68kq8MfVHqmtm6wYf4TLb")
- contract create_token {
- // Creating a dataAccount is required by Solang
- // The account is unused in this example
- @payer(payer) // payer account
- constructor(address payer) {}
- function createTokenMint(
- address payer, // payer account
- address mint, // mint account to be created
- address mintAuthority, // mint authority for the mint account
- address freezeAuthority, // freeze authority for the mint account
- address metadata, // metadata account to be created
- uint8 decimals, // decimals for the mint account
- string name, // name for the metadata account
- string symbol, // symbol for the metadata account
- string uri // uri for the metadata account
- ) public view {
- // Invoke System Program to create a new account for the mint account and,
- // Invoke Token Program to initialize the mint account
- // Set mint authority, freeze authority, and decimals for the mint account
- SplToken.create_mint(
- payer, // payer account
- mint, // mint account
- mintAuthority, // mint authority
- freezeAuthority, // freeze authority
- decimals // decimals
- );
- // Invoke Metadata Program to create a new account for the metadata account
- MplMetadata.create_metadata_account(
- metadata, // metadata account
- mint, // mint account
- mintAuthority, // mint authority
- payer, // payer
- payer, // update authority (of the metadata account)
- name, // name
- symbol, // symbol
- uri // uri (off-chain metadata json)
- );
- }
- }
|