@leda-mint-io/safecoin-web3-tools
v0.1.9
Published
A set of Web3 tools to improve the User Experience on Safecoin Frontends.
Downloads
3
Readme
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();
}