@cfxlabsinc/b2b-services
    Preparing search index...

    What is actually deployed, read from chain and from nothing else.

    interface ProgramChainFacts {
        executableBytes: number;
        executableHash: string;
        lastDeploySlot: number;
        programDataAddress: Address;
        programDataLamports: number;
        programId: Address;
        upgradeAuthority: Address | null;
    }
    Index
    executableBytes: number
    executableHash: string

    sha256 of the executable with trailing zeros trimmed.

    lastDeploySlot: number
    programDataAddress: Address
    programDataLamports: number

    Rent held by the ProgramData account.

    programId: Address
    upgradeAuthority: Address | null

    null when the program has been made immutable.