Interface ZkevmOrderUpdated

interface ZkevmOrderUpdated {
    event_name: "imtbl_zkevm_order_updated";
    event_id: string;
    chain: string;
    data: {
        id: string;
        buy: {
            item_type: string;
            end_amount: string;
            start_amount: string;
            contract_address: string;
        }[];
        hash: string;
        salt: string;
        sell: {
            token_id: string;
            item_type: string;
            end_amount: string;
            start_amount: string;
            contract_address: string;
        }[];
        status: string;
        fill_status: {
            denominator: string;
            numerator: string;
        };
        chain_id: string;
        end_time: number;
        signature: string;
        buyer_fees: {
            amount: string;
            fee_type: string;
            recipient: string;
        }[];
        created_at: number;
        start_time: number;
        updated_at: number;
        protocol_data: {
            counter: string;
            order_type: string;
            zone_address: string;
            seaport_address: string;
            seaport_version: string;
        };
        account_address: string;
    };
}

Properties

event_name: "imtbl_zkevm_order_updated"
event_id: string
chain: string
data: {
    id: string;
    buy: {
        item_type: string;
        end_amount: string;
        start_amount: string;
        contract_address: string;
    }[];
    hash: string;
    salt: string;
    sell: {
        token_id: string;
        item_type: string;
        end_amount: string;
        start_amount: string;
        contract_address: string;
    }[];
    status: string;
    fill_status: {
        denominator: string;
        numerator: string;
    };
    chain_id: string;
    end_time: number;
    signature: string;
    buyer_fees: {
        amount: string;
        fee_type: string;
        recipient: string;
    }[];
    created_at: number;
    start_time: number;
    updated_at: number;
    protocol_data: {
        counter: string;
        order_type: string;
        zone_address: string;
        seaport_address: string;
        seaport_version: string;
    };
    account_address: string;
}