GetTenantConnectedWalletQuery: {
    __typename?: "NotifiQuery";
    tenantConnectedWallet?: {
        __typename?: "TenantConnectedWalletConnection";
        nodes?: ({
            __typename?: "TenantConnectedWallet";
            address?: string;
            user?: {
                __typename?: "TenantUser";
                alerts?: (...)[];
                connectedWallets?: (...)[];
                id: string;
            };
            walletBlockchain: WalletBlockchain;
        } | undefined)[];
        pageInfo: {
            __typename?: "PageInfo";
            endCursor?: string;
            hasNextPage: boolean;
        };
    };
}