123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274 |
- import {
- Connection,
- Signer,
- PublicKey,
- Transaction,
- TransactionSignature,
- ConfirmOptions,
- sendAndConfirmRawTransaction,
- RpcResponseAndContext,
- SimulatedTransactionResponse,
- Commitment,
- } from "@solana/web3.js";
- import { isBrowser } from "./utils/common.js";
- /**
- * The network and wallet context used to send transactions paid for and signed
- * by the provider.
- */
- export default class Provider {
- /**
- * @param connection The cluster connection where the program is deployed.
- * @param wallet The wallet used to pay for and sign all transactions.
- * @param opts Transaction confirmation options to use by default.
- */
- constructor(
- readonly connection: Connection,
- readonly wallet: Wallet,
- readonly opts: ConfirmOptions
- ) {}
- static defaultOptions(): ConfirmOptions {
- return {
- preflightCommitment: "processed",
- commitment: "processed",
- };
- }
- /**
- * Returns a `Provider` with a wallet read from the local filesystem.
- *
- * @param url The network cluster url.
- * @param opts The default transaction confirmation options.
- *
- * (This api is for Node only.)
- */
- static local(url?: string, opts?: ConfirmOptions): Provider {
- if (isBrowser) {
- throw new Error(`Provider local is not available on browser.`);
- }
- opts = opts ?? Provider.defaultOptions();
- const connection = new Connection(
- url ?? "http://localhost:8899",
- opts.preflightCommitment
- );
- const NodeWallet = require("./nodewallet.js").default;
- const wallet = NodeWallet.local();
- return new Provider(connection, wallet, opts);
- }
- /**
- * Returns a `Provider` read from the `ANCHOR_PROVIDER_URL` environment
- * variable
- *
- * (This api is for Node only.)
- */
- static env(): Provider {
- if (isBrowser) {
- throw new Error(`Provider env is not available on browser.`);
- }
- const process = require("process");
- const url = process.env.ANCHOR_PROVIDER_URL;
- if (url === undefined) {
- throw new Error("ANCHOR_PROVIDER_URL is not defined");
- }
- const options = Provider.defaultOptions();
- const connection = new Connection(url, options.commitment);
- const NodeWallet = require("./nodewallet.js").default;
- const wallet = NodeWallet.local();
- return new Provider(connection, wallet, options);
- }
- /**
- * Sends the given transaction, paid for and signed by the provider's wallet.
- *
- * @param tx The transaction to send.
- * @param signers The set of signers in addition to the provider wallet that
- * will sign the transaction.
- * @param opts Transaction confirmation options.
- */
- async send(
- tx: Transaction,
- signers?: Array<Signer | undefined>,
- opts?: ConfirmOptions
- ): Promise<TransactionSignature> {
- if (signers === undefined) {
- signers = [];
- }
- if (opts === undefined) {
- opts = this.opts;
- }
- tx.feePayer = this.wallet.publicKey;
- tx.recentBlockhash = (
- await this.connection.getRecentBlockhash(opts.preflightCommitment)
- ).blockhash;
- await this.wallet.signTransaction(tx);
- signers
- .filter((s): s is Signer => s !== undefined)
- .forEach((kp) => {
- tx.partialSign(kp);
- });
- const rawTx = tx.serialize();
- const txId = await sendAndConfirmRawTransaction(
- this.connection,
- rawTx,
- opts
- );
- return txId;
- }
- /**
- * Similar to `send`, but for an array of transactions and signers.
- */
- async sendAll(
- reqs: Array<SendTxRequest>,
- opts?: ConfirmOptions
- ): Promise<Array<TransactionSignature>> {
- if (opts === undefined) {
- opts = this.opts;
- }
- const blockhash = await this.connection.getRecentBlockhash(
- opts.preflightCommitment
- );
- let txs = reqs.map((r) => {
- let tx = r.tx;
- let signers = r.signers;
- if (signers === undefined) {
- signers = [];
- }
- tx.feePayer = this.wallet.publicKey;
- tx.recentBlockhash = blockhash.blockhash;
- signers
- .filter((s): s is Signer => s !== undefined)
- .forEach((kp) => {
- tx.partialSign(kp);
- });
- return tx;
- });
- const signedTxs = await this.wallet.signAllTransactions(txs);
- const sigs: TransactionSignature[] = [];
- for (let k = 0; k < txs.length; k += 1) {
- const tx = signedTxs[k];
- const rawTx = tx.serialize();
- sigs.push(
- await sendAndConfirmRawTransaction(this.connection, rawTx, opts)
- );
- }
- return sigs;
- }
- /**
- * Simulates the given transaction, returning emitted logs from execution.
- *
- * @param tx The transaction to send.
- * @param signers The set of signers in addition to the provdier wallet that
- * will sign the transaction.
- * @param opts Transaction confirmation options.
- */
- async simulate(
- tx: Transaction,
- signers?: Array<Signer | undefined>,
- opts: ConfirmOptions = this.opts
- ): Promise<RpcResponseAndContext<SimulatedTransactionResponse>> {
- if (signers === undefined) {
- signers = [];
- }
- tx.feePayer = this.wallet.publicKey;
- tx.recentBlockhash = (
- await this.connection.getRecentBlockhash(
- opts.preflightCommitment ?? this.opts.preflightCommitment
- )
- ).blockhash;
- await this.wallet.signTransaction(tx);
- signers
- .filter((s): s is Signer => s !== undefined)
- .forEach((kp) => {
- tx.partialSign(kp);
- });
- return await simulateTransaction(
- this.connection,
- tx,
- opts.commitment ?? this.opts.commitment ?? "processed"
- );
- }
- }
- export type SendTxRequest = {
- tx: Transaction;
- signers: Array<Signer | undefined>;
- };
- /**
- * Wallet interface for objects that can be used to sign provider transactions.
- */
- export interface Wallet {
- signTransaction(tx: Transaction): Promise<Transaction>;
- signAllTransactions(txs: Transaction[]): Promise<Transaction[]>;
- publicKey: PublicKey;
- }
- // Copy of Connection.simulateTransaction that takes a commitment parameter.
- async function simulateTransaction(
- connection: Connection,
- transaction: Transaction,
- commitment: Commitment
- ): Promise<RpcResponseAndContext<SimulatedTransactionResponse>> {
- // @ts-ignore
- transaction.recentBlockhash = await connection._recentBlockhash(
- // @ts-ignore
- connection._disableBlockhashCaching
- );
- const signData = transaction.serializeMessage();
- // @ts-ignore
- const wireTransaction = transaction._serialize(signData);
- const encodedTransaction = wireTransaction.toString("base64");
- const config: any = { encoding: "base64", commitment };
- const args = [encodedTransaction, config];
- // @ts-ignore
- const res = await connection._rpcRequest("simulateTransaction", args);
- if (res.error) {
- throw new Error("failed to simulate transaction: " + res.error.message);
- }
- return res.result;
- }
- /**
- * Sets the default provider on the client.
- */
- export function setProvider(provider: Provider) {
- _provider = provider;
- }
- /**
- * Returns the default provider being used by the client.
- */
- export function getProvider(): Provider {
- if (_provider === null) {
- return Provider.local();
- }
- return _provider;
- }
- // Global provider used as the default when a provider is not given.
- let _provider: Provider | null = null;
|