UNPKG

@yubing744/rooch-sdk

Version:
9 lines (8 loc) 195 B
import { Bytes } from '../types'; export interface IAuthorization { scheme: number; payload: Bytes; } export interface IAuthorizer { auth(callData: Bytes): Promise<IAuthorization>; }