interface AccountProof {
    accountProof: `0x${string}`[];
    address: `0x${string}`;
    balance: `0x${string}`;
    codeHash: `0x${string}`;
    nonce: `0x${string}`;
    storageHash: `0x${string}`;
    storageProof: {
        key: `0x${string}`;
        proof: `0x${string}`[];
        value: `0x${string}`;
    }[];
}

Properties

accountProof: `0x${string}`[]
address: `0x${string}`
balance: `0x${string}`
codeHash: `0x${string}`
nonce: `0x${string}`
storageHash: `0x${string}`
storageProof: {
    key: `0x${string}`;
    proof: `0x${string}`[];
    value: `0x${string}`;
}[]