Skip to content

Commit

Permalink
verified technical requirements and resolved warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
ritikbhatt20 committed Nov 26, 2024
1 parent c4a1126 commit f611151
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
use anchor_lang::prelude::*;
use anchor_spl::{
associated_token::AssociatedToken,
token::{Token, mint_to, TokenAccount, Mint, MintTo},
token::{mint_to, Mint, MintTo, Token, TokenAccount},
};
declare_id!("CSi4VcU9g99HKSodPV3MJvweoEAuaqWqgEC3jvdHieDG");
#[program]
pub mod spl_token_minter {
use super::*;
pub fn create_token_mint(
ctx: Context<CreateTokenMintContext>,
decimals: u8,
freeze_authority: Pubkey,
_ctx: Context<CreateTokenMintContext>,
_decimals: u8,
_freeze_authority: Pubkey,
) -> Result<()> {
// Note: Initialization for mint handled manually
// Note: Initialization for mint handled manually
// As Poseidon's transpiler does not support initializeMint yet.

Ok(())
Expand Down

0 comments on commit f611151

Please sign in to comment.