Some checks failed
CI/CD Pipeline / Solidity Contracts (push) Failing after 1m11s
CI/CD Pipeline / Security Scanning (push) Has been cancelled
CI/CD Pipeline / Lint and Format (push) Has been cancelled
CI/CD Pipeline / Terraform Validation (push) Has been cancelled
CI/CD Pipeline / Kubernetes Validation (push) Has been cancelled
Validation / validate-genesis (push) Has been cancelled
Validation / validate-terraform (push) Has been cancelled
Validation / validate-kubernetes (push) Has been cancelled
Validation / validate-smart-contracts (push) Has been cancelled
Validation / validate-security (push) Has been cancelled
Validation / validate-documentation (push) Has been cancelled
Deploy ChainID 138 / Deploy ChainID 138 (push) Failing after 1m4s
HYBX OMNL TypeScript & anchor / token-aggregation build + reconcile artifact (push) Failing after 31s
OMNL reconcile anchor / Run omnl:reconcile and upload artifacts (push) Failing after 29s
Verify Deployment / Verify Deployment (push) Failing after 57s
Relay router, reserve system, oracle publisher, token-aggregation compliance middleware, and Monad deployment scripts. Co-authored-by: Cursor <cursoragent@cursor.com>
22 lines
918 B
TypeScript
22 lines
918 B
TypeScript
import type { HybxClient } from './HybxClient';
|
|
import type { HybxPaymentRequest, HybxPaymentResponse, HybxSettlementEvent, HybxWebhookPayload } from './types';
|
|
import { type HybxConfig } from './config';
|
|
/**
|
|
* HTTP HYBX client — uses api-fineract-unified spec (Volume 20).
|
|
* Production allowed when HYBX_UNIFIED_API_OK=1 and unified manifest exists.
|
|
*/
|
|
export declare class HttpHybxClient implements HybxClient {
|
|
readonly environment: string;
|
|
private readonly config;
|
|
constructor(options?: {
|
|
config?: HybxConfig;
|
|
testMode?: boolean;
|
|
allowProduction?: boolean;
|
|
});
|
|
private postJson;
|
|
initiatePayment(request: HybxPaymentRequest): Promise<HybxPaymentResponse>;
|
|
getPaymentStatus(paymentId: string): Promise<HybxPaymentResponse>;
|
|
listSettlementEvents(since?: string): Promise<HybxSettlementEvent[]>;
|
|
parseWebhookPayload(body: string): HybxWebhookPayload;
|
|
}
|