We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97bcfab commit 1e1fa16Copy full SHA for 1e1fa16
src/wrappers/instructionBuffer/index.ts
@@ -2,6 +2,7 @@ import { TransactionEnvelope } from "@saberhq/solana-contrib";
2
import type {
3
AccountMeta,
4
PublicKey,
5
+ Signer,
6
TransactionInstruction,
7
} from "@solana/web3.js";
8
import { Keypair } from "@solana/web3.js";
@@ -45,7 +46,7 @@ export class InstructionBufferWrapper {
45
46
numBundles?: number;
47
authority?: PublicKey;
48
executor?: PublicKey;
- bufferAccount?: Keypair;
49
+ bufferAccount?: Signer;
50
}): Promise<PendingBuffer> {
51
const accounts = {
52
buffer: bufferAccount.publicKey,
0 commit comments