Interface GCREditStorageProgram

interface GCREditStorageProgram {
    context: {
        data?: {
            metadata: any;
            variables: any;
        };
        operation: string;
        sender: string;
    };
    isRollback: boolean;
    target: string;
    txhash: string;
    type: "storageProgram";
}

Properties

context: {
    data?: {
        metadata: any;
        variables: any;
    };
    operation: string;
    sender: string;
}
isRollback: boolean
target: string
txhash: string
type