File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
pda-mint-authority/anchor/programs/token-minter/src/instructions
spl-token-minter/anchor/programs/spl-token-minter/src/instructions
transfer-tokens/anchor/programs/transfer-tokens/src/instructions Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ pub struct CreateToken<'info> {
24
24
mint:: decimals = 9 ,
25
25
mint:: authority = mint_account. key( ) ,
26
26
mint:: freeze_authority = mint_account. key( ) ,
27
-
27
+
28
28
) ]
29
29
pub mint_account : Account < ' info , Mint > ,
30
30
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ pub struct CreateToken<'info> {
18
18
mint:: decimals = 9 ,
19
19
mint:: authority = payer. key( ) ,
20
20
mint:: freeze_authority = payer. key( ) ,
21
-
21
+
22
22
) ]
23
23
pub mint_account : Account < ' info , Mint > ,
24
24
/// CHECK: Address validated using constraint
@@ -50,7 +50,7 @@ pub fn create_token(
50
50
CreateMetadataAccountsV3 {
51
51
metadata : ctx. accounts . metadata_account . to_account_info ( ) ,
52
52
mint : ctx. accounts . mint_account . to_account_info ( ) ,
53
- mint_authority : ctx. accounts . payer . to_account_info ( ) ,
53
+ mint_authority : ctx. accounts . payer . to_account_info ( ) ,
54
54
update_authority : ctx. accounts . payer . to_account_info ( ) ,
55
55
payer : ctx. accounts . payer . to_account_info ( ) ,
56
56
system_program : ctx. accounts . system_program . to_account_info ( ) ,
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ pub struct CreateToken<'info> {
18
18
mint:: decimals = 9 ,
19
19
mint:: authority = payer. key( ) ,
20
20
mint:: freeze_authority = payer. key( ) ,
21
-
21
+
22
22
) ]
23
23
pub mint_account : Account < ' info , Mint > ,
24
24
@@ -51,7 +51,7 @@ pub fn create_token(
51
51
CreateMetadataAccountsV3 {
52
52
metadata : ctx. accounts . metadata_account . to_account_info ( ) ,
53
53
mint : ctx. accounts . mint_account . to_account_info ( ) ,
54
- mint_authority : ctx. accounts . payer . to_account_info ( ) ,
54
+ mint_authority : ctx. accounts . payer . to_account_info ( ) ,
55
55
update_authority : ctx. accounts . payer . to_account_info ( ) ,
56
56
payer : ctx. accounts . payer . to_account_info ( ) ,
57
57
system_program : ctx. accounts . system_program . to_account_info ( ) ,
You can’t perform that action at this time.
0 commit comments