Polkadot Apps
    Preparing search index...

    Interface EnsureAccountMappedOptions

    Options for ensureAccountMapped.

    interface EnsureAccountMappedOptions {
        onStatus?: (
            status: "checking" | "mapping" | "mapped" | "already-mapped",
        ) => void;
        timeoutMs?: number;
    }
    Index

    Properties

    onStatus?: (
        status: "checking" | "mapping" | "mapped" | "already-mapped",
    ) => void

    Called on mapping transaction status changes.

    timeoutMs?: number

    Timeout in ms for the map_account transaction. Default: 60_000 (1 minute).