8 lines
295 B
TypeScript
8 lines
295 B
TypeScript
import { EntityDict } from '../oak-app-domain';
|
|
import { BRC } from '../types/RuntimeCxt';
|
|
export declare function getWithdrawCreateData(params: {
|
|
accountId: string;
|
|
price: number;
|
|
withdrawAccountId?: string;
|
|
}, context: BRC): Promise<EntityDict['withdraw']['CreateOperationData']>;
|