Files
smom-dbis-138/packages/settlement-core/dist/chain-registry.d.ts
zaragoza444 5dd67e2b1d
Some checks failed
CI/CD Pipeline / Solidity Contracts (push) Failing after 1m22s
CI/CD Pipeline / Security Scanning (push) Successful in 2m30s
CI/CD Pipeline / Lint and Format (push) Failing after 44s
CI/CD Pipeline / Terraform Validation (push) Failing after 27s
CI/CD Pipeline / Kubernetes Validation (push) Successful in 31s
Deploy ChainID 138 / Deploy ChainID 138 (push) Failing after 56s
HYBX OMNL TypeScript & anchor / token-aggregation build + reconcile artifact (push) Failing after 29s
Validation / validate-genesis (push) Successful in 34s
Validation / validate-terraform (push) Failing after 39s
Validation / validate-kubernetes (push) Failing after 14s
Validation / validate-smart-contracts (push) Failing after 20s
Validation / validate-security (push) Failing after 1m19s
Validation / validate-documentation (push) Failing after 27s
Verify Deployment / Verify Deployment (push) Failing after 1m13s
feat: OMNL Bank online production — 128 chains, Central Bank UI, settlement stack
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-28 08:49:36 -07:00

40 lines
1.1 KiB
TypeScript

export type OmnlChainEntry = {
chainId: number;
name: string;
type: 'evm' | 'non-evm';
nativeSymbol: string;
tier: string;
omnlRole: string;
status: 'active' | 'staged' | 'reserved';
rpcEnv: string;
explorerUrl?: string;
rpcDefault?: string;
settlement: {
m2LoadEnabled: boolean;
swapEnabled: boolean;
bridgeEnabled: boolean;
officeId: number;
};
complianceEnv?: string;
};
export type OmnlChainRegistry = {
version: string;
brand: string;
maxCapacity: number;
primaryChainId: number;
mirrorChainId: number;
settlementOfficeId: number;
chains: OmnlChainEntry[];
stats?: {
total: number;
active: number;
staged: number;
reserved: number;
};
};
export declare function resolveChainRegistryPath(): string;
export declare function loadOmnlChainRegistry(): OmnlChainRegistry;
export declare function getActiveChains(): OmnlChainEntry[];
export declare function getChainById(chainId: number): OmnlChainEntry | undefined;
export declare function getSupportedChainIds128(): number[];