import { Brand } from '@solana/nominal-types'; export type Slot = bigint; export type Epoch = bigint; // Specifically being used to denote micro-lamports, which are 0.000001 lamports. export type MicroLamports = Brand; export type SignedLamports = bigint; // FIXME(solana-labs/solana/issues/30341) // // Beware that floating-point value precision can vary widely: // - For precision of 1 decimal place, anything above 562949953421311 // - For precision of 2 decimal places, anything above 70368744177663 // can be truncated or rounded because of a downcast to JavaScript `number` between your calling // code and the JSON-RPC transport. export type F64UnsafeSeeDocumentation = number;