@marinade.finance/kamino-sdk
Version:
18 lines (17 loc) • 607 B
TypeScript
import { TransactionInstruction, PublicKey } from "@solana/web3.js";
export interface UpdateSharesMetadataArgs {
name: string;
symbol: string;
uri: string;
}
export interface UpdateSharesMetadataAccounts {
adminAuthority: PublicKey;
strategy: PublicKey;
globalConfig: PublicKey;
sharesMint: PublicKey;
sharesMetadata: PublicKey;
sharesMintAuthority: PublicKey;
metadataProgram: PublicKey;
}
export declare const layout: any;
export declare function updateSharesMetadata(args: UpdateSharesMetadataArgs, accounts: UpdateSharesMetadataAccounts): TransactionInstruction;