UNPKG

@hubbleprotocol/farms-sdk

Version:
11 lines (10 loc) 422 B
import { TransactionInstruction, PublicKey } from "@solana/web3.js"; export interface TransferOwnershipArgs { newOwner: PublicKey; } export interface TransferOwnershipAccounts { owner: PublicKey; userState: PublicKey; } export declare const layout: any; export declare function transferOwnership(args: TransferOwnershipArgs, accounts: TransferOwnershipAccounts, programId?: PublicKey): TransactionInstruction;