Coda by Ian Macalinao
    Preparing search index...
    type OracleInitInfoArgs = {
        baseAddress: Address;
        baseAddressConfig: OptionOrNullable<ExtraAccountArgs>;
        initPluginAuthority: OptionOrNullable<AuthorityArgs>;
        lifecycleChecks: (
            readonly [HookableLifecycleEventArgs, ExternalCheckResultArgs]
        )[];
        resultsOffset: OptionOrNullable<ValidationResultsOffsetArgs>;
    }
    Index

    Properties

    baseAddress: Address

    The address of the oracle account, or the base address used to derive it.

    baseAddressConfig: OptionOrNullable<ExtraAccountArgs>

    How to derive the actual oracle account from baseAddress, if not baseAddress itself.

    initPluginAuthority: OptionOrNullable<AuthorityArgs>

    The authority to manage this adapter; defaults to the adapter type's standard authority if omitted.

    lifecycleChecks: (
        readonly [HookableLifecycleEventArgs, ExternalCheckResultArgs]
    )[]

    The lifecycle events this adapter should be consulted for, and how its result should be interpreted.

    resultsOffset: OptionOrNullable<ValidationResultsOffsetArgs>

    Where within the oracle account to read the OracleValidation result.