Represents storage proof

interface StorageProof {
    address: string;
    storageProof: {
        index: Numbers;
        key: string;
        proof: string[];
        value: string;
    }[];
}

Properties

address: string
storageProof: { index: Numbers; key: string; proof: string[]; value: string }[]