The PreAuthorizedDebitReadClient component of the SDK is outlined in the interface found in our .
Instantiating a PreAuthorizedDebitReadClient
Mainnet
import { clusterApiUrl, Connection } from "@solana/web3.js";
import { PreAuthorizedDebitReadClientImpl } from "@seabed-labs/pre-authorized-debit";
// You can use any connection object you'd like, this is just an example
const connection = new Connection(clusterApiUrl("mainnet-beta"));
const readClient = PreAuthorizedDebitReadClientImpl.mainnet(connection);
Devnet
import { clusterApiUrl, Connection } from "@solana/web3.js";
import { PreAuthorizedDebitReadClientImpl } from "@seabed-labs/pre-authorized-debit";
// You can use any connection object you'd like, this is just an example
const connection = new Connection(clusterApiUrl("devnet"));
const readClient = PreAuthorizedDebitReadClientImpl.devnet(connection);
Custom
Point the read client to a custom deployment on any cluster:
import { clusterApiUrl, Connection } from "@solana/web3.js";
import { PreAuthorizedDebitReadClientImpl } from "@seabed-labs/pre-authorized-debit";
const connection = new Connection(/* your connection args */);
const CUSTOM_PAD_PROGRAM_ID = /* your custom program ID */;
const readClient = PreAuthorizedDebitReadClientImpl.custom(
connection,
CUSTOM_PAD_PROGRAM_ID
);
Check if amount can be debited against a pre-authorization
Check whether a debit will go through given a pre-authorization pubkey (using the current solana validator time):
const res = await readClient.checkDebitAmount({
preAuthorization: // pre-auth pubkey,
requestedDebitAmount: // amount to debit (bigint),
txFeePayer: // the lamports fee payer pubkey for the tx,
destinationTokenAccount: // optional - defaults to ATA of debitAuthority,
});
if (!res.successful) {
const { reason } = res;
}
Check whether a debit will go through given the token account and debit authority pubkeys (using the current solana validator time):
const res = await readClient.checkDebitAmount({
tokenAccount: // token account pubkey,
debitAuthority: // debit authority pubkey,
requestedDebitAmount: // amount to debit (bigint),
txFeePayer: // the lamports fee payer pubkey for the tx,
destinationTokenAccount: // optional - defaults to ATA of debitAuthority,
});
if (!res.successful) {
const { reason } = res;
}
Fetch the token program ID for a token account
Fetch the token program ID (Token or Token2022) for a given token account:
Fetch the current delegation of a Pre-Authorization's token account
Fetch the current delegate and delegated amount of a token account given the pre-authorization public key (returns null if no delegate or delegated amount is 0):