├── .commitlintrc.json ├── .eslintrc.json ├── .gitignore ├── .husky ├── commit-msg └── pre-commit ├── .prettierrc ├── .vscode └── settings.json ├── README.md ├── next-env.d.ts ├── next.config.js ├── package.json ├── public ├── CyberGraph-Icon.png ├── CyberGraph-logo.png ├── CyberGraph-screenshot.jpg ├── Sample_User_Icon.png ├── blue.png ├── brown.png ├── favicon.ico ├── green.png ├── grey.png ├── icons │ ├── context.png │ ├── eth.png │ ├── etherscan.ico │ ├── foundation.png │ ├── opensea.png │ ├── rarible.png │ └── twitter.png ├── red.jpg ├── vercel.svg └── white.png ├── src ├── components │ ├── Graph │ │ ├── FocusGraph.module.css │ │ ├── FocusGraph.tsx │ │ └── FocusGraphWrapper.tsx │ ├── ListModal │ │ ├── index.module.css │ │ └── index.tsx │ ├── NavBar │ │ ├── index.module.css │ │ └── index.tsx │ ├── NftListItem │ │ ├── index.module.css │ │ └── index.tsx │ ├── NftModal │ │ ├── index.module.css │ │ └── index.tsx │ ├── PoapModal │ │ ├── index.module.css │ │ └── index.tsx │ ├── SearchBar │ │ ├── index.module.css │ │ └── index.tsx │ ├── UserPanel │ │ ├── NftSections.tsx │ │ ├── index.module.css │ │ └── index.tsx │ └── WalletConnectButton │ │ ├── index.module.css │ │ └── index.tsx ├── config │ └── config.ts ├── context │ ├── GraphContext.tsx │ └── web3Context.tsx ├── graphql │ ├── client.tsx │ └── queries │ │ ├── get_connections.tsx │ │ ├── get_identity.tsx │ │ └── get_recommendation.tsx ├── pages │ ├── _app.tsx │ ├── api │ │ └── get_balance_api.ts │ └── index.tsx ├── types │ ├── AllSocialConnections.ts │ └── identity.ts └── utils │ └── helper.ts ├── styles ├── Home.module.css └── globals.css ├── tsconfig.json └── yarn.lock /.commitlintrc.json: -------------------------------------------------------------------------------- 1 | { "extends": ["@commitlint/config-conventional"] } 2 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberconnecthq/GraphVis/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberconnecthq/GraphVis/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberconnecthq/GraphVis/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npx lint-staged 5 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "tabWidth": 4 3 | } 4 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberconnecthq/GraphVis/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberconnecthq/GraphVis/HEAD/README.md -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberconnecthq/GraphVis/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberconnecthq/GraphVis/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberconnecthq/GraphVis/HEAD/package.json -------------------------------------------------------------------------------- /public/CyberGraph-Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberconnecthq/GraphVis/HEAD/public/CyberGraph-Icon.png -------------------------------------------------------------------------------- /public/CyberGraph-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberconnecthq/GraphVis/HEAD/public/CyberGraph-logo.png -------------------------------------------------------------------------------- /public/CyberGraph-screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberconnecthq/GraphVis/HEAD/public/CyberGraph-screenshot.jpg -------------------------------------------------------------------------------- /public/Sample_User_Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberconnecthq/GraphVis/HEAD/public/Sample_User_Icon.png -------------------------------------------------------------------------------- /public/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberconnecthq/GraphVis/HEAD/public/blue.png -------------------------------------------------------------------------------- /public/brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberconnecthq/GraphVis/HEAD/public/brown.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberconnecthq/GraphVis/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberconnecthq/GraphVis/HEAD/public/green.png -------------------------------------------------------------------------------- /public/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberconnecthq/GraphVis/HEAD/public/grey.png -------------------------------------------------------------------------------- /public/icons/context.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberconnecthq/GraphVis/HEAD/public/icons/context.png -------------------------------------------------------------------------------- /public/icons/eth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberconnecthq/GraphVis/HEAD/public/icons/eth.png -------------------------------------------------------------------------------- /public/icons/etherscan.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberconnecthq/GraphVis/HEAD/public/icons/etherscan.ico -------------------------------------------------------------------------------- /public/icons/foundation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberconnecthq/GraphVis/HEAD/public/icons/foundation.png -------------------------------------------------------------------------------- /public/icons/opensea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberconnecthq/GraphVis/HEAD/public/icons/opensea.png -------------------------------------------------------------------------------- /public/icons/rarible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberconnecthq/GraphVis/HEAD/public/icons/rarible.png -------------------------------------------------------------------------------- /public/icons/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberconnecthq/GraphVis/HEAD/public/icons/twitter.png -------------------------------------------------------------------------------- /public/red.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberconnecthq/GraphVis/HEAD/public/red.jpg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberconnecthq/GraphVis/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /public/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberconnecthq/GraphVis/HEAD/public/white.png -------------------------------------------------------------------------------- /src/components/Graph/FocusGraph.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberconnecthq/GraphVis/HEAD/src/components/Graph/FocusGraph.module.css -------------------------------------------------------------------------------- /src/components/Graph/FocusGraph.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberconnecthq/GraphVis/HEAD/src/components/Graph/FocusGraph.tsx -------------------------------------------------------------------------------- /src/components/Graph/FocusGraphWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberconnecthq/GraphVis/HEAD/src/components/Graph/FocusGraphWrapper.tsx -------------------------------------------------------------------------------- /src/components/ListModal/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberconnecthq/GraphVis/HEAD/src/components/ListModal/index.module.css -------------------------------------------------------------------------------- /src/components/ListModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberconnecthq/GraphVis/HEAD/src/components/ListModal/index.tsx -------------------------------------------------------------------------------- /src/components/NavBar/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberconnecthq/GraphVis/HEAD/src/components/NavBar/index.module.css -------------------------------------------------------------------------------- /src/components/NavBar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberconnecthq/GraphVis/HEAD/src/components/NavBar/index.tsx -------------------------------------------------------------------------------- /src/components/NftListItem/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberconnecthq/GraphVis/HEAD/src/components/NftListItem/index.module.css -------------------------------------------------------------------------------- /src/components/NftListItem/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberconnecthq/GraphVis/HEAD/src/components/NftListItem/index.tsx -------------------------------------------------------------------------------- /src/components/NftModal/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberconnecthq/GraphVis/HEAD/src/components/NftModal/index.module.css -------------------------------------------------------------------------------- /src/components/NftModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberconnecthq/GraphVis/HEAD/src/components/NftModal/index.tsx -------------------------------------------------------------------------------- /src/components/PoapModal/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberconnecthq/GraphVis/HEAD/src/components/PoapModal/index.module.css -------------------------------------------------------------------------------- /src/components/PoapModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberconnecthq/GraphVis/HEAD/src/components/PoapModal/index.tsx -------------------------------------------------------------------------------- /src/components/SearchBar/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberconnecthq/GraphVis/HEAD/src/components/SearchBar/index.module.css -------------------------------------------------------------------------------- /src/components/SearchBar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberconnecthq/GraphVis/HEAD/src/components/SearchBar/index.tsx -------------------------------------------------------------------------------- /src/components/UserPanel/NftSections.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberconnecthq/GraphVis/HEAD/src/components/UserPanel/NftSections.tsx -------------------------------------------------------------------------------- /src/components/UserPanel/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberconnecthq/GraphVis/HEAD/src/components/UserPanel/index.module.css -------------------------------------------------------------------------------- /src/components/UserPanel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberconnecthq/GraphVis/HEAD/src/components/UserPanel/index.tsx -------------------------------------------------------------------------------- /src/components/WalletConnectButton/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberconnecthq/GraphVis/HEAD/src/components/WalletConnectButton/index.module.css -------------------------------------------------------------------------------- /src/components/WalletConnectButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberconnecthq/GraphVis/HEAD/src/components/WalletConnectButton/index.tsx -------------------------------------------------------------------------------- /src/config/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberconnecthq/GraphVis/HEAD/src/config/config.ts -------------------------------------------------------------------------------- /src/context/GraphContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberconnecthq/GraphVis/HEAD/src/context/GraphContext.tsx -------------------------------------------------------------------------------- /src/context/web3Context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberconnecthq/GraphVis/HEAD/src/context/web3Context.tsx -------------------------------------------------------------------------------- /src/graphql/client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberconnecthq/GraphVis/HEAD/src/graphql/client.tsx -------------------------------------------------------------------------------- /src/graphql/queries/get_connections.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberconnecthq/GraphVis/HEAD/src/graphql/queries/get_connections.tsx -------------------------------------------------------------------------------- /src/graphql/queries/get_identity.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberconnecthq/GraphVis/HEAD/src/graphql/queries/get_identity.tsx -------------------------------------------------------------------------------- /src/graphql/queries/get_recommendation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberconnecthq/GraphVis/HEAD/src/graphql/queries/get_recommendation.tsx -------------------------------------------------------------------------------- /src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberconnecthq/GraphVis/HEAD/src/pages/_app.tsx -------------------------------------------------------------------------------- /src/pages/api/get_balance_api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberconnecthq/GraphVis/HEAD/src/pages/api/get_balance_api.ts -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberconnecthq/GraphVis/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/types/AllSocialConnections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberconnecthq/GraphVis/HEAD/src/types/AllSocialConnections.ts -------------------------------------------------------------------------------- /src/types/identity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberconnecthq/GraphVis/HEAD/src/types/identity.ts -------------------------------------------------------------------------------- /src/utils/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberconnecthq/GraphVis/HEAD/src/utils/helper.ts -------------------------------------------------------------------------------- /styles/Home.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberconnecthq/GraphVis/HEAD/styles/Home.module.css -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberconnecthq/GraphVis/HEAD/styles/globals.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberconnecthq/GraphVis/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberconnecthq/GraphVis/HEAD/yarn.lock --------------------------------------------------------------------------------