@fairmint/canton-node-sdk
Version:
Canton Node SDK
28 lines • 1.34 kB
TypeScript
/**
* @description Withdraw a transfer offer by contract ID
* @example
* ```typescript
* const result = await client.withdrawTransferOffer({ contractId: 'contract123' });
* console.log(`Withdrawn offer: ${result.withdrawn_offer_contract_id}`);
* ```
*/
export declare const WithdrawTransferOffer: {
new (client: import("../../../../../../core").BaseClient): {
execute(params: {
contractId: string;
}): Promise<{
withdrawn_offer_contract_id: string;
}>;
client: import("../../../../../../core").BaseClient;
validateParams<T>(params: T, schema: import("zod").ZodType<T>): T;
makeGetRequest<T>(url: string, config?: import("../../../../../../core").RequestConfig): Promise<T>;
makePostRequest<T>(url: string, data: unknown, config?: import("../../../../../../core").RequestConfig): Promise<T>;
makeDeleteRequest<T>(url: string, config?: import("../../../../../../core").RequestConfig): Promise<T>;
makePatchRequest<T>(url: string, data: unknown, config?: import("../../../../../../core").RequestConfig): Promise<T>;
getManagedParties(): string[];
getPartyId(): string | undefined;
getApiUrl(): string;
buildPartyList(additionalParties?: string[]): string[];
};
};
//# sourceMappingURL=withdraw.d.ts.map