@frakt-protocol/frakt-sdk
Version:
Frakt SDK for interacting with frakt.xyz protocols
12 lines (11 loc) • 405 B
TypeScript
import { web3 } from '@project-serum/anchor';
declare type RevealLotTicketByAdmin = (params: {
programId: web3.PublicKey;
connection: web3.Connection;
admin: web3.PublicKey;
lotTicket: web3.PublicKey;
isWinning: boolean;
sendTxn: (transaction: web3.Transaction) => Promise<void>;
}) => Promise<void>;
export declare const revealLotTicketByAdmin: RevealLotTicketByAdmin;
export {};