@upbond/sdk
    Preparing search index...

    Interface SuiAccount

    The wallet's Sui-on-secp256k1 account, derived from the SAME MPC key as the EVM address: address = blake2b256(0x01 ‖ compressed pubkey). Known only after a Layer 2 ceremony (like walletAddress on first setup) and NOT bound to the issuer — the wallet_address claim stays Ethereum-shaped and RPs persist the Sui address on their side (issue #205 判断3).

    interface SuiAccount {
        address: `0x${string}`;
        publicKey: string;
    }
    Index
    address: `0x${string}`

    32-byte Sui address as 0x-prefixed hex (66 chars).

    publicKey: string

    Base64 of the 33-byte compressed secp256k1 public key.