@firefly-exchange/library-sui
Version:
Sui library housing helper methods, classes to interact with Bluefin protocol(s) deployed on Sui
11 lines (10 loc) • 373 B
TypeScript
export declare class ValidateTx {
/**
* Given a base 64 encoded sponsored transaction bytes, returns true
* if all the transactions in the block are whitelisted to be sponsored
* by bluefin dec
* @param txBytesB64 base 64 sponsored tx block bytes
* @returns true/false
*/
static isWhitelistedForSponsor(txBytesB64: string): boolean;
}