lisk-framework
Version:
Lisk blockchain application platform
8 lines (7 loc) • 344 B
TypeScript
/// <reference types="node" />
import { BaseMethod } from '../base_method';
import { ImmutableMethodContext } from '../../state_machine';
import { AuthAccount } from './stores/auth_account';
export declare class AuthMethod extends BaseMethod {
getAuthAccount(methodContext: ImmutableMethodContext, address: Buffer): Promise<AuthAccount>;
}