UNPKG

@fairmint/canton-node-sdk

Version:
21 lines 779 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.GetTransferOfferStatus = void 0; const core_1 = require("../../../../../../core"); const operations_1 = require("../../../../schemas/operations"); /** * Get the status of a transfer offer by tracking ID * * @example * ```typescript * const status = await client.getTransferOfferStatus({ trackingId: 'unique-tracking-id' }); * * ```; */ exports.GetTransferOfferStatus = (0, core_1.createApiOperation)({ paramsSchema: operations_1.GetTransferOfferStatusParamsSchema, method: 'POST', buildUrl: (params, apiUrl) => `${apiUrl}/api/validator/v0/wallet/transfer-offers/${params.trackingId}/status`, buildRequestData: () => ({}), }); //# sourceMappingURL=get-status.js.map