File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
tokens/mint-2/anchor/tests Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -73,6 +73,7 @@ describe("mint-token", () => {
7373 mint : mintKeypair . publicKey ,
7474 owner : payer . publicKey
7575 } ) ;
76+ console . log ( `Token Address: ${ tokenAddress } ` ) ;
7677
7778 await program . methods . mintToWallet (
7879 new anchor . BN ( amountToMint ) , mintAuthorityPdaBump
@@ -105,10 +106,12 @@ describe("mint-token", () => {
105106 mint : mintKeypair . publicKey ,
106107 owner : payer . publicKey
107108 } ) ;
109+ console . log ( `Owner Token Address: ${ ownerTokenAddress } ` ) ;
108110 const recipientTokenAddress = await anchor . utils . token . associatedAddress ( {
109111 mint : mintKeypair . publicKey ,
110112 owner : recipientWallet . publicKey
111113 } ) ;
114+ console . log ( `Recipient Token Address: ${ recipientTokenAddress } ` ) ;
112115
113116 await program . methods . transferToWallet (
114117 new anchor . BN ( amountToTransfer )
You can’t perform that action at this time.
0 commit comments