Interface CallFilter

interface CallFilter {
    fromAndToAddress?: {
        from: string;
        to: string;
    };
    includeFailed?: boolean;
    publicKeyPrefix?: string;
    typeArguments?: string[];
}

Hierarchy (view full)

Properties

fromAndToAddress?: {
    from: string;
    to: string;
}
includeFailed?: boolean
publicKeyPrefix?: string
typeArguments?: string[]