Bitcoin ABC documentation

Blockchain

blockchainInfo()

Current chain tip and related fields. See blockchainInfo.

Live editor
function DemoBlockchainInfo() {
    return (
        <Json
            fn={async () => {
                const chronik = new ChronikClient([
                    'https://chronik.e.cash',
                ]);
                return await chronik.blockchainInfo();
            }}
        />
    );
}
render(<DemoBlockchainInfo />);
Result

chronikInfo()

Information about the running Chronik server. See chronikInfo.

Live editor
function DemoChronikInfo() {
    return (
        <Json
            fn={async () => {
                const chronik = new ChronikClient([
                    'https://chronik.e.cash',
                ]);
                return await chronik.chronikInfo();
            }}
        />
    );
}
render(<DemoChronikInfo />);
Result