TransactionFilter: {
    Checkpoint: string;
} | {
    MoveFunction: {
        function?: string | null;
        module?: string | null;
        package: string;
    };
} | {
    InputObject: string;
} | {
    ChangedObject: string;
} | {
    FromAddress: string;
} | {
    ToAddress: string;
} | {
    FromAndToAddress: {
        from: string;
        to: string;
    };
} | {
    FromOrToAddress: {
        addr: string;
    };
} | {
    TransactionKind: string;
} | {
    TransactionKindIn: string[];
}

Type declaration

  • Checkpoint: string

Type declaration

  • MoveFunction: {
        function?: string | null;
        module?: string | null;
        package: string;
    }
    • Optional function?: string | null
    • Optional module?: string | null
    • package: string

Type declaration

  • InputObject: string

Type declaration

  • ChangedObject: string

Type declaration

  • FromAddress: string

Type declaration

  • ToAddress: string

Type declaration

  • FromAndToAddress: {
        from: string;
        to: string;
    }
    • from: string
    • to: string

Type declaration

  • FromOrToAddress: {
        addr: string;
    }
    • addr: string

Type declaration

  • TransactionKind: string

Type declaration

  • TransactionKindIn: string[]