@holaplex/solana-web3-tools

0.1.8 • 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();
}

Readme

Keywords

Package Sidebar

Install

npm i @holaplex/solana-web3-tools

Weekly Downloads

3

Version

0.1.8

License

AGPL-3.0-or-later

Unpacked Size

24.8 kB

Total Files

20

Last publish

Collaborators

  • abasit_holaplex
  • kespinola
  • 0xbanana