@fairmint/canton-node-sdk
Version:
Canton Node SDK
25 lines • 728 B
TypeScript
/**
* Create a new transfer offer to send tokens to another party
*
* @example
* ```typescript
* const offer = await client.createTransferOffer({
* receiver_party_id: 'party123',
* amount: '100',
* description: 'Payment for services',
* expires_at: Date.now() + 3600000, // 1 hour from now
* tracking_id: 'unique-tracking-id'
* });
*
* ```;
*/
export declare const CreateTransferOffer: new (client: import("../../../../../../core").BaseClient) => import("../../../../../../core").ApiOperation<{
receiver_party_id: string;
amount: string;
description: string;
expires_at: number;
tracking_id: string;
}, {
offer_contract_id: string;
}>;
//# sourceMappingURL=create.d.ts.map