Polkadot Apps
    Preparing search index...

    Interface MappingChecker

    Minimal interface for checking if an address is mapped on-chain.

    The Ink SDK's createInkSdk(client) returns an object with this method. We accept it structurally to avoid importing @polkadot-api/sdk-ink.

    interface MappingChecker {
        addressIsMapped(address: string): Promise<boolean>;
    }
    Index

    Methods