UNPKG

@kamino-finance/scope-sdk

Version:
17 lines 747 B
import { Address, IAccountMeta, IInstruction, TransactionSigner } from "@solana/kit"; import BN from "bn.js"; export interface CreateMintMapArgs { seedPk: Address; seedId: BN; bump: number; scopeChains: Array<Array<number>>; } export interface CreateMintMapAccounts { admin: TransactionSigner; configuration: Address; mappings: Address; systemProgram: Address; } export declare const layout: import("buffer-layout").Layout<unknown>; export declare function createMintMap(args: CreateMintMapArgs, accounts: CreateMintMapAccounts, programAddress?: Address): IInstruction<string, readonly (IAccountMeta<string> | import("@solana/kit").IAccountLookupMeta<string, string>)[]>; //# sourceMappingURL=createMintMap.d.ts.map