@leda-mint-io/safecoin-web3-tools
TypeScript icon, indicating that this package has built-in type declarations

0.1.9 • Public • Published

Solana Web3 Tools

  • Insert nice art here.

Installation

$ yarn add @holaplex/solana-web3-tools

Usage

import { SmartInstructionSender } from '@holaplex/solana-web3-tools';

const someMethod = async (
    instructions: TransactionInstruction[][],
    signers: Signer[][]
) => {
    const sender = SmartInstructionSender
        .build(wallet, connection)
        .config({
            maxSigningAttempts: 3,
            abortOnFailure: true,
            commitment: 'confirmed',
        })
        .withInstructionSets(instructions.map((ixs, i) => ({
            instructions: ixs,
            signers: signers[i]
        })))
        .onProgress((i) => {
            console.log(`Just sent: ${i}`);
        })
        .onFailure((err) => {
            console.error(`Error: ${err}`);
        })
        .onReSign((attempt, i) => {
            console.warn(`ReSigning: ${i} attempt: ${attempt}`);
        });
    await sender.send();
}

/@leda-mint-io/safecoin-web3-tools/

    Package Sidebar

    Install

    npm i @leda-mint-io/safecoin-web3-tools

    Weekly Downloads

    1

    Version

    0.1.9

    License

    AGPL-3.0-or-later

    Unpacked Size

    43.8 kB

    Total Files

    21

    Last publish

    Collaborators

    • j0nnyboi
    • araviel
    • j0nnyboi2