Use this skill to construct Anchor clients that call The Trench program on devnet. This repo is public and contains only the IDL and TS types (no private bot logic).
6fs4qcRYSdR8pd2ZPoAmLpthrqZR94Dhf6J4PLvtqQt1{baseDir}/../idl.json{baseDir}/../the_trench.tsimport { Connection, PublicKey } from "@solana/web3.js";
import { AnchorProvider, Program } from "@coral-xyz/anchor";
import idl from "../idl.json";
const programId = new PublicKey("6fs4qcRYSdR8pd2ZPoAmLpthrqZR94Dhf6J4PLvtqQt1");
const connection = new Connection("https://api.devnet.solana.com", "confirmed");
const provider = AnchorProvider.env();
const program = new Program(idl as any, programId, provider);
// Example call
// await program.methods.listDeadToken(...).accounts({ ... }).rpc();
共 1 个版本