Coda by Ian Macalinao
    Preparing search index...

    Initialization data for the Oracle external plugin adapter.

    type OracleInitInfo = {
        baseAddress: Address;
        baseAddressConfig: Option<ExtraAccount>;
        initPluginAuthority: Option<Authority>;
        lifecycleChecks: (readonly [HookableLifecycleEvent, ExternalCheckResult])[];
        resultsOffset: Option<ValidationResultsOffset>;
    }
    Index

    Properties

    baseAddress: Address

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

    baseAddressConfig: Option<ExtraAccount>

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

    initPluginAuthority: Option<Authority>

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

    lifecycleChecks: (readonly [HookableLifecycleEvent, ExternalCheckResult])[]

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

    resultsOffset: Option<ValidationResultsOffset>

    Where within the oracle account to read the OracleValidation result.