Browse Source

Fix linting

Jonas Hahn 1 year ago
parent
commit
650c762538

+ 52 - 109
tokens/token-2022/transfer-hook/counter/anchor/tests/transfer-hook.ts

@@ -1,5 +1,5 @@
-import * as anchor from "@coral-xyz/anchor";
-import type { Program } from "@coral-xyz/anchor";
+import * as anchor from '@coral-xyz/anchor';
+import type { Program } from '@coral-xyz/anchor';
 import {
   ASSOCIATED_TOKEN_PROGRAM_ID,
   ExtensionType,
@@ -11,24 +11,17 @@ import {
   createTransferCheckedWithTransferHookInstruction,
   getAssociatedTokenAddressSync,
   getMintLen,
-} from "@solana/spl-token";
-import {
-  Keypair,
-  PublicKey,
-  SendTransactionError,
-  SystemProgram,
-  Transaction,
-  sendAndConfirmTransaction,
-} from "@solana/web3.js";
-import type { TransferHook } from "../target/types/transfer_hook";
-import { BN } from "bn.js";
-import { expect } from "chai";
-import chai from "chai";
-import chaiAsPromised from "chai-as-promised";
+} from '@solana/spl-token';
+import { Keypair, PublicKey, SendTransactionError, SystemProgram, Transaction, sendAndConfirmTransaction } from '@solana/web3.js';
+import { BN } from 'bn.js';
+import { expect } from 'chai';
+import chai from 'chai';
+import chaiAsPromised from 'chai-as-promised';
+import type { TransferHook } from '../target/types/transfer_hook';
 
 chai.use(chaiAsPromised);
 
-describe("transfer-hook", () => {
+describe('transfer-hook', () => {
   // Configure the client to use the local cluster.
   const provider = anchor.AnchorProvider.env();
   anchor.setProvider(provider);
@@ -47,7 +40,7 @@ describe("transfer-hook", () => {
     wallet.publicKey,
     false,
     TOKEN_2022_PROGRAM_ID,
-    ASSOCIATED_TOKEN_PROGRAM_ID
+    ASSOCIATED_TOKEN_PROGRAM_ID,
   );
 
   // Recipient token account address
@@ -57,26 +50,22 @@ describe("transfer-hook", () => {
     recipient.publicKey,
     false,
     TOKEN_2022_PROGRAM_ID,
-    ASSOCIATED_TOKEN_PROGRAM_ID
+    ASSOCIATED_TOKEN_PROGRAM_ID,
   );
 
   // ExtraAccountMetaList address
   // Store extra accounts required by the custom transfer hook instruction
   const [extraAccountMetaListPDA] = PublicKey.findProgramAddressSync(
-    [Buffer.from("extra-account-metas"), mint.publicKey.toBuffer()],
-    program.programId
+    [Buffer.from('extra-account-metas'), mint.publicKey.toBuffer()],
+    program.programId,
   );
 
-  const [counterPDA] = PublicKey.findProgramAddressSync(
-    [Buffer.from("counter")],
-    program.programId
-  );
+  const [counterPDA] = PublicKey.findProgramAddressSync([Buffer.from('counter')], program.programId);
 
-  it("Create Mint Account with Transfer Hook Extension", async () => {
+  it('Create Mint Account with Transfer Hook Extension', async () => {
     const extensions = [ExtensionType.TransferHook];
     const mintLen = getMintLen(extensions);
-    const lamports =
-      await provider.connection.getMinimumBalanceForRentExemption(mintLen);
+    const lamports = await provider.connection.getMinimumBalanceForRentExemption(mintLen);
 
     const transaction = new Transaction().add(
       SystemProgram.createAccount({
@@ -90,30 +79,19 @@ describe("transfer-hook", () => {
         mint.publicKey,
         wallet.publicKey,
         program.programId, // Transfer Hook Program ID
-        TOKEN_2022_PROGRAM_ID
+        TOKEN_2022_PROGRAM_ID,
       ),
-      createInitializeMintInstruction(
-        mint.publicKey,
-        decimals,
-        wallet.publicKey,
-        null,
-        TOKEN_2022_PROGRAM_ID
-      )
+      createInitializeMintInstruction(mint.publicKey, decimals, wallet.publicKey, null, TOKEN_2022_PROGRAM_ID),
     );
 
-    const txSig = await sendAndConfirmTransaction(
-      provider.connection,
-      transaction,
-      [wallet.payer, mint],
-      {
-        skipPreflight: true,
-        commitment: "finalized",
-      }
-    );
+    const txSig = await sendAndConfirmTransaction(provider.connection, transaction, [wallet.payer, mint], {
+      skipPreflight: true,
+      commitment: 'finalized',
+    });
 
     const txDetails = await program.provider.connection.getTransaction(txSig, {
       maxSupportedTransactionVersion: 0,
-      commitment: "confirmed",
+      commitment: 'confirmed',
     });
     console.log(txDetails.meta.logMessages);
 
@@ -122,7 +100,7 @@ describe("transfer-hook", () => {
 
   // Create the two token accounts for the transfer-hook enabled mint
   // Fund the sender token account with 100 tokens
-  it("Create Token Accounts and Mint Tokens", async () => {
+  it('Create Token Accounts and Mint Tokens', async () => {
     // 100 tokens
     const amount = 100 * 10 ** decimals;
 
@@ -133,7 +111,7 @@ describe("transfer-hook", () => {
         wallet.publicKey,
         mint.publicKey,
         TOKEN_2022_PROGRAM_ID,
-        ASSOCIATED_TOKEN_PROGRAM_ID
+        ASSOCIATED_TOKEN_PROGRAM_ID,
       ),
       createAssociatedTokenAccountInstruction(
         wallet.publicKey,
@@ -141,30 +119,18 @@ describe("transfer-hook", () => {
         recipient.publicKey,
         mint.publicKey,
         TOKEN_2022_PROGRAM_ID,
-        ASSOCIATED_TOKEN_PROGRAM_ID
+        ASSOCIATED_TOKEN_PROGRAM_ID,
       ),
-      createMintToInstruction(
-        mint.publicKey,
-        sourceTokenAccount,
-        wallet.publicKey,
-        amount,
-        [],
-        TOKEN_2022_PROGRAM_ID
-      )
+      createMintToInstruction(mint.publicKey, sourceTokenAccount, wallet.publicKey, amount, [], TOKEN_2022_PROGRAM_ID),
     );
 
-    const txSig = await sendAndConfirmTransaction(
-      connection,
-      transaction,
-      [wallet.payer],
-      { skipPreflight: true }
-    );
+    const txSig = await sendAndConfirmTransaction(connection, transaction, [wallet.payer], { skipPreflight: true });
 
     console.log(`Transaction Signature: ${txSig}`);
   });
 
   // Account to store extra accounts required by the transfer hook instruction
-  it("Create ExtraAccountMetaList Account", async () => {
+  it('Create ExtraAccountMetaList Account', async () => {
     const initializeExtraAccountMetaListInstruction = await program.methods
       .initializeExtraAccountMetaList()
       .accounts({
@@ -172,56 +138,41 @@ describe("transfer-hook", () => {
       })
       .instruction();
 
-    const transaction = new Transaction().add(
-      initializeExtraAccountMetaListInstruction
-    );
+    const transaction = new Transaction().add(initializeExtraAccountMetaListInstruction);
 
-    const txSig = await sendAndConfirmTransaction(
-      provider.connection,
-      transaction,
-      [wallet.payer],
-      { skipPreflight: true, commitment: "confirmed" }
-    );
-    console.log("Transaction Signature:", txSig);
+    const txSig = await sendAndConfirmTransaction(provider.connection, transaction, [wallet.payer], { skipPreflight: true, commitment: 'confirmed' });
+    console.log('Transaction Signature:', txSig);
   });
 
-  it("Transfer Hook with Extra Account Meta", async () => {
+  it('Transfer Hook with Extra Account Meta', async () => {
     // 1 tokens
     const amount = 1 * 10 ** decimals;
     const amountBigInt = BigInt(amount);
 
-    const transferInstructionWithHelper =
-      await createTransferCheckedWithTransferHookInstruction(
-        connection,
-        sourceTokenAccount,
-        mint.publicKey,
-        destinationTokenAccount,
-        wallet.publicKey,
-        amountBigInt,
-        decimals,
-        [],
-        "confirmed",
-        TOKEN_2022_PROGRAM_ID
-      );
+    const transferInstructionWithHelper = await createTransferCheckedWithTransferHookInstruction(
+      connection,
+      sourceTokenAccount,
+      mint.publicKey,
+      destinationTokenAccount,
+      wallet.publicKey,
+      amountBigInt,
+      decimals,
+      [],
+      'confirmed',
+      TOKEN_2022_PROGRAM_ID,
+    );
 
     console.log(`Extra accounts meta: ${extraAccountMetaListPDA}`);
     console.log(`Counter PDA: ${counterPDA}`);
-    console.log(
-      `Transfer Instruction: ${JSON.stringify(transferInstructionWithHelper)}`
-    );
+    console.log(`Transfer Instruction: ${JSON.stringify(transferInstructionWithHelper)}`);
 
     const transaction = new Transaction().add(transferInstructionWithHelper);
 
-    const txSig = await sendAndConfirmTransaction(
-      connection,
-      transaction,
-      [wallet.payer],
-      { skipPreflight: true }
-    );
-    console.log("Transfer Signature:", txSig);
+    const txSig = await sendAndConfirmTransaction(connection, transaction, [wallet.payer], { skipPreflight: true });
+    console.log('Transfer Signature:', txSig);
   });
 
-  it("Try call transfer hook without transfer", async () => {
+  it('Try call transfer hook without transfer', async () => {
     const transferHookIx = await program.methods
       .transferHook(new BN(1))
       .accounts({
@@ -234,16 +185,8 @@ describe("transfer-hook", () => {
 
     const transaction = new Transaction().add(transferHookIx);
 
-    const sendPromise = sendAndConfirmTransaction(
-      connection,
-      transaction,
-      [wallet.payer],
-      { skipPreflight: false }
-    );
+    const sendPromise = sendAndConfirmTransaction(connection, transaction, [wallet.payer], { skipPreflight: false });
 
-    await expect(sendPromise).to.eventually.be.rejectedWith(
-      SendTransactionError,
-      program.idl.errors[1].msg
-    );
+    await expect(sendPromise).to.eventually.be.rejectedWith(SendTransactionError, program.idl.errors[1].msg);
   });
 });

+ 40 - 78
tokens/token-2022/transfer-hook/hello-world/anchor/tests/transfer-hook.ts

@@ -1,5 +1,5 @@
-import * as anchor from "@coral-xyz/anchor";
-import type { Program } from "@coral-xyz/anchor";
+import * as anchor from '@coral-xyz/anchor';
+import type { Program } from '@coral-xyz/anchor';
 import {
   ASSOCIATED_TOKEN_PROGRAM_ID,
   TOKEN_2022_PROGRAM_ID,
@@ -7,21 +7,16 @@ import {
   createMintToInstruction,
   createTransferCheckedWithTransferHookInstruction,
   getAssociatedTokenAddressSync,
-} from "@solana/spl-token";
-import {
-  Keypair,
-  Transaction,
-  sendAndConfirmTransaction,
-  SendTransactionError,
-} from "@solana/web3.js";
-import type { TransferHook } from "../target/types/transfer_hook";
-import { expect } from "chai";
-import chai from "chai";
-import chaiAsPromised from "chai-as-promised";
+} from '@solana/spl-token';
+import { Keypair, SendTransactionError, Transaction, sendAndConfirmTransaction } from '@solana/web3.js';
+import { expect } from 'chai';
+import chai from 'chai';
+import chaiAsPromised from 'chai-as-promised';
+import type { TransferHook } from '../target/types/transfer_hook';
 
 chai.use(chaiAsPromised);
 
-describe("transfer-hook", () => {
+describe('transfer-hook', () => {
   // Configure the client to use the local cluster.
   const provider = anchor.AnchorProvider.env();
   anchor.setProvider(provider);
@@ -40,7 +35,7 @@ describe("transfer-hook", () => {
     wallet.publicKey,
     false,
     TOKEN_2022_PROGRAM_ID,
-    ASSOCIATED_TOKEN_PROGRAM_ID
+    ASSOCIATED_TOKEN_PROGRAM_ID,
   );
 
   // Recipient token account address
@@ -50,21 +45,21 @@ describe("transfer-hook", () => {
     recipient.publicKey,
     false,
     TOKEN_2022_PROGRAM_ID,
-    ASSOCIATED_TOKEN_PROGRAM_ID
+    ASSOCIATED_TOKEN_PROGRAM_ID,
   );
 
-  it("Create Mint with Transfer Hook Extension", async () => {
+  it('Create Mint with Transfer Hook Extension', async () => {
     const transactionSignature = await program.methods
       .initialize(decimals)
       .accounts({ mintAccount: mint.publicKey })
       .signers([mint])
       .rpc({ skipPreflight: true });
-    console.log("Your transaction signature", transactionSignature);
+    console.log('Your transaction signature', transactionSignature);
   });
 
   // Create the two token accounts for the transfer-hook enabled mint
   // Fund the sender token account with 100 tokens
-  it("Create Token Accounts and Mint Tokens", async () => {
+  it('Create Token Accounts and Mint Tokens', async () => {
     // 100 tokens
     const amount = 100 * 10 ** decimals;
 
@@ -75,7 +70,7 @@ describe("transfer-hook", () => {
         wallet.publicKey,
         mint.publicKey,
         TOKEN_2022_PROGRAM_ID,
-        ASSOCIATED_TOKEN_PROGRAM_ID
+        ASSOCIATED_TOKEN_PROGRAM_ID,
       ),
       createAssociatedTokenAccountInstruction(
         wallet.publicKey,
@@ -83,30 +78,18 @@ describe("transfer-hook", () => {
         recipient.publicKey,
         mint.publicKey,
         TOKEN_2022_PROGRAM_ID,
-        ASSOCIATED_TOKEN_PROGRAM_ID
+        ASSOCIATED_TOKEN_PROGRAM_ID,
       ),
-      createMintToInstruction(
-        mint.publicKey,
-        sourceTokenAccount,
-        wallet.publicKey,
-        amount,
-        [],
-        TOKEN_2022_PROGRAM_ID
-      )
+      createMintToInstruction(mint.publicKey, sourceTokenAccount, wallet.publicKey, amount, [], TOKEN_2022_PROGRAM_ID),
     );
 
-    const txSig = await sendAndConfirmTransaction(
-      connection,
-      transaction,
-      [wallet.payer],
-      { skipPreflight: true }
-    );
+    const txSig = await sendAndConfirmTransaction(connection, transaction, [wallet.payer], { skipPreflight: true });
 
     console.log(`Transaction Signature: ${txSig}`);
   });
 
   // Account to store extra accounts required by the transfer hook instruction
-  it("Create ExtraAccountMetaList Account", async () => {
+  it('Create ExtraAccountMetaList Account', async () => {
     const initializeExtraAccountMetaListInstruction = await program.methods
       .initializeExtraAccountMetaList()
       .accounts({
@@ -114,51 +97,38 @@ describe("transfer-hook", () => {
       })
       .instruction();
 
-    const transaction = new Transaction().add(
-      initializeExtraAccountMetaListInstruction
-    );
+    const transaction = new Transaction().add(initializeExtraAccountMetaListInstruction);
 
-    const txSig = await sendAndConfirmTransaction(
-      provider.connection,
-      transaction,
-      [wallet.payer],
-      { skipPreflight: true, commitment: "confirmed" }
-    );
-    console.log("Transaction Signature:", txSig);
+    const txSig = await sendAndConfirmTransaction(provider.connection, transaction, [wallet.payer], { skipPreflight: true, commitment: 'confirmed' });
+    console.log('Transaction Signature:', txSig);
   });
 
-  it("Transfer Hook with Extra Account Meta", async () => {
+  it('Transfer Hook with Extra Account Meta', async () => {
     // 1 tokens
     const amount = 1 * 10 ** decimals;
     const bigIntAmount = BigInt(amount);
 
     // Standard token transfer instruction
-    const transferInstruction =
-      await createTransferCheckedWithTransferHookInstruction(
-        connection,
-        sourceTokenAccount,
-        mint.publicKey,
-        destinationTokenAccount,
-        wallet.publicKey,
-        bigIntAmount,
-        decimals,
-        [],
-        "confirmed",
-        TOKEN_2022_PROGRAM_ID
-      );
+    const transferInstruction = await createTransferCheckedWithTransferHookInstruction(
+      connection,
+      sourceTokenAccount,
+      mint.publicKey,
+      destinationTokenAccount,
+      wallet.publicKey,
+      bigIntAmount,
+      decimals,
+      [],
+      'confirmed',
+      TOKEN_2022_PROGRAM_ID,
+    );
 
     const transaction = new Transaction().add(transferInstruction);
 
-    const txSig = await sendAndConfirmTransaction(
-      connection,
-      transaction,
-      [wallet.payer],
-      { skipPreflight: true }
-    );
-    console.log("Transfer Signature:", txSig);
+    const txSig = await sendAndConfirmTransaction(connection, transaction, [wallet.payer], { skipPreflight: true });
+    console.log('Transfer Signature:', txSig);
   });
 
-  it("Try call transfer hook without transfer", async () => {
+  it('Try call transfer hook without transfer', async () => {
     const transferHookIx = await program.methods
       .transferHook(new anchor.BN(1))
       .accounts({
@@ -171,16 +141,8 @@ describe("transfer-hook", () => {
 
     const transaction = new Transaction().add(transferHookIx);
 
-    const sendPromise = sendAndConfirmTransaction(
-      connection,
-      transaction,
-      [wallet.payer],
-      { skipPreflight: false }
-    );
+    const sendPromise = sendAndConfirmTransaction(connection, transaction, [wallet.payer], { skipPreflight: false });
 
-    await expect(sendPromise).to.eventually.be.rejectedWith(
-      SendTransactionError,
-      program.idl.errors[0].msg
-    );
+    await expect(sendPromise).to.eventually.be.rejectedWith(SendTransactionError, program.idl.errors[0].msg);
   });
 });