Type Alias GetWeb3TargetResponseFragmentFragment

GetWeb3TargetResponseFragmentFragment: {
    __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;
    };
}