@raydium-io/raydium-sdk-v2
Version:
An SDK for building applications on top of Raydium.
21 lines (18 loc) • 637 B
TypeScript
import { Structure } from '../../marshmallow/index.js';
import * as BN from 'bn.js';
import * as _solana_web3_js from '@solana/web3.js';
import '../../marshmallow/buffer-layout.js';
declare const splAccountLayout: Structure<number | _solana_web3_js.PublicKey | BN, "", {
state: number;
owner: _solana_web3_js.PublicKey;
amount: BN;
mint: _solana_web3_js.PublicKey;
delegateOption: number;
delegate: _solana_web3_js.PublicKey;
isNativeOption: number;
isNative: BN;
delegatedAmount: BN;
closeAuthorityOption: number;
closeAuthority: _solana_web3_js.PublicKey;
}>;
export { splAccountLayout };