GetWeb3TargetsQuery: {
    __typename?: "NotifiQuery";
    web3Targets?: {
        __typename?: "Web3TargetsConnection";
        edges?: {
            __typename?: "Web3TargetsEdge";
            cursor: string;
        }[];
        nodes?: {
            __typename?: "Web3Target";
            accountId?: string;
            id: string;
            isConfirmed: boolean;
            name?: string;
            senderAddress?: string;
            targetProtocol: Web3TargetProtocol;
            walletBlockchain: WalletBlockchain;
        }[];
        pageInfo: {
            __typename?: "PageInfo";
            endCursor?: string;
            hasNextPage: boolean;
            hasPreviousPage: boolean;
            startCursor?: string;
        };
    };
}