Some checks failed
CI/CD Pipeline / Solidity Contracts (push) Failing after 1m3s
CI/CD Pipeline / Security Scanning (push) Successful in 2m18s
CI/CD Pipeline / Lint and Format (push) Failing after 34s
CI/CD Pipeline / Terraform Validation (push) Failing after 20s
CI/CD Pipeline / Kubernetes Validation (push) Successful in 22s
Deploy ChainID 138 / Deploy ChainID 138 (push) Failing after 40s
HYBX OMNL TypeScript & anchor / token-aggregation build + reconcile artifact (push) Failing after 49s
OMNL reconcile anchor / Run omnl:reconcile and upload artifacts (push) Failing after 21s
Validation / validate-genesis (push) Successful in 25s
Validation / validate-terraform (push) Failing after 21s
Validation / validate-kubernetes (push) Failing after 8s
Validation / validate-smart-contracts (push) Failing after 8s
Validation / validate-security (push) Failing after 1m11s
Validation / validate-documentation (push) Failing after 14s
Verify Deployment / Verify Deployment (push) Failing after 45s
Ship AddressActivityRegistry V1/V2, ISO20022IntakeGateway, Chain138ParticipantSurface, checkpoint hub contracts, checkpoint-core package, aggregator/indexer/sdk services, relay profile guards, M00 diamond bridge facet, and OMNL compliance contracts. Co-authored-by: Cursor <cursoragent@cursor.com>
48 lines
1.7 KiB
TypeScript
48 lines
1.7 KiB
TypeScript
import { ethers } from 'ethers';
|
|
import * as fs from 'fs';
|
|
import * as path from 'path';
|
|
import { checkpointAggregatorConfig as cfg } from './config';
|
|
|
|
export type BatchPayload = {
|
|
batchId: string;
|
|
chainId: number;
|
|
checkpointBlock: number;
|
|
paymentsRoot: string;
|
|
leaves: unknown[];
|
|
submittedAt: string;
|
|
batchTotalUsd?: string;
|
|
usdEnrichedAt?: string;
|
|
};
|
|
|
|
function jsonReplacer(_key: string, value: unknown): unknown {
|
|
return typeof value === 'bigint' ? value.toString() : value;
|
|
}
|
|
|
|
export async function publishBatchPayload(batchId: bigint, payload: BatchPayload): Promise<string> {
|
|
const json = JSON.stringify(payload, jsonReplacer, 2);
|
|
const localDir = cfg.batchPayloadDir;
|
|
fs.mkdirSync(localDir, { recursive: true });
|
|
const localPath = path.join(localDir, `batch-${batchId}.json`);
|
|
fs.writeFileSync(localPath, json);
|
|
|
|
if (!cfg.ipfsApiUrl) {
|
|
if (cfg.payloadPublicUrl) {
|
|
const url = `${cfg.payloadPublicUrl.replace(/\/$/, '')}/batch-${batchId}.json`;
|
|
return ethers.keccak256(ethers.toUtf8Bytes(url));
|
|
}
|
|
return ethers.keccak256(ethers.toUtf8Bytes(`file://${localPath}`));
|
|
}
|
|
|
|
const form = new FormData();
|
|
form.append('file', new Blob([json], { type: 'application/json' }), `batch-${batchId}.json`);
|
|
const res = await fetch(`${cfg.ipfsApiUrl.replace(/\/$/, '')}/api/v0/add`, { method: 'POST', body: form });
|
|
if (!res.ok) {
|
|
throw new Error(`IPFS add failed: ${res.status} ${await res.text()}`);
|
|
}
|
|
const text = await res.text();
|
|
const line = text.trim().split('\n').pop() || '{}';
|
|
const parsed = JSON.parse(line) as { Hash?: string };
|
|
if (!parsed.Hash) throw new Error('IPFS response missing Hash');
|
|
return ethers.keccak256(ethers.toUtf8Bytes(`ipfs://${parsed.Hash}`));
|
|
}
|