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