Bitcoin ABC documentation

Transactions

tx(txid)

Transaction details including token fields where applicable. See tx.

Live editor
function DemoTx() {
    return (
        <Json
            fn={async () => {
                return await chronik.tx(
                    'cdcdcdcdcdc9dda4c92bb1145aa84945c024346ea66fd4b699e344e45df2e145',
                );
            }}
        />
    );
}
render(<DemoTx />);
Result

rawTx(txid)

Raw transaction bytes. See rawTx.

Live editor
function DemoRawTx() {
    return (
        <Json
            fn={async () => {
                return await chronik.rawTx(
                    '4a5e1e4baab89f3a32518a88c31bc87f618f76673e2cc77ab2127b7afdeda33b',
                );
            }}
        />
    );
}
render(<DemoRawTx />);
Result