@ledgerhq/coin-tezos
Version:
13 lines • 426 B
JavaScript
// SPDX-FileCopyrightText: © 2026 LEDGER SAS
// SPDX-License-Identifier: Apache-2.0
import { createTzktApi } from '../network/tzkt';
export async function lastBlock(context) {
const config = await context.config();
const result = await createTzktApi(config).getLastBlock();
return {
height: result.level,
hash: result.hash,
time: result.date,
};
}
//# sourceMappingURL=lastBlock.js.map