diff --git a/README.md b/README.md
index 53c121167b..9a89ac8ee9 100644
--- a/README.md
+++ b/README.md
@@ -18,7 +18,7 @@ Base is a secure, low-cost, developer-friendly Ethereum L2 built to bring the ne
[![Blog](https://img.shields.io/badge/blog-up-green)](https://base.mirror.xyz/)
[![Docs](https://img.shields.io/badge/docs-up-green)](https://docs.base.org/)
[![Discord](https://img.shields.io/discord/1067165013397213286?label=discord)](https://base.org/discord)
-[![Twitter Base](https://img.shields.io/twitter/follow/Base?style=social)](https://twitter.com/Base)
+[![X Base](https://img.shields.io/twitter/follow/Base?style=social)](https://x.com/Base)
diff --git a/apps/base-docs/docs/tools/oracles.md b/apps/base-docs/docs/tools/oracles.md
index fbb879e55a..5781763cd8 100644
--- a/apps/base-docs/docs/tools/oracles.md
+++ b/apps/base-docs/docs/tools/oracles.md
@@ -158,7 +158,7 @@ Check out the following links to get started with Pyth.
- [Pyth Price Feed API Reference](https://api-reference.pyth.network/price-feeds/evm/getPrice)
- [Pyth Examples](https://github.com/pyth-network/pyth-examples)
- [Website](https://pyth.network/)
-- [Twitter](https://x.com/PythNetwork)
+- [X](https://x.com/PythNetwork)
---
diff --git a/apps/base-docs/docusaurus.config.js b/apps/base-docs/docusaurus.config.js
index 318f8ce96f..1ffc3b03d8 100644
--- a/apps/base-docs/docusaurus.config.js
+++ b/apps/base-docs/docusaurus.config.js
@@ -298,11 +298,11 @@ const config = {
eventContext: 'navbar',
},
{
- label: 'Twitter',
+ label: 'X',
icon: 'twitter',
type: 'custom-dropdownLink',
target: '_blank',
- to: 'https://www.twitter.com/base',
+ to: 'https://www.x.com/base',
eventLabel: 'socials_twitter',
eventContext: 'navbar',
},
diff --git a/apps/base-docs/src/components/CafeSocialShare/index.jsx b/apps/base-docs/src/components/CafeSocialShare/index.jsx
index 6d9b2bfe66..b324c125b3 100644
--- a/apps/base-docs/src/components/CafeSocialShare/index.jsx
+++ b/apps/base-docs/src/components/CafeSocialShare/index.jsx
@@ -25,7 +25,7 @@ export function CafeSocialShare({ name }) {
`. Connect your wallet to manage your profile, then click the `Manage profile` button. Add one or more text records, such as your X (formerly Twitter) URL. Once you've added the desired records, click the `Save` button at the bottom of the page. Finally, confirm and sign the transaction to make the changes onchain.
+To set a text record for your basename, start by visiting `https://www.base.org/name/`. Connect your wallet to manage your profile, then click the `Manage profile` button. Add one or more text records, such as your X (formerly X) URL. Once you've added the desired records, click the `Save` button at the bottom of the page. Finally, confirm and sign the transaction to make the changes onchain.
![image-basename](../../assets/images/basenames-tutorial/confirm-textrecord-update.png)
@@ -115,7 +115,7 @@ import { publicClient } from '../client';
// Component code will go here
```
-`IdentityWrapper` will fetch and display social media and profile information for a given Base address using OnchainKit and the Ethereum Name Service (ENS). It will query for the ENS name associated with the address and retrieve relevant text records (Twitter, GitHub, and website URL) using the specified resolver, storing this data in both component state and local storage for optimized performance. The component will be designed to present this information in a user-friendly, expandable format.
+`IdentityWrapper` will fetch and display social media and profile information for a given Base address using OnchainKit and the Ethereum Name Service (ENS). It will query for the ENS name associated with the address and retrieve relevant text records (X, GitHub, and website URL) using the specified resolver, storing this data in both component state and local storage for optimized performance. The component will be designed to present this information in a user-friendly, expandable format.
## Implementing the Component Logic
diff --git a/apps/base-docs/tutorials/docs/0_deploy-with-tenderly.md b/apps/base-docs/tutorials/docs/0_deploy-with-tenderly.md
index c45d258051..5ced63959f 100644
--- a/apps/base-docs/tutorials/docs/0_deploy-with-tenderly.md
+++ b/apps/base-docs/tutorials/docs/0_deploy-with-tenderly.md
@@ -417,4 +417,4 @@ For more information on the Tenderly full-stack infrastructure, check out the fo
- [Documentation](https://docs.tenderly.co/)
- [Blog](https://blog.tenderly.co/)
-- [Twitter](https://twitter.com/TenderlyApp)
+- [X](https://x.com/TenderlyApp)
diff --git a/apps/base-docs/tutorials/docs/4_account-abstraction-with-particle-network.md b/apps/base-docs/tutorials/docs/4_account-abstraction-with-particle-network.md
index faef194673..88ca48f5fc 100644
--- a/apps/base-docs/tutorials/docs/4_account-abstraction-with-particle-network.md
+++ b/apps/base-docs/tutorials/docs/4_account-abstraction-with-particle-network.md
@@ -392,7 +392,7 @@ Upon calling `connect`, a user will be brought through the social login process,
`connect` takes the following parameters:
-- `socialType`, the specific social login mechanism you'd like users to go through. If left as an empty string, a generalized social login modal will be shown. Otherwise, use strings such as 'google', 'twitter', 'email', etc.
+- `socialType`, the specific social login mechanism you'd like users to go through. If left as an empty string, a generalized social login modal will be shown. Otherwise, use strings such as 'google', 'x', 'email', etc.
- `chain`, an object (imported from `@particle-network/chains`) corresponding with the chain you'd like to use. In this example, it'll be `BaseSepolia`.
Ideally, some logic should be set in place to ensure `connect` isn't called if a user has already logged in. This can be done by only calling `connect` on the condition that `userInfo` (from `useAuthCore`) is undefined, indicating that the user isn't logged in.
@@ -476,7 +476,7 @@ You've now initiated social login (through `handleLogin`), assigned a smart acco
To present all of this to the user and allow them to interact with these functions for themselves, you'll need to map `handleLogin` and `executeUserOp` to the JSX of your `App` component. This will format the frontend that a user interacts with to test this application.
-Essentially, this displays either "Sign in with Google" or "Sign in with Twitter" through custom buttons that are only shown if the user hasn't logged in (determined through the state of `userInfo`). Upon logging in, the user can either call `executeUserOp` or `disconnect` (which was defined from `useConnect`).
+Essentially, this displays either "Sign in with Google" or "Sign in with X" through custom buttons that are only shown if the user hasn't logged in (determined through the state of `userInfo`). Upon logging in, the user can either call `executeUserOp` or `disconnect` (which was defined from `useConnect`).
Below is an example of what your `App.jsx/tsx` file may look at this point. At the bottom of this snippet you'll find the JSX:
@@ -552,7 +552,7 @@ const App = () => {
Sign in with Google
) : (
@@ -579,7 +579,7 @@ With everything complete, you're ready to run your application to test it. To do
1. Navigate to the root of your project.
2. Run either `npm run start` or `yarn start`.
-3. Once running, log in with either your Google or Twitter.
+3. Once running, log in with either your Google or X.
4. Fund the address displayed on the wallet modal in the bottom right.
5. Click "Execute User Operation".
diff --git a/apps/bridge/.env.goerli.example b/apps/bridge/.env.goerli.example
index a830059d7f..ad25a281a3 100644
--- a/apps/bridge/.env.goerli.example
+++ b/apps/bridge/.env.goerli.example
@@ -19,7 +19,7 @@ L2_CCTP_DOMAIN=6
MARKETING_URL=https://base.org
DOCS_URL=https://docs.base.org
BLOG_URL=https://base.mirror.xyz
-TWITTER_URL=https://twitter.com/base
+TWITTER_URL=https://x.com/base
GITHUB_URL=https://github.com/base-org
MAINNET_LAUNCH_BLOG_POST_URL=https://base.mirror.xyz
MAINNET_LAUNCH_FLAG=false
@@ -32,4 +32,4 @@ MAINNET_GA_LAUNCH_FLAG=true
WALLET_CONNECT_PROJECT_ID=
BRIDGE_API_URL=https://bridge-api.base.org
CCTP_ATTESTATIONS_API_URL=https://iris-api-sandbox.circle.com
-CCTP_ENABLED=true
\ No newline at end of file
+CCTP_ENABLED=true
diff --git a/apps/bridge/.env.sepolia.example b/apps/bridge/.env.sepolia.example
index eee7c223aa..a8f8866c76 100644
--- a/apps/bridge/.env.sepolia.example
+++ b/apps/bridge/.env.sepolia.example
@@ -19,7 +19,7 @@ L2_CCTP_DOMAIN=6
MARKETING_URL=https://base.org
DOCS_URL=https://docs.base.org
BLOG_URL=https://base.mirror.xyz
-TWITTER_URL=https://twitter.com/base
+TWITTER_URL=https://x.com/base
GITHUB_URL=https://github.com/base-org
MAINNET_LAUNCH_BLOG_POST_URL=https://base.mirror.xyz
MAINNET_LAUNCH_FLAG=false
diff --git a/apps/bridge/src/components/Nav/DesktopNav.tsx b/apps/bridge/src/components/Nav/DesktopNav.tsx
index b835b4a208..1d3a219ded 100644
--- a/apps/bridge/src/components/Nav/DesktopNav.tsx
+++ b/apps/bridge/src/components/Nav/DesktopNav.tsx
@@ -173,11 +173,11 @@ function DesktopNav({ color }: DesktopNavProps) {
title="Join us on Discord"
/>
diff --git a/apps/web/.env.local.example b/apps/web/.env.local.example
index d93ee005ca..75f000c008 100644
--- a/apps/web/.env.local.example
+++ b/apps/web/.env.local.example
@@ -3,7 +3,7 @@ BRIDGE_URL=https://bridge.base.org
ALCHEMY_API_KEY=
ALCHEMY_HTTPS=
BLOG_URL=https://base.mirror.xyz
-TWITTER_URL=https://twitter.com/base
+TWITTER_URL=https://x.com/base
GITHUB_URL=https://github.com/base-org
MAINNET_LAUNCH_BLOG_POST_URL=https://base.mirror.xyz
MAINNET_LAUNCH_FLAG=false
@@ -31,4 +31,4 @@ TALENT_PROTOCOL_API_KEY=
NEXT_PUBLIC_CLOUDINARY_CLOUD_NAME=
CLOUDINARY_API_KEY=
-CLOUDINARY_API_SECRET=
\ No newline at end of file
+CLOUDINARY_API_SECRET=
diff --git a/apps/web/scripts/partners.csv b/apps/web/scripts/partners.csv
index 3e40ee0b0a..05f10a2531 100644
--- a/apps/web/scripts/partners.csv
+++ b/apps/web/scripts/partners.csv
@@ -1,121 +1,121 @@
-Name,Priority,Stage,BD Contact,Sub-Category,Logo,Tagline,Description,Link to Project,Link to Twitter,Link to Discord,Logo Name,Available on Optimism Website?,Existing Submission that works or avail on the Dapp's Website?,"Require remediation?
+Name,Priority,Stage,BD Contact,Sub-Category,Logo,Tagline,Description,Link to Project,Link to X,Link to Discord,Logo Name,Available on Optimism Website?,Existing Submission that works or avail on the Dapp's Website?,"Require remediation?
(Resize or ask partner)",Requires square crop,Category,"Legal Comments
(Approved, Not Approved)",Notes (if not approved),"Compliance Comments
(Approved, Not Approved)",Compliance (if not approved)
-1rpc,2,Ready for Mainnet,Gavynn Arteaga,Infrastructure - Node / RPC,https://drive.google.com/open?id=1xo8C8EzkUvKNvVgRwO6Iix_WNr_REFtF,Protecting Web3 Interactions,"1RPC is a private RPC relay that eradicates metadata exposure and leakage, allowing users to gain control of their interactions with the blockchain with a one-click user experience.",https://1rpc.io,https://twitter.com/AutomataNetwork,https://discord.com/invite/automata,1rpc,No,https://drive.google.com/file/d/1zMfvxJ3njTXA2LvU5d85xOFeeHoO3AbP/view?usp=sharing,No,,Infrastructure,,,Approved,
-Aave,1,Deployment in Progress,Gavynn Arteaga,DeFi - Lend / Borrow,"https://drive.google.com/open?id=1Ld-0Ei3ZT15BmRTE7H4M3qsn4qN4bJXC, https://drive.google.com/open?id=1aBNDokH16kYzaeNpZk6YDsxEHhmOnj2M, https://drive.google.com/open?id=1SYgwZnAyswT0njn14RFJAI5_G6jK3Q-2, https://drive.google.com/open?id=1w1eM3hAEthY3yiaDUPyp7EXPDxAvY-RZ",Decentralised non-custodial liquidity protocol where users can participate as suppliers or borrowers.,"Aave Protocol is a non-custodial liquidity protocol. Users can participate as suppliers, borrowers, or liquidators, earning interest on supplied assets and borrowing in an overcollateralized manner.",https://app.aave.com,https://twitter.com/AaveAave,https://discord.com/invite/CvKUrqM,Aave,https://drive.google.com/file/d/1U-gbhVl9XTX3fAdYsVrTZhhWr5XC1qne/view?usp=sharing,,No,,DeFi,,,Approved,
-Across Protocol,3,Ready for Mainnet,Armand Khatri,Bridge,https://drive.google.com/open?id=1bC8jfjQ4R4DdaqjNUMMS47MDKgw8oLCm,The Bridge Ethereum Deserves,"Across Protocol is a leading cross-chain token bridge that is secured by UMA's optimistic oracle. It is optimized for capital efficiency with a single liquidity pool, a competitive relayer landscape, and a no-slippage fee model. You can expect secure, fast and affordable cross-chain token transfers with Across.",https://across.to/,https://twitter.com/AcrossProtocol,https://discord.across.to/,Across Protocol,https://drive.google.com/file/d/1urEhD0ug7G2yuzIFOiDK7wmRwjqXWgSE/view?usp=sharing,,No,,Bridge,,,Approved,
-Aerodrome,2,Ready for Mainnet,Armand Khatri,DeFi - Swap,https://drive.google.com/open?id=1pPaECb7XL5pX53Wc25m52v-GFGNlr6HX,The central trading and liquidity marketplace on Base.,"Aerodrome is the central trading and liquidity hub on Base. Built on top of Velodrome V2's technology stack, it brings the most advanced ve(3,3) technology to Base.",http://aerodrome.finance,https://twitter.com/aerodromefi,not live yet,Aerodrome,No,https://drive.google.com/file/d/1pPaECb7XL5pX53Wc25m52v-GFGNlr6HX/view?usp=sharing,"Yes, need to resize",,DeFi,,,Approved,
-Anotherblock,3,Deployment in Progress,Viktoriya Hying,NFT - Creator,https://drive.google.com/open?id=1oG4WR-7PrzgFEjrSJB7ih1z0Fn3rAYp1,Tagline: COLLECT. OWN. BELONG Sub tagline:own a share of your favorite song - collect royalties alongside your favorite artist.,anotherblock is empowering the emotional and financial connection between creators and consumers. Collectors own future streaming royalties of high-end tracks and earn royalties when they stream.,https://anotherblock.io/,https://twitter.com/anotherblock_io,https://discord.gg/anotherblock,Anotherblock,No,https://drive.google.com/file/d/1e8Od8meynKH1T_YskKJEQFA3NQ_H8SWO/view?usp=sharing,No,,NFT,,,Approved,
+1rpc,2,Ready for Mainnet,Gavynn Arteaga,Infrastructure - Node / RPC,https://drive.google.com/open?id=1xo8C8EzkUvKNvVgRwO6Iix_WNr_REFtF,Protecting Web3 Interactions,"1RPC is a private RPC relay that eradicates metadata exposure and leakage, allowing users to gain control of their interactions with the blockchain with a one-click user experience.",https://1rpc.io,https://x.com/AutomataNetwork,https://discord.com/invite/automata,1rpc,No,https://drive.google.com/file/d/1zMfvxJ3njTXA2LvU5d85xOFeeHoO3AbP/view?usp=sharing,No,,Infrastructure,,,Approved,
+Aave,1,Deployment in Progress,Gavynn Arteaga,DeFi - Lend / Borrow,"https://drive.google.com/open?id=1Ld-0Ei3ZT15BmRTE7H4M3qsn4qN4bJXC, https://drive.google.com/open?id=1aBNDokH16kYzaeNpZk6YDsxEHhmOnj2M, https://drive.google.com/open?id=1SYgwZnAyswT0njn14RFJAI5_G6jK3Q-2, https://drive.google.com/open?id=1w1eM3hAEthY3yiaDUPyp7EXPDxAvY-RZ",Decentralised non-custodial liquidity protocol where users can participate as suppliers or borrowers.,"Aave Protocol is a non-custodial liquidity protocol. Users can participate as suppliers, borrowers, or liquidators, earning interest on supplied assets and borrowing in an overcollateralized manner.",https://app.aave.com,https://x.com/AaveAave,https://discord.com/invite/CvKUrqM,Aave,https://drive.google.com/file/d/1U-gbhVl9XTX3fAdYsVrTZhhWr5XC1qne/view?usp=sharing,,No,,DeFi,,,Approved,
+Across Protocol,3,Ready for Mainnet,Armand Khatri,Bridge,https://drive.google.com/open?id=1bC8jfjQ4R4DdaqjNUMMS47MDKgw8oLCm,The Bridge Ethereum Deserves,"Across Protocol is a leading cross-chain token bridge that is secured by UMA's optimistic oracle. It is optimized for capital efficiency with a single liquidity pool, a competitive relayer landscape, and a no-slippage fee model. You can expect secure, fast and affordable cross-chain token transfers with Across.",https://across.to/,https://x.com/AcrossProtocol,https://discord.across.to/,Across Protocol,https://drive.google.com/file/d/1urEhD0ug7G2yuzIFOiDK7wmRwjqXWgSE/view?usp=sharing,,No,,Bridge,,,Approved,
+Aerodrome,2,Ready for Mainnet,Armand Khatri,DeFi - Swap,https://drive.google.com/open?id=1pPaECb7XL5pX53Wc25m52v-GFGNlr6HX,The central trading and liquidity marketplace on Base.,"Aerodrome is the central trading and liquidity hub on Base. Built on top of Velodrome V2's technology stack, it brings the most advanced ve(3,3) technology to Base.",http://aerodrome.finance,https://x.com/aerodromefi,not live yet,Aerodrome,No,https://drive.google.com/file/d/1pPaECb7XL5pX53Wc25m52v-GFGNlr6HX/view?usp=sharing,"Yes, need to resize",,DeFi,,,Approved,
+Anotherblock,3,Deployment in Progress,Viktoriya Hying,NFT - Creator,https://drive.google.com/open?id=1oG4WR-7PrzgFEjrSJB7ih1z0Fn3rAYp1,Tagline: COLLECT. OWN. BELONG Sub tagline:own a share of your favorite song - collect royalties alongside your favorite artist.,anotherblock is empowering the emotional and financial connection between creators and consumers. Collectors own future streaming royalties of high-end tracks and earn royalties when they stream.,https://anotherblock.io/,https://x.com/anotherblock_io,https://discord.gg/anotherblock,Anotherblock,No,https://drive.google.com/file/d/1e8Od8meynKH1T_YskKJEQFA3NQ_H8SWO/view?usp=sharing,No,,NFT,,,Approved,
Aragon Project,3,Ready for Mainnet,Saemi Kim,DAO,"https://drive.google.com/open?id=1QzhZDwgcz6HqZ9_cxY65DLi2dPEgGVMd, https://drive.google.com/open?id=1OJlzjcwtJvA3raxoYiZ8IHxnmpeF1qQR, https://drive.google.com/open?id=1UiwSnFMAfsxCw27CuGc63yN_9ZaoU4YB, https://drive.google.com/open?id=1AWUs7Kuk8KaMFAByxsYtlvjaa0ZqL-Xm",Aragon,"Aragon builds flexible and secure tools that enable anyone to launch and manage Decentralized Autonomous Organizations (DAOs). In 2016, Aragon built the first DAO framework, which has since powered the creation of over 6000 DAOs and secured over 13B in value for leading projects like Lido, Decentraland, API3, Aavegotchi and NFTX.
-Aragon recently deployed the new modular Aragon OSx protocol and no-code Aragon App. Driven by the mission to enable everyone to experiment with governance at the speed of software, Aragon aims to build a hyperstructure for governance. The Aragon Project is governed by Aragon Network Token (ANT) Holders in the Aragon DAO and built by globally distributed teams.",https://aragon.org/,https://twitter.com/aragonproject?lang=es,https://discord.gg/eug8a3Cg,Aragon Project,No,https://drive.google.com/file/d/1AWUs7Kuk8KaMFAByxsYtlvjaa0ZqL-Xm/view,No,Yes,DAO,,,Approved,
+Aragon recently deployed the new modular Aragon OSx protocol and no-code Aragon App. Driven by the mission to enable everyone to experiment with governance at the speed of software, Aragon aims to build a hyperstructure for governance. The Aragon Project is governed by Aragon Network Token (ANT) Holders in the Aragon DAO and built by globally distributed teams.",https://aragon.org/,https://x.com/aragonproject?lang=es,https://discord.gg/eug8a3Cg,Aragon Project,No,https://drive.google.com/file/d/1AWUs7Kuk8KaMFAByxsYtlvjaa0ZqL-Xm/view,No,Yes,DAO,,,Approved,
Axelar,3,Ready for Mainnet,Armand Khatri,Bridge,https://drive.google.com/open?id=1htmkmCmXT6rgs6NzUGYvwgMkxASAgP6Y,Axelar Powers the Interchain Future,"Axelar delivers secure interchain communication. That means dApp users can interact with any asset, any application, on any chain, with one click. You can think of it as Stripe for Web3.
-Developers interact with a simple API atop a permissionless network that routes messages and ensures network security via proof-of-stake consensus.",https://axelar.network,https://twitter.com/axelarcore,https://discord.com/invite/aRZ3Ra6f7D,Axelar,No,https://drive.google.com/file/d/1-2DfcQuTnVkpg-bIuWPOVOGwOLktzxZZ/view?usp=sharing,No,,Bridge,,,Approved,
-Beefy,3,Deployment in Progress,Saemi Kim,DeFi - Yield Aggregator,https://drive.google.com/open?id=1EFeaxTWjrxpZFPx0L6oaVTTmXvp7aFSA,Autocompound your tokens to earn more,"Beefy automates yield farming to make DeFi easy, safe and efficient for all. By autocompounding your tokens, Beefy unlocks higher returns so you earn more of what you love.",https://beefy.com/,https://twitter.com/beefyfinance,discord.gg/beefyfinance,Beefy,https://drive.google.com/file/d/1PdssvVPkzJr38AczPOu6WhoEqCeiiQbY/view?usp=sharing,,No,Yes,DeFi,,,Approved,
-Blockdaemon,1,(Closed Won) Deployed to Mainnet,Gavynn Arteaga,Infrastructure - Node / RPC,https://drive.google.com/open?id=1qtDgGTEivS-N9LNLpGah1B96LXCQV7Rj,Powering the blockchain economy,"The institutional-grade blockchain infrastructure for Web3. Blockdaemon provides an end-to-end suite of blockchain tools, including dedicated nodes, APIs, staking, liquid staking, MPC tech, and more.",https://blockdaemon.com,https://twitter.com/BlockdaemonHQ,,Blockdaemon,No,https://drive.google.com/file/d/1OS8s-TFk0Kcde4EPWFQkPyOhZv9MJInR/view?usp=sharing,No,,Infrastructure,,,Approved,
-Blocknative,3,Deployment in Progress,Gavynn Arteaga,DeFi - Staking,"https://drive.google.com/open?id=1RRxfJXrZMHCSeAFRhGrPPcrIdtdWG4Ed, https://drive.google.com/open?id=1W6wTjiN3p_sw4wNW8ZCuSLIcTzk03KBd",Ensure your users transact with confidence.,"Blocknative’s Web3 Onboard is an open-source library that enables dapps to easily connect 40+ wallets, preview transactions, deliver real-time notifications, and more through a great developer UX.",https://onboard.blocknative.com,https://twitter.com/blocknative,https://discord.gg/EDBvPwvHat,Blocknative,No,https://drive.google.com/file/d/1pthMDcwNb_YuM3bBbW7NyAxSJ5djtP8R/view?usp=sharing,No,,DeFi,,,Approved,
-Bonfire,3,Ready for Mainnet,Viktoriya Hying,NFT - Marketplace,"https://drive.google.com/open?id=11p-zm0NUAAXI3ip0hjmW_K4liWybcxnG, https://drive.google.com/open?id=1hQCSI4hO5FnXLndzAFu-Db2cZj0NPzZk, https://drive.google.com/open?id=1wYTWXDuXCgnQspd1KXOIyXn_tIht4mIC, https://drive.google.com/open?id=17YxvovisgAcxirPkZnHO-U2NSDnh48Up, https://drive.google.com/open?id=1-sa5B4qUny1b4y9ZW9y9Rtm5gc7icycb",Build a custom web3-native home for your community,"Bonfire is a no-code website builder and community platform for web3 creators. Bonfire’s toolkit lets creators design custom drops, and offer fans exclusive content and gated experiences on their own branded website.",https://www.bonfire.xyz/,https://twitter.com/bonfire_tweets,N/A,Bonfire,No,https://drive.google.com/file/d/1Q3qiYxUZCj_-a32StPu-4gh4f0mZ4hwg/view?usp=drive_link,"Yes, need logo",,NFT,,,Approved,
-Celer Network,3,Ready for Mainnet,Armand Khatri,Bridge,https://drive.google.com/open?id=1AnGlGEQEbF97bJNLthOLszkK41J69qdk,"Scalable interoperability for dApps, assets, and users","Celer Network is a blockchain interoperability protocol that allows users to seamlessly access a diverse range of tokens, DeFi protocols, GameFi applications, NFT marketplaces, and more across multiple blockchains with just one click.",https://celer.network/,https://twitter.com/CelerNetwork,https://discord.com/invite/Trhab5w,Celer Network,https://drive.google.com/file/d/1AZba2jEan2yVYTMN2E5HjpEEnKACna7G/view?usp=sharing,No,No,Yes,Bridge,,,Approved,
-Cielo,3,Ready for Mainnet,Gavynn Arteaga,Infrastructure - Analytics,https://drive.google.com/open?id=1eAI17KuLMZfYtjMwy5zWP1NsuMi2Zann,Onchain activity for everyone,"The most powerful onchain wallet tracking platform. Retail, degens, investors, and onchain researchers all use Cielo to better understand the blockchain. Track up to 250 wallets for free.",https://app.cielo.finance,https://twitter.com/CieloFinance,,Cielo,No,https://drive.google.com/file/d/1eAI17KuLMZfYtjMwy5zWP1NsuMi2Zann/view,No,Yes,Infrastructure,,,Approved,
-Compound,1,Ready for Mainnet,Gavynn Arteaga,DeFi - Lend / Borrow,https://drive.google.com/open?id=1I_7J8QkxT9y2v0_ZpaYbcDMoHjS2ksTQ,"Compound is an algorithmic, autonomous interest rate protocol built to unlock a universe of open financial applications.","The Compound Protocol is one of the first decentralized finance applications to let users earn interest on their digital assets, or borrow using digital assets as collateral.",https://compound.finance,https://twitter.com/compoundfinance,https://discord.gg/6paRMcRB4H,Compound,No,https://drive.google.com/file/d/1I_7J8QkxT9y2v0_ZpaYbcDMoHjS2ksTQ/view,No,,DeFi,,,Approved,
-Covalent,1,Ready for Mainnet,Gavynn Arteaga,Infrastructure Other,"https://drive.google.com/open?id=1LxV5r2ZV_tW6K-6S67UIZFBx0-BOWHpH, https://drive.google.com/open?id=1o7wRUpshOTIzHPdj1ytogMHq_BF8UdKS, https://drive.google.com/open?id=1KX5Ujv79mu8wEu1y3Z1aQNLM_ujhqOUH, https://drive.google.com/open?id=16pUbPTHtsUgkfoZ4rIWWrcY0j-Jhuybm",One Unified API. One Billion Possibilities.,Covalent's industry-leading Unified API brings visibility to billions of data points across 100+ blockchains for developers building multi-chain applications.,https://www.covalenthq.com/,https://twitter.com/Covalent_HQ,,Covalent,No,https://drive.google.com/file/d/1KX5Ujv79mu8wEu1y3Z1aQNLM_ujhqOUH/view,No,,Infrastructure,,,Approved,
-Crossmint,1,Deployment in Progress,Viktoriya Hying,NFT - Marketplace,https://drive.google.com/open?id=1ADO20OCmGEyKdx9uKtXb7iZIOM9O_0UR,"Build NFT use cases accessible to everyone, at scale","Enterprise-grade infrastructure to build NFT use cases accessible to everyone. Including NFT wallets-as-a-service, minting, payments, and token-gating APIs.",https://crossmint.com,https://twitter.com/crossmint,https://discord.gg/crossmint,Crossmint,No,https://drive.google.com/file/d/1Gk6PM3Vh7lVG1N3yc1gfuYPfIZcNTuI-/view?usp=sharing,No,Yes,NFT,,,Approved,
-CyberConnect,2,Ready for Mainnet,Saemi Kim,Social,"https://drive.google.com/open?id=1GCGHlw0b1Ipj3U23ZVWrUNiLh8mFzi_c, https://drive.google.com/open?id=1Z4sKPFdvsAj8cwhkw5tCUY36JwR3U24P, https://drive.google.com/open?id=1dOPjjgIzsFci2R08KTNzl_GiHj4SmJZa, https://drive.google.com/open?id=1-Zc5eSoNpsf8l0DUa6v91v9UK1kolSjt",Web3's Earliest and Biggest Decentralized Social Network,"CyberConnect creates long-lasting onchain connections through the power of its network. Developers use its protocol to build innovative social applications where users own their identities and data, while creators can grow their audiences in a fairer, more direct, and decentralized environment.",https://cyberconnect.me/,https://twitter.com/CyberConnectHQ,https://discord.com/invite/cyberconnect,CyberConnect,No,https://drive.google.com/file/d/1Z4sKPFdvsAj8cwhkw5tCUY36JwR3U24P/view,No,,Social,,,Approved,
-Debank,3,Deployment in Progress,Armand Khatri,Infrastructure - Analytics,https://drive.google.com/open?id=1jZsQvQ2pULmweShg_yoWF5rNdC6qhkQs,"The Web3-native messenger & the best Web3 portfolio tracker that covers all your tokens, DeFi protocols, NFTs across all EVM chains.",App: http://debank.com/download,https://debank.com,https://twitter.com/DeBankDeFi,https://discord.com/invite/KYuj8DE,Debank,https://drive.google.com/file/d/1Tw3fic7LKOfmKF3J-zFrog0WY0CsmOsG/view?usp=sharing,,No,,Infrastructure,,,Approved,
-deBridge,3,Initiated,Armand Khatri,Bridge,https://drive.google.com/open?id=1_bFsMPFb1aJRhdX2Jg0hyIRWXc1t9CYl,Interoperability For High Performance dApps,"deBridge is an infrastructure for high performance interoperability. By removing the bottlenecks and risks of liquidity pools, deBridge enables DeFi applications to scale faster with ultra capital-efficient and deep liquidity transfers across chains.",https://debridge.finance/,https://twitter.com/deBridgeFinance,https://discord.gg/debridge,deBridge,No,https://drive.google.com/file/d/1QZeJnRRoKOzJHxT6dBRNAMf_GDkdZHmE/view?usp=sharing,No,Yes,Bridge,,,Approved,
-Decent,3,Deployment in Progress,Viktoriya Hying,NFT - Marketplace,https://drive.google.com/open?id=1EfrXxFWHoL7cIzB399P-vL5C87JYu_ZV,Single-click checkout for any transaction with any token on any chain,"Cross-chain transactions, meet one-tap payments. Serve customers of every stripe with The Box, empowering them with automatic swaps, built‑in bridging, and seamless secondary sales.",https://decent.xyz/,https://twitter.com/decentxyz,,Decent,No,https://drive.google.com/file/d/1Gdf_LryW5X4u7xcSaMxLyttGHNiqaOqk/view?usp=sharing,No,,NFT,,,Approved,
-Galxe,2,Ready for Mainnet,Daryl Xu,Social,"https://drive.google.com/open?id=1ITm-OL9D1nk_rs9JNMOg6E8OpuaDVFb7, https://drive.google.com/open?id=1Cm8kImce8CrD6f9nX5x3oHLB3r0JgcVL",Your Web3 Community is Waiting.,"Galxe is the leading platform for building web3 community. With over 11 million active users to date, Galxe has propelled the growth of Optimism, Polygon, Arbitrum, and more than 2800 partners with reward-based loyalty programs. Start your campaign today at galxe.com",https://galxe.com/,https://twitter.com/Galxe,https://discord.com/invite/galxe,Galxe,No,https://drive.google.com/file/d/1Du0zpnlt1oSKfJVH4Jc7c3hP1J4sGpGw/view?usp=sharing,No,,Social,,,Approved,
-Gauntlet,2,Ready for Mainnet,Saemi Kim,Infrastructure - Security,"https://drive.google.com/open?id=1tlE-sNkBK7gZvOdfDKNWYA0VqLvll-ei, https://drive.google.com/open?id=1sXap16K9j3hprY2TXnyGMutSt4vN1l0g, https://drive.google.com/open?id=1hXBZym8kILTVYNVuE-XRXxaY7G3Ms50w, https://drive.google.com/open?id=1KdAx-2_CQ9h6U6pOBrKs3TUyEFaXwOZ9",The leader in economic security,"Since 2018, Gauntlet has managed risk for leading DeFi protocols. Our risk platform quantifies risk and runs economic stress tests. In 2021, Gauntlet launched a new team (Applied Research) that works with protocols on crypto-economic quantitative analysis, modeling, and optimization projects. Finally, in 2022, Gauntlet spun out Aera, a treasury management protocol to optimize DAO funds autonomously and onchain.",https://gauntlet.network,https://twitter.com/gauntletnetwork,,Gauntlet,No,https://drive.google.com/file/d/185PCwd3w0rHcVFoELLr_0exuozGC1WTF/view?usp=sharing,No,,Infrastructure,,,Approved,
-Helika,2,Ready for Mainnet,Daryl Xu,Gaming,https://drive.google.com/open?id=1vh4IOh1mkI_4k1swRKN-df2h5qQwHFA2,"Helika provides powerful, self-serve analytics to help you understand your users, increase engagement, & drive growth.","Helika is a full-stack blockchain analytics company focusing on integrated onchain, off-chain and social data to provide gaming studios and brands with powerful self-serve analytics to help better understand users, increase engagement, improve retention and drive growth.",https://www.helika.io/,https://twitter.com/HelikaAnalytics,,Helika,No,https://drive.google.com/file/d/12iD7a-t7LTdxA2WqiYRcEkpAGdFBEhtT/view?usp=drive_link,No,,Gaming,,,Approved,
-Highlight,3,Ready for Mainnet,Viktoriya Hying,NFT - Marketplace,https://drive.google.com/open?id=1GQ3huUC6yIwcSBPamwD6jiF6pmWSPGbw,"Onchain creativity, unchained.",Highlight is a platform for making art and culture on the blockchain.,https://www.highlight.xyz,https://twitter.com/Highlight_xyz,https://discord.gg/6XQGhMspWj,Highlight,No,https://drive.google.com/file/d/14acaMGiyQ5O1iBCON__I1eWIhn_zzHy1/view?usp=sharing,No,,NFT,,,Approved,
-Hop Protocol,2,Ready for Mainnet,Armand Khatri,Bridge,https://drive.google.com/open?id=1V45JkiPYojkoMX_RKsxx_R3bwUlmVfMP,Hop across chains,A protocol for sending tokens across rollups and their shared layer-1 network in a quick and trustless manner.,https://hop.exchange/,https://twitter.com/HopProtocol,https://discord.gg/PwCF88emV4,Hop Protocol,No,https://drive.google.com/file/d/1TmDj8MDd_wFQxEH7GQtETmr1ILZzkqzL/view?usp=sharing,No,,Bridge,,,Approved,
-Iskra,2,Ready for Mainnet,Daryl Xu,Gaming,https://drive.google.com/open?id=1E07C2Lknb8b-uBn_rSDorSep5y7fQgty,The First All-in-One Web3 Games and Services Platform,Iskra offers an all-in-one web3 game platform that rewards players and developers through a unique community system. We believe that on-boarding the next generation of web3 users will be driven by engaging games that demonstrate the true value of digital ownership.,https://iskra.world/,https://twitter.com/iskra_world,https://discord.com/invite/iskraworld,Iskra,No,https://drive.google.com/file/d/1T6xj8VVpP6wJZfex9t_HYzny03XIHObZ/view?usp=sharing,No,,Gaming,,,Approved,
+Developers interact with a simple API atop a permissionless network that routes messages and ensures network security via proof-of-stake consensus.",https://axelar.network,https://x.com/axelarcore,https://discord.com/invite/aRZ3Ra6f7D,Axelar,No,https://drive.google.com/file/d/1-2DfcQuTnVkpg-bIuWPOVOGwOLktzxZZ/view?usp=sharing,No,,Bridge,,,Approved,
+Beefy,3,Deployment in Progress,Saemi Kim,DeFi - Yield Aggregator,https://drive.google.com/open?id=1EFeaxTWjrxpZFPx0L6oaVTTmXvp7aFSA,Autocompound your tokens to earn more,"Beefy automates yield farming to make DeFi easy, safe and efficient for all. By autocompounding your tokens, Beefy unlocks higher returns so you earn more of what you love.",https://beefy.com/,https://x.com/beefyfinance,discord.gg/beefyfinance,Beefy,https://drive.google.com/file/d/1PdssvVPkzJr38AczPOu6WhoEqCeiiQbY/view?usp=sharing,,No,Yes,DeFi,,,Approved,
+Blockdaemon,1,(Closed Won) Deployed to Mainnet,Gavynn Arteaga,Infrastructure - Node / RPC,https://drive.google.com/open?id=1qtDgGTEivS-N9LNLpGah1B96LXCQV7Rj,Powering the blockchain economy,"The institutional-grade blockchain infrastructure for Web3. Blockdaemon provides an end-to-end suite of blockchain tools, including dedicated nodes, APIs, staking, liquid staking, MPC tech, and more.",https://blockdaemon.com,https://x.com/BlockdaemonHQ,,Blockdaemon,No,https://drive.google.com/file/d/1OS8s-TFk0Kcde4EPWFQkPyOhZv9MJInR/view?usp=sharing,No,,Infrastructure,,,Approved,
+Blocknative,3,Deployment in Progress,Gavynn Arteaga,DeFi - Staking,"https://drive.google.com/open?id=1RRxfJXrZMHCSeAFRhGrPPcrIdtdWG4Ed, https://drive.google.com/open?id=1W6wTjiN3p_sw4wNW8ZCuSLIcTzk03KBd",Ensure your users transact with confidence.,"Blocknative’s Web3 Onboard is an open-source library that enables dapps to easily connect 40+ wallets, preview transactions, deliver real-time notifications, and more through a great developer UX.",https://onboard.blocknative.com,https://x.com/blocknative,https://discord.gg/EDBvPwvHat,Blocknative,No,https://drive.google.com/file/d/1pthMDcwNb_YuM3bBbW7NyAxSJ5djtP8R/view?usp=sharing,No,,DeFi,,,Approved,
+Bonfire,3,Ready for Mainnet,Viktoriya Hying,NFT - Marketplace,"https://drive.google.com/open?id=11p-zm0NUAAXI3ip0hjmW_K4liWybcxnG, https://drive.google.com/open?id=1hQCSI4hO5FnXLndzAFu-Db2cZj0NPzZk, https://drive.google.com/open?id=1wYTWXDuXCgnQspd1KXOIyXn_tIht4mIC, https://drive.google.com/open?id=17YxvovisgAcxirPkZnHO-U2NSDnh48Up, https://drive.google.com/open?id=1-sa5B4qUny1b4y9ZW9y9Rtm5gc7icycb",Build a custom web3-native home for your community,"Bonfire is a no-code website builder and community platform for web3 creators. Bonfire’s toolkit lets creators design custom drops, and offer fans exclusive content and gated experiences on their own branded website.",https://www.bonfire.xyz/,https://x.com/bonfire_tweets,N/A,Bonfire,No,https://drive.google.com/file/d/1Q3qiYxUZCj_-a32StPu-4gh4f0mZ4hwg/view?usp=drive_link,"Yes, need logo",,NFT,,,Approved,
+Celer Network,3,Ready for Mainnet,Armand Khatri,Bridge,https://drive.google.com/open?id=1AnGlGEQEbF97bJNLthOLszkK41J69qdk,"Scalable interoperability for dApps, assets, and users","Celer Network is a blockchain interoperability protocol that allows users to seamlessly access a diverse range of tokens, DeFi protocols, GameFi applications, NFT marketplaces, and more across multiple blockchains with just one click.",https://celer.network/,https://x.com/CelerNetwork,https://discord.com/invite/Trhab5w,Celer Network,https://drive.google.com/file/d/1AZba2jEan2yVYTMN2E5HjpEEnKACna7G/view?usp=sharing,No,No,Yes,Bridge,,,Approved,
+Cielo,3,Ready for Mainnet,Gavynn Arteaga,Infrastructure - Analytics,https://drive.google.com/open?id=1eAI17KuLMZfYtjMwy5zWP1NsuMi2Zann,Onchain activity for everyone,"The most powerful onchain wallet tracking platform. Retail, degens, investors, and onchain researchers all use Cielo to better understand the blockchain. Track up to 250 wallets for free.",https://app.cielo.finance,https://x.com/CieloFinance,,Cielo,No,https://drive.google.com/file/d/1eAI17KuLMZfYtjMwy5zWP1NsuMi2Zann/view,No,Yes,Infrastructure,,,Approved,
+Compound,1,Ready for Mainnet,Gavynn Arteaga,DeFi - Lend / Borrow,https://drive.google.com/open?id=1I_7J8QkxT9y2v0_ZpaYbcDMoHjS2ksTQ,"Compound is an algorithmic, autonomous interest rate protocol built to unlock a universe of open financial applications.","The Compound Protocol is one of the first decentralized finance applications to let users earn interest on their digital assets, or borrow using digital assets as collateral.",https://compound.finance,https://x.com/compoundfinance,https://discord.gg/6paRMcRB4H,Compound,No,https://drive.google.com/file/d/1I_7J8QkxT9y2v0_ZpaYbcDMoHjS2ksTQ/view,No,,DeFi,,,Approved,
+Covalent,1,Ready for Mainnet,Gavynn Arteaga,Infrastructure Other,"https://drive.google.com/open?id=1LxV5r2ZV_tW6K-6S67UIZFBx0-BOWHpH, https://drive.google.com/open?id=1o7wRUpshOTIzHPdj1ytogMHq_BF8UdKS, https://drive.google.com/open?id=1KX5Ujv79mu8wEu1y3Z1aQNLM_ujhqOUH, https://drive.google.com/open?id=16pUbPTHtsUgkfoZ4rIWWrcY0j-Jhuybm",One Unified API. One Billion Possibilities.,Covalent's industry-leading Unified API brings visibility to billions of data points across 100+ blockchains for developers building multi-chain applications.,https://www.covalenthq.com/,https://x.com/Covalent_HQ,,Covalent,No,https://drive.google.com/file/d/1KX5Ujv79mu8wEu1y3Z1aQNLM_ujhqOUH/view,No,,Infrastructure,,,Approved,
+Crossmint,1,Deployment in Progress,Viktoriya Hying,NFT - Marketplace,https://drive.google.com/open?id=1ADO20OCmGEyKdx9uKtXb7iZIOM9O_0UR,"Build NFT use cases accessible to everyone, at scale","Enterprise-grade infrastructure to build NFT use cases accessible to everyone. Including NFT wallets-as-a-service, minting, payments, and token-gating APIs.",https://crossmint.com,https://x.com/crossmint,https://discord.gg/crossmint,Crossmint,No,https://drive.google.com/file/d/1Gk6PM3Vh7lVG1N3yc1gfuYPfIZcNTuI-/view?usp=sharing,No,Yes,NFT,,,Approved,
+CyberConnect,2,Ready for Mainnet,Saemi Kim,Social,"https://drive.google.com/open?id=1GCGHlw0b1Ipj3U23ZVWrUNiLh8mFzi_c, https://drive.google.com/open?id=1Z4sKPFdvsAj8cwhkw5tCUY36JwR3U24P, https://drive.google.com/open?id=1dOPjjgIzsFci2R08KTNzl_GiHj4SmJZa, https://drive.google.com/open?id=1-Zc5eSoNpsf8l0DUa6v91v9UK1kolSjt",Web3's Earliest and Biggest Decentralized Social Network,"CyberConnect creates long-lasting onchain connections through the power of its network. Developers use its protocol to build innovative social applications where users own their identities and data, while creators can grow their audiences in a fairer, more direct, and decentralized environment.",https://cyberconnect.me/,https://x.com/CyberConnectHQ,https://discord.com/invite/cyberconnect,CyberConnect,No,https://drive.google.com/file/d/1Z4sKPFdvsAj8cwhkw5tCUY36JwR3U24P/view,No,,Social,,,Approved,
+Debank,3,Deployment in Progress,Armand Khatri,Infrastructure - Analytics,https://drive.google.com/open?id=1jZsQvQ2pULmweShg_yoWF5rNdC6qhkQs,"The Web3-native messenger & the best Web3 portfolio tracker that covers all your tokens, DeFi protocols, NFTs across all EVM chains.",App: http://debank.com/download,https://debank.com,https://x.com/DeBankDeFi,https://discord.com/invite/KYuj8DE,Debank,https://drive.google.com/file/d/1Tw3fic7LKOfmKF3J-zFrog0WY0CsmOsG/view?usp=sharing,,No,,Infrastructure,,,Approved,
+deBridge,3,Initiated,Armand Khatri,Bridge,https://drive.google.com/open?id=1_bFsMPFb1aJRhdX2Jg0hyIRWXc1t9CYl,Interoperability For High Performance dApps,"deBridge is an infrastructure for high performance interoperability. By removing the bottlenecks and risks of liquidity pools, deBridge enables DeFi applications to scale faster with ultra capital-efficient and deep liquidity transfers across chains.",https://debridge.finance/,https://x.com/deBridgeFinance,https://discord.gg/debridge,deBridge,No,https://drive.google.com/file/d/1QZeJnRRoKOzJHxT6dBRNAMf_GDkdZHmE/view?usp=sharing,No,Yes,Bridge,,,Approved,
+Decent,3,Deployment in Progress,Viktoriya Hying,NFT - Marketplace,https://drive.google.com/open?id=1EfrXxFWHoL7cIzB399P-vL5C87JYu_ZV,Single-click checkout for any transaction with any token on any chain,"Cross-chain transactions, meet one-tap payments. Serve customers of every stripe with The Box, empowering them with automatic swaps, built‑in bridging, and seamless secondary sales.",https://decent.xyz/,https://x.com/decentxyz,,Decent,No,https://drive.google.com/file/d/1Gdf_LryW5X4u7xcSaMxLyttGHNiqaOqk/view?usp=sharing,No,,NFT,,,Approved,
+Galxe,2,Ready for Mainnet,Daryl Xu,Social,"https://drive.google.com/open?id=1ITm-OL9D1nk_rs9JNMOg6E8OpuaDVFb7, https://drive.google.com/open?id=1Cm8kImce8CrD6f9nX5x3oHLB3r0JgcVL",Your Web3 Community is Waiting.,"Galxe is the leading platform for building web3 community. With over 11 million active users to date, Galxe has propelled the growth of Optimism, Polygon, Arbitrum, and more than 2800 partners with reward-based loyalty programs. Start your campaign today at galxe.com",https://galxe.com/,https://x.com/Galxe,https://discord.com/invite/galxe,Galxe,No,https://drive.google.com/file/d/1Du0zpnlt1oSKfJVH4Jc7c3hP1J4sGpGw/view?usp=sharing,No,,Social,,,Approved,
+Gauntlet,2,Ready for Mainnet,Saemi Kim,Infrastructure - Security,"https://drive.google.com/open?id=1tlE-sNkBK7gZvOdfDKNWYA0VqLvll-ei, https://drive.google.com/open?id=1sXap16K9j3hprY2TXnyGMutSt4vN1l0g, https://drive.google.com/open?id=1hXBZym8kILTVYNVuE-XRXxaY7G3Ms50w, https://drive.google.com/open?id=1KdAx-2_CQ9h6U6pOBrKs3TUyEFaXwOZ9",The leader in economic security,"Since 2018, Gauntlet has managed risk for leading DeFi protocols. Our risk platform quantifies risk and runs economic stress tests. In 2021, Gauntlet launched a new team (Applied Research) that works with protocols on crypto-economic quantitative analysis, modeling, and optimization projects. Finally, in 2022, Gauntlet spun out Aera, a treasury management protocol to optimize DAO funds autonomously and onchain.",https://gauntlet.network,https://x.com/gauntletnetwork,,Gauntlet,No,https://drive.google.com/file/d/185PCwd3w0rHcVFoELLr_0exuozGC1WTF/view?usp=sharing,No,,Infrastructure,,,Approved,
+Helika,2,Ready for Mainnet,Daryl Xu,Gaming,https://drive.google.com/open?id=1vh4IOh1mkI_4k1swRKN-df2h5qQwHFA2,"Helika provides powerful, self-serve analytics to help you understand your users, increase engagement, & drive growth.","Helika is a full-stack blockchain analytics company focusing on integrated onchain, off-chain and social data to provide gaming studios and brands with powerful self-serve analytics to help better understand users, increase engagement, improve retention and drive growth.",https://www.helika.io/,https://x.com/HelikaAnalytics,,Helika,No,https://drive.google.com/file/d/12iD7a-t7LTdxA2WqiYRcEkpAGdFBEhtT/view?usp=drive_link,No,,Gaming,,,Approved,
+Highlight,3,Ready for Mainnet,Viktoriya Hying,NFT - Marketplace,https://drive.google.com/open?id=1GQ3huUC6yIwcSBPamwD6jiF6pmWSPGbw,"Onchain creativity, unchained.",Highlight is a platform for making art and culture on the blockchain.,https://www.highlight.xyz,https://x.com/Highlight_xyz,https://discord.gg/6XQGhMspWj,Highlight,No,https://drive.google.com/file/d/14acaMGiyQ5O1iBCON__I1eWIhn_zzHy1/view?usp=sharing,No,,NFT,,,Approved,
+Hop Protocol,2,Ready for Mainnet,Armand Khatri,Bridge,https://drive.google.com/open?id=1V45JkiPYojkoMX_RKsxx_R3bwUlmVfMP,Hop across chains,A protocol for sending tokens across rollups and their shared layer-1 network in a quick and trustless manner.,https://hop.exchange/,https://x.com/HopProtocol,https://discord.gg/PwCF88emV4,Hop Protocol,No,https://drive.google.com/file/d/1TmDj8MDd_wFQxEH7GQtETmr1ILZzkqzL/view?usp=sharing,No,,Bridge,,,Approved,
+Iskra,2,Ready for Mainnet,Daryl Xu,Gaming,https://drive.google.com/open?id=1E07C2Lknb8b-uBn_rSDorSep5y7fQgty,The First All-in-One Web3 Games and Services Platform,Iskra offers an all-in-one web3 game platform that rewards players and developers through a unique community system. We believe that on-boarding the next generation of web3 users will be driven by engaging games that demonstrate the true value of digital ownership.,https://iskra.world/,https://x.com/iskra_world,https://discord.com/invite/iskraworld,Iskra,No,https://drive.google.com/file/d/1T6xj8VVpP6wJZfex9t_HYzny03XIHObZ/view?usp=sharing,No,,Gaming,,,Approved,
Layer3,2,Initiated,Daryl Xu,Social,"https://drive.google.com/open?id=1oKRBihjPN376MNYTcAGjQh7ntIpEQjKN, https://drive.google.com/open?id=1zEEO2QlmgH2DW1s9txR4sX2-B0Wzwzs9, https://drive.google.com/open?id=16z0aMXT4kqpwj61WSvAjGHWvzBdCYOXT, https://drive.google.com/open?id=1GMzv9Dx3tvxd6w8QW2gFa5xMawt6cWo9",Learn and explore crypto through interactive quests,"Discover the world of crypto like never before with Layer3. Our interactive Quests make learning and exploring web3 fun, engaging, and rewarding.
And with the ability to earn NFTs and XP as you complete Quests, you’ll be able to showcase your knowledge and achievements to the world.
-Join hundreds of thousands of people who have already taken the plunge into the exciting world of crypto with Layer3.",https://layer3.xyz/,https://twitter.com/layer3xyz,https://discord.com/invite/layer3,Layer3,No,https://drive.google.com/open?id=1GMzv9Dx3tvxd6w8QW2gFa5xMawt6cWo9,No,,Social,,,Approved,
-Mean Finance,3,Ready for Mainnet,Armand Khatri,DeFi - Swap,https://drive.google.com/open?id=1XbK8FOHNRZ5dgIVB_1xBkJP1-6jljPiK,Your journey to financial freedom starts with a simple click,Mean Finance is the go-to platform for decentralized investment tools that will empower you in the journey to responsible and diversified investing in the emerging crypto asset thesis.,https://mean.finance,https://twitter.com/mean_fi,https://discord.mean.finance,Mean Finance,https://drive.google.com/file/d/1N_4CruKR2zYKBAVoe7xPGQ9_voqYInf1/view?usp=drive_link,,No,,DeFi,,,Approved,
-Moonwell,2,Ready for Mainnet,Gavynn Arteaga,DeFi - Lend / Borrow,"https://drive.google.com/open?id=1ab9rOE4KiZq4EG9l_pu3jEvQ9YzcKxI8, https://drive.google.com/open?id=13qAq-a4fWwnTJkyU3Tc9YlgnrV83TjbK, https://drive.google.com/open?id=14LeR92zs9BJbllfApS2ycyX61mNm-LPH, https://drive.google.com/open?id=1Wu-F1CnLg8S25ABgyJhLlBKfbZ8PzYhz, https://drive.google.com/open?id=1YTbJPP8TPBhsRy0pzl5Q5Gom3iMpdNDg",Lending and borrowing made simple,Moonwell is an open and permissionless lending and borrowing DeFi protocol.,https://moonwell.fi,https://twitter.com/moonwelldefi,https://discord.gg/moonwellfi,Moonwell,No,https://drive.google.com/open?id=14LeR92zs9BJbllfApS2ycyX61mNm-LPH,No,,DeFi,,,Approved,
-Moso,2,Ready for Mainnet,Viktoriya Hying,NFT - Marketplace,https://drive.google.com/open?id=1auunFxfDU6r4TKLz9Q0UeiskGNC1kCtj,Shop and earn the crypto of your choice,"Shop online at one of the 2,500 supported Moso stores and earn the crypto of your choice!",https://moso.xyz,https://twitter.com/ShopMoso,discord.gg/moso,Moso,No,https://drive.google.com/file/d/1auunFxfDU6r4TKLz9Q0UeiskGNC1kCtj/view,No,,NFT,,,Approved,
-Nansen,2,Ready for Mainnet,Gavynn Arteaga,Infrastructure - Analytics,https://drive.google.com/open?id=1rwOspskAC989mKwoQ7PlV4SLaTdsphOG,onchain analysis made easy. Spot opportunities and gain insight into assets and entities that you care about.,"Nansen is a blockchain analytics platform that enriches onchain data with millions of wallet labels. Crypto investors use Nansen to discover opportunities, perform due diligence and defend their portfolios with our real-time dashboards and alerts.",https://www.nansen.ai,https://twitter.com/nansen_ai,https://nansen.ai/discord,Nansen,No,https://drive.google.com/file/d/1szxSuPPMX89tLBqL2xrAbn93UKC_itHA/view?usp=sharing,No,,Infrastructure,,,Approved,
-Neptune Mutual,3,Ready for Mainnet,Armand Khatri,Infrastructure Other,https://drive.google.com/open?id=145SGoRsGal0ajL59yxS5ERDtGtzyEvNN,Protect digital assets with a cover policy,Neptune Mutual is a DeFi insurance protocol. Our parametric cover marketplace enables you to purchase cover policies to protect your digital assets from security and custody risks.,https://neptunemutual.com/,https://twitter.com/neptunemutual,https://discord.com/invite/2qMGTtJtnW,Neptune Mutual,No,https://drive.google.com/open?id=145SGoRsGal0ajL59yxS5ERDtGtzyEvNN,No,Yes,Infrastructure,,,Approved,
-Odos,3,(Closed Won) Deployed to Mainnet,Armand Khatri,DeFi - Swap,"https://drive.google.com/open?id=1O_nV9AWrZov_KVcA5XPRKEv32RM288c_, https://drive.google.com/open?id=1dZ2MkD1wm2A_XUEYrzXPnEz98RLjNbqB",The Optimal DeFi Aggregator,Odos traverses a large universe of possible token swap combinations and non-linear paths delivering greater savings to its users. Swap one or multiple tokens in a single atomic transaction.,http://app.odos.xyz,https://twitter.com/odosprotocol,https://discord.com/odos,Odos,No,https://drive.google.com/file/d/1Qm3E9EwTgvgC3hJJ8avTkJy-BrIaXM_n/view?usp=sharing,No,,DeFi,,,Approved,
-Omni Network,3,Deployment in Progress,Armand Khatri,DeFi Other,https://drive.google.com/open?id=1VGJAB4cOFdPHS_Ktj8zjGrHgC2XhRDdU,The layer 1 blockchain built to connect all rollups.,The Omni Network is a layer 1 blockchain that empowers developers to build global applications across all rollups. This is achieved securely by restaking $ETH through EigenLayer.,https://omni.network,https://twitter.com/OmniFDN,https://discord.com/invite/bKNXmaX9VD,Omni Network,No,https://drive.google.com/file/d/1KArleUPuWu4Asbfj2q12ABQ2GjhwebGW/view?usp=sharing,No,Yes,DeFi,,,Approved,
-OpenCover,3,Ready for Mainnet,Armand Khatri,Infrastructure Other,https://drive.google.com/open?id=1spDc6r1y0WZ8fvuVGi6b-ARIIBWH_Ugl,Onchain hack protection made easy,OpenCover makes it easy and affordable to cover your portfolio against onchain risks such as smart contract exploits and oracle failures.,https://opencover.com,https://twitter.com/OpenCoverDeFi,https://opencover.com/discord,OpenCover,No,https://drive.google.com/file/d/1k4tCBCu2AAH0qsQD6cJkkWad1VW4gm7N/view?usp=sharing,No,,Infrastructure,,,Approved,
-OpenZeppelin Defender,2,Ready for Mainnet,Saemi Kim,Infrastructure - Security,https://drive.google.com/open?id=17FFCRrxV6DYfiiYzgDP3Yj_RDkw-9mGD,Leading Smart Contract Security & Automation Platform,"The secure smart contract automation platform for developers. Ship Web3 technology faster, safer, and with confidence using OpenZeppelin Defender.",https://openzeppelin.com/defender,twitter.com/openzeppelin,,OpenZeppelin Defender,No,https://drive.google.com/file/d/1ipVz_umB4tTX6aaTAumLlF6jAl_-Igjn/view?usp=sharing,No,Yes,Infrastructure,,,Approved,
+Join hundreds of thousands of people who have already taken the plunge into the exciting world of crypto with Layer3.",https://layer3.xyz/,https://x.com/layer3xyz,https://discord.com/invite/layer3,Layer3,No,https://drive.google.com/open?id=1GMzv9Dx3tvxd6w8QW2gFa5xMawt6cWo9,No,,Social,,,Approved,
+Mean Finance,3,Ready for Mainnet,Armand Khatri,DeFi - Swap,https://drive.google.com/open?id=1XbK8FOHNRZ5dgIVB_1xBkJP1-6jljPiK,Your journey to financial freedom starts with a simple click,Mean Finance is the go-to platform for decentralized investment tools that will empower you in the journey to responsible and diversified investing in the emerging crypto asset thesis.,https://mean.finance,https://x.com/mean_fi,https://discord.mean.finance,Mean Finance,https://drive.google.com/file/d/1N_4CruKR2zYKBAVoe7xPGQ9_voqYInf1/view?usp=drive_link,,No,,DeFi,,,Approved,
+Moonwell,2,Ready for Mainnet,Gavynn Arteaga,DeFi - Lend / Borrow,"https://drive.google.com/open?id=1ab9rOE4KiZq4EG9l_pu3jEvQ9YzcKxI8, https://drive.google.com/open?id=13qAq-a4fWwnTJkyU3Tc9YlgnrV83TjbK, https://drive.google.com/open?id=14LeR92zs9BJbllfApS2ycyX61mNm-LPH, https://drive.google.com/open?id=1Wu-F1CnLg8S25ABgyJhLlBKfbZ8PzYhz, https://drive.google.com/open?id=1YTbJPP8TPBhsRy0pzl5Q5Gom3iMpdNDg",Lending and borrowing made simple,Moonwell is an open and permissionless lending and borrowing DeFi protocol.,https://moonwell.fi,https://x.com/moonwelldefi,https://discord.gg/moonwellfi,Moonwell,No,https://drive.google.com/open?id=14LeR92zs9BJbllfApS2ycyX61mNm-LPH,No,,DeFi,,,Approved,
+Moso,2,Ready for Mainnet,Viktoriya Hying,NFT - Marketplace,https://drive.google.com/open?id=1auunFxfDU6r4TKLz9Q0UeiskGNC1kCtj,Shop and earn the crypto of your choice,"Shop online at one of the 2,500 supported Moso stores and earn the crypto of your choice!",https://moso.xyz,https://x.com/ShopMoso,discord.gg/moso,Moso,No,https://drive.google.com/file/d/1auunFxfDU6r4TKLz9Q0UeiskGNC1kCtj/view,No,,NFT,,,Approved,
+Nansen,2,Ready for Mainnet,Gavynn Arteaga,Infrastructure - Analytics,https://drive.google.com/open?id=1rwOspskAC989mKwoQ7PlV4SLaTdsphOG,onchain analysis made easy. Spot opportunities and gain insight into assets and entities that you care about.,"Nansen is a blockchain analytics platform that enriches onchain data with millions of wallet labels. Crypto investors use Nansen to discover opportunities, perform due diligence and defend their portfolios with our real-time dashboards and alerts.",https://www.nansen.ai,https://x.com/nansen_ai,https://nansen.ai/discord,Nansen,No,https://drive.google.com/file/d/1szxSuPPMX89tLBqL2xrAbn93UKC_itHA/view?usp=sharing,No,,Infrastructure,,,Approved,
+Neptune Mutual,3,Ready for Mainnet,Armand Khatri,Infrastructure Other,https://drive.google.com/open?id=145SGoRsGal0ajL59yxS5ERDtGtzyEvNN,Protect digital assets with a cover policy,Neptune Mutual is a DeFi insurance protocol. Our parametric cover marketplace enables you to purchase cover policies to protect your digital assets from security and custody risks.,https://neptunemutual.com/,https://x.com/neptunemutual,https://discord.com/invite/2qMGTtJtnW,Neptune Mutual,No,https://drive.google.com/open?id=145SGoRsGal0ajL59yxS5ERDtGtzyEvNN,No,Yes,Infrastructure,,,Approved,
+Odos,3,(Closed Won) Deployed to Mainnet,Armand Khatri,DeFi - Swap,"https://drive.google.com/open?id=1O_nV9AWrZov_KVcA5XPRKEv32RM288c_, https://drive.google.com/open?id=1dZ2MkD1wm2A_XUEYrzXPnEz98RLjNbqB",The Optimal DeFi Aggregator,Odos traverses a large universe of possible token swap combinations and non-linear paths delivering greater savings to its users. Swap one or multiple tokens in a single atomic transaction.,http://app.odos.xyz,https://x.com/odosprotocol,https://discord.com/odos,Odos,No,https://drive.google.com/file/d/1Qm3E9EwTgvgC3hJJ8avTkJy-BrIaXM_n/view?usp=sharing,No,,DeFi,,,Approved,
+Omni Network,3,Deployment in Progress,Armand Khatri,DeFi Other,https://drive.google.com/open?id=1VGJAB4cOFdPHS_Ktj8zjGrHgC2XhRDdU,The layer 1 blockchain built to connect all rollups.,The Omni Network is a layer 1 blockchain that empowers developers to build global applications across all rollups. This is achieved securely by restaking $ETH through EigenLayer.,https://omni.network,https://x.com/OmniFDN,https://discord.com/invite/bKNXmaX9VD,Omni Network,No,https://drive.google.com/file/d/1KArleUPuWu4Asbfj2q12ABQ2GjhwebGW/view?usp=sharing,No,Yes,DeFi,,,Approved,
+OpenCover,3,Ready for Mainnet,Armand Khatri,Infrastructure Other,https://drive.google.com/open?id=1spDc6r1y0WZ8fvuVGi6b-ARIIBWH_Ugl,Onchain hack protection made easy,OpenCover makes it easy and affordable to cover your portfolio against onchain risks such as smart contract exploits and oracle failures.,https://opencover.com,https://x.com/OpenCoverDeFi,https://opencover.com/discord,OpenCover,No,https://drive.google.com/file/d/1k4tCBCu2AAH0qsQD6cJkkWad1VW4gm7N/view?usp=sharing,No,,Infrastructure,,,Approved,
+OpenZeppelin Defender,2,Ready for Mainnet,Saemi Kim,Infrastructure - Security,https://drive.google.com/open?id=17FFCRrxV6DYfiiYzgDP3Yj_RDkw-9mGD,Leading Smart Contract Security & Automation Platform,"The secure smart contract automation platform for developers. Ship Web3 technology faster, safer, and with confidence using OpenZeppelin Defender.",https://openzeppelin.com/defender,x.com/openzeppelin,,OpenZeppelin Defender,No,https://drive.google.com/file/d/1ipVz_umB4tTX6aaTAumLlF6jAl_-Igjn/view?usp=sharing,No,Yes,Infrastructure,,,Approved,
Panoptic,3,Ready for Mainnet,Armand Khatri,DeFi - Swap,https://drive.google.com/open?id=1vBi9nA155vGjtblxyPLZ5M-n_UnUR-b9,"Trade permissionless, oracle-free, perpetual options","Panoptic re-imagines options to work onchain: options have no expiry and require no oracles, intermediaries, counterparties, or order books. The result is a permissionless, governance-minimized protocol with no liquidity fragmentation.
-Panoptic enables the trading of options on top of any asset pool in the Uniswap v3 ecosystem. We do for decentralized options markets what xy=k automated market maker protocols did for spot trading.",http://panoptic.xyz/,https://twitter.com/panoptic_xyz,https://discord.com/invite/7fE8SN9pRT,Panoptic,https://drive.google.com/open?id=1vBi9nA155vGjtblxyPLZ5M-n_UnUR-b9,,No,,DeFi,,,Approved,
+Panoptic enables the trading of options on top of any asset pool in the Uniswap v3 ecosystem. We do for decentralized options markets what xy=k automated market maker protocols did for spot trading.",http://panoptic.xyz/,https://x.com/panoptic_xyz,https://discord.com/invite/7fE8SN9pRT,Panoptic,https://drive.google.com/open?id=1vBi9nA155vGjtblxyPLZ5M-n_UnUR-b9,,No,,DeFi,,,Approved,
Pyth Network,2,Ready for Mainnet,Armand Khatri,Infrastructure - Oracle,"https://drive.google.com/open?id=1pNlP8IN-pfpV6ino-kq2CuCFuuUOsj1k, https://drive.google.com/open?id=1krCBC1SjUBFc5ga304CGwzxjrNKgRT6f",Smarter Data for Smarter Contracts,"Pyth delivers real-time market data feeds to 20+ blockchains by sourcing from exchanges, market makers, and trading firms. 150+ DeFi apps trust and rely on Pyth to stay competitive.
-Only Pyth provides the speed, market coverage, and robustness needed to onboard millions of users.",https://pyth.network/,https://twitter.com/PythNetwork,https://discord.gg/invite/PythNetwork,Pyth Network,https://drive.google.com/file/d/11mB05SWcDtIkcFUvy8BejeJqGANA0zC6/view?usp=sharing,,No,,Infrastructure,,,Approved,
+Only Pyth provides the speed, market coverage, and robustness needed to onboard millions of users.",https://pyth.network/,https://x.com/PythNetwork,https://discord.gg/invite/PythNetwork,Pyth Network,https://drive.google.com/file/d/11mB05SWcDtIkcFUvy8BejeJqGANA0zC6/view?usp=sharing,,No,,Infrastructure,,,Approved,
Rainbow Wallet,1,Ready for Mainnet,Daryl Xu,Crypto Wallet,https://drive.google.com/open?id=1SRtudzEBr7oFfrkjVT1U2C0il9XmApD6,"The fun, simple, & secure way to explore Web3, NFTs, & Ethereum 🌈","Rainbow is a fun, simple, and secure way to get started with crypto and explore the new world of Ethereum. You can use Rainbow to purchase, manage, and display Ethereum-based assets.
-Great for newcomers and power users alike, Rainbow allows you to be in total control of your money.",https://rainbow.me,https://twitter.com/rainbowdotme,,Rainbow Wallet,No,https://drive.google.com/file/d/1eyvtvf8VWQNWYyjRc6_8_vZSfk5xegUL/view?usp=sharing,No,,Wallet,,,Approved,
-Showtime,2,Ready for Mainnet,Viktoriya Hying,NFT - Marketplace,https://drive.google.com/open?id=1jfUbIDSTZ-RK3_iKjgPOO8zvToaQeJcB,Buy collectibles to unlock exclusive creator content.,Showtime lets creators share exclusive updates to their fans. Fans access never-seen-before content and earn a digital collectible they can showcase on Showtime and elsewhere.,https://showtime.xyz,https://twitter.com/Showtime_xyz,https://discord.gg/gZs7yeWQ6Q,Showtime,No,https://drive.google.com/file/d/1UyJQwzEAtN5w8orzPdaVrzDkWV1mDtjR/view?usp=sharing,No,,NFT,,,Approved,
-Socket,2,(Closed Won) Deployed to Mainnet,Armand Khatri,Bridge,https://drive.google.com/open?id=1VRMqCXJuca4LsCsdeOkk7YjlNLTqlZ3e,Powering Truly Multi-Chain Apps,"Socket is an interoperability protocols which allows seamless asset & data transfer across chains, enabling developers to build truly cross-chain apps",https://socket.tech/,https://twitter.com/SocketDotTech,http://discord.gg/zfKJR8yWaH,Socket,No,https://drive.google.com/open?id=1VRMqCXJuca4LsCsdeOkk7YjlNLTqlZ3e,No,,Bridge,,,Approved,
-Syndicate,3,Ready for Mainnet,Viktoriya Hying,Identity,https://drive.google.com/open?id=1XUOB2S_2JTlZur7TPQFCem4O6lIZpHYk,Scalable onchain Infrastructure,"Syndicate is a platform that allows customers to create communities, products, and experiences onchain at enterprise scale.",https://syndicate.io/,https://twitter.com/syndicateio,,Syndicate,No,https://drive.google.com/file/d/1XUOB2S_2JTlZur7TPQFCem4O6lIZpHYk/view?usp=sharing,No,,Identity,,,Approved,
-Tally,2,Initiated,Viktoriya Hying,Social,https://drive.google.com/open?id=1YoP5pqjqTYWLgVQ_Qmbm4sZ__OZqxbNG,Leading DAO Operations platform,"Tally powers the largest DAOs in the Ethereum ecosystem. With Tally, you can decentralize your Protocol, project, L2 and more. Build on Tally for a robust decentralized ecosystem of tooling.",https://www.tally.xyz,https://twitter.com/tallyxyz,https://discord.com/invite/3wgMrqaCCk,Tally.xyz,No,https://drive.google.com/file/d/1yuwWhcxajeG_-hngcZ5FyY_r6qGTJc29/view?usp=sharing,No,,Social,,,,
-Tenderly,3,Ready for Mainnet,Saemi Kim,Infrastructure - Security,https://drive.google.com/open?id=1Cm04TREjb42is0n5uWVLvC3iFbX-NOXI,Full stack web3 infrastructure,"Tenderly delivers a full-stack infrastructure solution for every step of the dapp development lifecycle. We enable teams to focus on their product by providing them with all necessary infrastructure and tooling for fast and reliable dapp development, testing, deployment, and monitoring.",https://tenderly.co/,https://twitter.com/TenderlyApp,https://discord.com/invite/fBvDJYR,Tenderly,https://drive.google.com/file/d/1iqNvdJKYMdokj2AYzJzr7iQFe6xdXvDb/view?usp=sharing,,No,,Infrastructure,,,,
+Great for newcomers and power users alike, Rainbow allows you to be in total control of your money.",https://rainbow.me,https://x.com/rainbowdotme,,Rainbow Wallet,No,https://drive.google.com/file/d/1eyvtvf8VWQNWYyjRc6_8_vZSfk5xegUL/view?usp=sharing,No,,Wallet,,,Approved,
+Showtime,2,Ready for Mainnet,Viktoriya Hying,NFT - Marketplace,https://drive.google.com/open?id=1jfUbIDSTZ-RK3_iKjgPOO8zvToaQeJcB,Buy collectibles to unlock exclusive creator content.,Showtime lets creators share exclusive updates to their fans. Fans access never-seen-before content and earn a digital collectible they can showcase on Showtime and elsewhere.,https://showtime.xyz,https://x.com/Showtime_xyz,https://discord.gg/gZs7yeWQ6Q,Showtime,No,https://drive.google.com/file/d/1UyJQwzEAtN5w8orzPdaVrzDkWV1mDtjR/view?usp=sharing,No,,NFT,,,Approved,
+Socket,2,(Closed Won) Deployed to Mainnet,Armand Khatri,Bridge,https://drive.google.com/open?id=1VRMqCXJuca4LsCsdeOkk7YjlNLTqlZ3e,Powering Truly Multi-Chain Apps,"Socket is an interoperability protocols which allows seamless asset & data transfer across chains, enabling developers to build truly cross-chain apps",https://socket.tech/,https://x.com/SocketDotTech,http://discord.gg/zfKJR8yWaH,Socket,No,https://drive.google.com/open?id=1VRMqCXJuca4LsCsdeOkk7YjlNLTqlZ3e,No,,Bridge,,,Approved,
+Syndicate,3,Ready for Mainnet,Viktoriya Hying,Identity,https://drive.google.com/open?id=1XUOB2S_2JTlZur7TPQFCem4O6lIZpHYk,Scalable onchain Infrastructure,"Syndicate is a platform that allows customers to create communities, products, and experiences onchain at enterprise scale.",https://syndicate.io/,https://x.com/syndicateio,,Syndicate,No,https://drive.google.com/file/d/1XUOB2S_2JTlZur7TPQFCem4O6lIZpHYk/view?usp=sharing,No,,Identity,,,Approved,
+Tally,2,Initiated,Viktoriya Hying,Social,https://drive.google.com/open?id=1YoP5pqjqTYWLgVQ_Qmbm4sZ__OZqxbNG,Leading DAO Operations platform,"Tally powers the largest DAOs in the Ethereum ecosystem. With Tally, you can decentralize your Protocol, project, L2 and more. Build on Tally for a robust decentralized ecosystem of tooling.",https://www.tally.xyz,https://x.com/tallyxyz,https://discord.com/invite/3wgMrqaCCk,Tally.xyz,No,https://drive.google.com/file/d/1yuwWhcxajeG_-hngcZ5FyY_r6qGTJc29/view?usp=sharing,No,,Social,,,,
+Tenderly,3,Ready for Mainnet,Saemi Kim,Infrastructure - Security,https://drive.google.com/open?id=1Cm04TREjb42is0n5uWVLvC3iFbX-NOXI,Full stack web3 infrastructure,"Tenderly delivers a full-stack infrastructure solution for every step of the dapp development lifecycle. We enable teams to focus on their product by providing them with all necessary infrastructure and tooling for fast and reliable dapp development, testing, deployment, and monitoring.",https://tenderly.co/,https://x.com/TenderlyApp,https://discord.com/invite/fBvDJYR,Tenderly,https://drive.google.com/file/d/1iqNvdJKYMdokj2AYzJzr7iQFe6xdXvDb/view?usp=sharing,,No,,Infrastructure,,,,
The Graph,2,Ready for Mainnet,Viktoriya Hying,Infrastructure Other,https://drive.google.com/open?id=1A2sWfT8UNYGon1EwSeK2lWCJkS9TWJ3J,A web3 protocol for organizing and accessing blockchain data,"The Graph is the indexing and query layer of web3. Developers build and publish open APIs, called subgraphs, that applications can query using GraphQL. The Graph currently supports indexing data from over 40 different networks including Ethereum, NEAR, Arbitrum, Optimism, ZkSync, Polygon, Avalanche, Celo, Fantom, Moonbeam, IPFS, Cosmos Hub and PoA with more networks coming soon. To date, 88,900+ subgraphs have been deployed on the hosted service. Tens of thousands of developers use The Graph for applications such as Uniswap, Synthetix, KnownOrigin, Art Blocks, Gnosis, Balancer, Livepeer, DAOstack, Audius, Decentraland, and many others.
-The Graph Network’s self service experience for developers launched in July 2021; since then over 800+ subgraphs have migrated to the Network, with 450+ Indexers serving subgraph queries, 11,300+ Delegators, and 2,500+ Curators to date. More than 5.6+ million GRT has been signaled to date.",https://thegraph.com/,https://twitter.com/graphprotocol,https://discord.com/invite/vtvv7FP,The Graph,https://drive.google.com/file/d/1zOOHkGrjBoJ2qAGikggHq56TqMMwBTQ7/view?usp=sharing,,No,,Infrastructure,,,,
-ThirdWeb,1,Ready for Mainnet,Daryl Xu,Infrastructure Other,"https://drive.google.com/open?id=1q6RfX8wKAiPs5IpnV8Wj5rnSN1mxW_uE, https://drive.google.com/open?id=1SlNGXh2V3da7HCLVcz3tCH5KaFtaxj-3",The fastest way to build Web3 apps.,"thirdweb is a complete web3 development framework that provides everything you need to build, launch, and manage web3 apps. We provide dev tools (SDKs in common languages, plug-and-play UI components, ContractKit) and fully managed infrastructure services (storage, RPC nodes, onchain analytics, and more) to enable you to go-to-market faster.",https://thirdweb.com/,https://twitter.com/thirdweb,https://discord.gg/thirdweb,ThirdWeb,No,https://drive.google.com/file/d/1Wp0WLyGGehYhTndVxBTK2z2R6VOgHUud/view?usp=drive_link,No,,Infrastructure,,,,
-Volmex,3,Ready for Mainnet,Armand Khatri,DeFi - Options,https://drive.google.com/open?id=1EjLBzZHkPHLrjp_AU0ALihypiERMjrF9,"Leading crypto volatility indices, BVIV and EVIV Indices, and linked volatility products, such as perpetual futures","Volmex’s BVIV and EVIV Indices measure the 30-day expected volatility of Bitcoin and Ethereum respectively. Volmex builds a suite of products around the Volmex Implied Volatility Indices, specifically perpetual futures.",https://volmex.finance/,https://twitter.com/ColeGotTweets,https://discord.gg/volmex,Volmex,No,https://drive.google.com/open?id=1EjLBzZHkPHLrjp_AU0ALihypiERMjrF9,No,Yes,DeFi,,,,
-Wormhole,3,Ready for Mainnet,Armand Khatri,Bridge,https://drive.google.com/open?id=1b3bpk2OCqxDAWKmgrhHdseq9Pq2ejnJC,The best way to build cross-chain,Wormhole is a generic cross-chain message-passing protocol that gives developers the power to build decentralized applications that span the rapidly evolving blockchain ecosystem.,https://wormhole.com,https://twitter.com/wormholecrypto,https://discord.gg/wormholecrypto,Wormhole,https://drive.google.com/file/d/1fsjP_vovj0MhrA_hy0mQtC_A_Y3MGOJP/view?usp=sharing,,No,,Bridge,,,Approved,
+The Graph Network’s self service experience for developers launched in July 2021; since then over 800+ subgraphs have migrated to the Network, with 450+ Indexers serving subgraph queries, 11,300+ Delegators, and 2,500+ Curators to date. More than 5.6+ million GRT has been signaled to date.",https://thegraph.com/,https://x.com/graphprotocol,https://discord.com/invite/vtvv7FP,The Graph,https://drive.google.com/file/d/1zOOHkGrjBoJ2qAGikggHq56TqMMwBTQ7/view?usp=sharing,,No,,Infrastructure,,,,
+ThirdWeb,1,Ready for Mainnet,Daryl Xu,Infrastructure Other,"https://drive.google.com/open?id=1q6RfX8wKAiPs5IpnV8Wj5rnSN1mxW_uE, https://drive.google.com/open?id=1SlNGXh2V3da7HCLVcz3tCH5KaFtaxj-3",The fastest way to build Web3 apps.,"thirdweb is a complete web3 development framework that provides everything you need to build, launch, and manage web3 apps. We provide dev tools (SDKs in common languages, plug-and-play UI components, ContractKit) and fully managed infrastructure services (storage, RPC nodes, onchain analytics, and more) to enable you to go-to-market faster.",https://thirdweb.com/,https://x.com/thirdweb,https://discord.gg/thirdweb,ThirdWeb,No,https://drive.google.com/file/d/1Wp0WLyGGehYhTndVxBTK2z2R6VOgHUud/view?usp=drive_link,No,,Infrastructure,,,,
+Volmex,3,Ready for Mainnet,Armand Khatri,DeFi - Options,https://drive.google.com/open?id=1EjLBzZHkPHLrjp_AU0ALihypiERMjrF9,"Leading crypto volatility indices, BVIV and EVIV Indices, and linked volatility products, such as perpetual futures","Volmex’s BVIV and EVIV Indices measure the 30-day expected volatility of Bitcoin and Ethereum respectively. Volmex builds a suite of products around the Volmex Implied Volatility Indices, specifically perpetual futures.",https://volmex.finance/,https://x.com/ColeGotTweets,https://discord.gg/volmex,Volmex,No,https://drive.google.com/open?id=1EjLBzZHkPHLrjp_AU0ALihypiERMjrF9,No,Yes,DeFi,,,,
+Wormhole,3,Ready for Mainnet,Armand Khatri,Bridge,https://drive.google.com/open?id=1b3bpk2OCqxDAWKmgrhHdseq9Pq2ejnJC,The best way to build cross-chain,Wormhole is a generic cross-chain message-passing protocol that gives developers the power to build decentralized applications that span the rapidly evolving blockchain ecosystem.,https://wormhole.com,https://x.com/wormholecrypto,https://discord.gg/wormholecrypto,Wormhole,https://drive.google.com/file/d/1fsjP_vovj0MhrA_hy0mQtC_A_Y3MGOJP/view?usp=sharing,,No,,Bridge,,,Approved,
XMTP,3,Initiated,Armand Khatri,Identity,https://drive.google.com/open?id=1ncILKSnZ1TvXk0Y0-SBbnk_7eoIZXw7r,web3 messaging network,"A decentralized communication protocol for secure and private messaging.
- XMTP does notifications, DMs, 1:many broadcast messages, and soon group chats across web3 wallets and applications.
- Over 400+ developers building with XMTP today.
- XMTP is the messaging layer for Lens apps.
- XMTP provides messaging within the Coinbase Wallet.",https://xmtp.org/,@xmtp_,https://discord.gg/hzrkyYxT,XMTP,No,https://drive.google.com/file/d/1mywuICRWBOhRDvw2LUtUFVgGRnvWcnBr/view?usp=sharing,No,Yes,Identity,,,,
-Animoca Brands,1,,,Gaming,,We aim to deliver #DigitalPropertyRights to the world's gamers & Internet users,"Animoca Brands and its various subsidiaries develop and publish a broad portfolio of blockchain games, traditional games, and other products",https://www.animocabrands.com/,https://twitter.com/animocabrands,,Animoca Brands,,https://drive.google.com/file/d/1izUjzBgQyxDBATyWlP3_5H7BYO9ZfoTu/view?usp=sharing,,,Gaming,,,,
-Parallel,1,,,Gaming,,Parallel is a Sci-Fi world and Card Game. //,Parallel is a vast sci-fi universe with five factions battling for home. Assemble a deck and take the fight to Earth.,https://parallel.life/,https://twitter.com/ParallelTCG,,Parallel,https://drive.google.com/file/d/12u2akoYQS1wJ7mKClFYU5G_TM2Gu_tXY/view?usp=sharing,,,,Gaming,,,,
-0x,1,Ready for Mainnet,Armand Khatri,DeFi - Swap,https://drive.google.com/open?id=1tbrCh_k-jEzgdhopDiMQVEiT3-oRFVhH,Connecting developers to Web3 markets,"Your one stop shop to build financial products on crypto rails. Enable faster trading, better prices and superior UX in your app.",https://0x.org/,https://twitter.com/0xProject,,0x,,https://drive.google.com/file/d/1kNlE5AYUKrS3hebUArT6oGAX_OED77vC/view?usp=sharing,,,DeFi,,,,
-Amberdata,3,Initiated,Daryl Xu,Infrastructure Other,"https://drive.google.com/open?id=1z8cgvih75MLt8zVkB4EN3_wy-IQ00f7O, https://drive.google.com/open?id=19FwRe4Q7yb9SS6eZQklsVE4BAh7S7z-f, https://drive.google.com/open?id=1Pf2QMWf9XGRToLKbK8yvaDipDchaW8Q3, https://drive.google.com/open?id=1YGLjsDETFB8uzvdDLH2G9DCjYXHhTlj4",Your Lens Into the Entire Cryptoeconomy,"Amberdata delivers comprehensive digital asset data and insights into blockchain networks, crypto markets, and decentralized finance, empowering financial institutions with critical data for research, trading, risk, analytics, reporting, and compliance.",https://amberdata.io,https://twitter.com/Amberdataio,Not Applicable,Amberdata,,https://drive.google.com/file/d/1BrPpnGm0907ASc30VsEz75Z1nMb4AH3T/view?usp=drive_link,,,Infrastructure,,,,
+Animoca Brands,1,,,Gaming,,We aim to deliver #DigitalPropertyRights to the world's gamers & Internet users,"Animoca Brands and its various subsidiaries develop and publish a broad portfolio of blockchain games, traditional games, and other products",https://www.animocabrands.com/,https://x.com/animocabrands,,Animoca Brands,,https://drive.google.com/file/d/1izUjzBgQyxDBATyWlP3_5H7BYO9ZfoTu/view?usp=sharing,,,Gaming,,,,
+Parallel,1,,,Gaming,,Parallel is a Sci-Fi world and Card Game. //,Parallel is a vast sci-fi universe with five factions battling for home. Assemble a deck and take the fight to Earth.,https://parallel.life/,https://x.com/ParallelTCG,,Parallel,https://drive.google.com/file/d/12u2akoYQS1wJ7mKClFYU5G_TM2Gu_tXY/view?usp=sharing,,,,Gaming,,,,
+0x,1,Ready for Mainnet,Armand Khatri,DeFi - Swap,https://drive.google.com/open?id=1tbrCh_k-jEzgdhopDiMQVEiT3-oRFVhH,Connecting developers to Web3 markets,"Your one stop shop to build financial products on crypto rails. Enable faster trading, better prices and superior UX in your app.",https://0x.org/,https://x.com/0xProject,,0x,,https://drive.google.com/file/d/1kNlE5AYUKrS3hebUArT6oGAX_OED77vC/view?usp=sharing,,,DeFi,,,,
+Amberdata,3,Initiated,Daryl Xu,Infrastructure Other,"https://drive.google.com/open?id=1z8cgvih75MLt8zVkB4EN3_wy-IQ00f7O, https://drive.google.com/open?id=19FwRe4Q7yb9SS6eZQklsVE4BAh7S7z-f, https://drive.google.com/open?id=1Pf2QMWf9XGRToLKbK8yvaDipDchaW8Q3, https://drive.google.com/open?id=1YGLjsDETFB8uzvdDLH2G9DCjYXHhTlj4",Your Lens Into the Entire Cryptoeconomy,"Amberdata delivers comprehensive digital asset data and insights into blockchain networks, crypto markets, and decentralized finance, empowering financial institutions with critical data for research, trading, risk, analytics, reporting, and compliance.",https://amberdata.io,https://x.com/Amberdataio,Not Applicable,Amberdata,,https://drive.google.com/file/d/1BrPpnGm0907ASc30VsEz75Z1nMb4AH3T/view?usp=drive_link,,,Infrastructure,,,,
Balancer,3,Ready for Mainnet,Gavynn Arteaga,DeFi - Swap,https://drive.google.com/open?id=1FLcRli7NJ3JEmgFdx9r6D1e0q4CRE-Tc,Build Better.,"Balancer is a decentralized automated market maker (AMM) protocol built on Ethereum that represents a flexible building block for programmable liquidity.
-By separating the AMM curve logic and math from the core swapping functionality, Balancer becomes an extensible AMM that can incorporate any number of swap curves and pool types.",https://balancer.fi/,https://twitter.com/Balancer,https://t.co/6n6NoFwOQ5,Balancer,,https://drive.google.com/file/d/1FLcRli7NJ3JEmgFdx9r6D1e0q4CRE-Tc/view,,Yes,DeFi,,,,
-Beam,2,Ready for Mainnet,Daryl Xu,Wallet,https://drive.google.com/open?id=1ubjgNaLJGQfG_VMwvBrbVI68Ov3F7-r1,"The easiest wallet ever — no app, no signup.",Beam is a self-custody payments wallet for the mainstream — no download or signup required. It's the easiest way on the planet to send money. Beam works with USDC and ECO (eco.com).,https://beam.eco,https://twitter.com/eco,,Beam,,https://drive.google.com/file/d/1ubjgNaLJGQfG_VMwvBrbVI68Ov3F7-r1/view?usp=drive_link,,Yes,Wallet,,,,
-Biconomy,2,Ready for Mainnet,Daryl Xu,Infrastructure Other,https://drive.google.com/open?id=1V7vuvOQNutQMB-2E5mlA8hX_rORpU9jq,The ultimate toolkit to leverage smart contract wallets & build custom transaction journeys,"Biconomy brings blockchain-agnostic, web2-like experiences to dApps in a non-custodial manner with our comprehensive software development kit which is built on top of ERC4337 and designed specifically for decentralized applications (dApps).",https://www.biconomy.io/,https://twitter.com/biconomy,https://discord.com/invite/biconomy,Biconomy,,https://drive.google.com/file/d/1V7vuvOQNutQMB-2E5mlA8hX_rORpU9jq/view?usp=drive_link,,,Infrastructure,,,,
-Blast by Bware Labs,2,(Closed Won) Deployed to Mainnet,Gavynn Arteaga,Infrastructure - Node / RPC,"https://drive.google.com/open?id=1WnTshYMTaksl4pIDKFAzJyqhA9wgzkXK, https://drive.google.com/open?id=1rlSi9dSY5qnYfQsrgriXR6-1TpzDPLMP",Decentralized Web3 Infrastructure for Everyone,Blast is a decentralized API platform with best-in-class response times and availability. It leverages the power of hundreds of node providers and advanced routing algorithms for unmatched service quality!,https://blastapi.io/,https://twitter.com/BlastAPI,https://discord.gg/bwarelabs,Blast_by_Bware_Labs,,https://drive.google.com/file/d/1zmHaYYIvB04gUSahkBKypa7cVUqIXRFm/view?usp=drive_link,,,Infrastructure,,,,
-Blockscout,1,(Closed Won) Deployed to Mainnet,Viktoriya Hying,Infrastructure - Block Explorer,https://drive.google.com/open?id=12jI7sQDLUk6OliYsC9CA9wQWgPAkoTa2,"Explore your transactions, balances, and smart contracts","Blockscout is a comprehensive open-source tool for viewing blockchain data, including transactions, addresses, and contracts. Plus, it offers easy-to-use APIs.",https://www.blockscout.com/,https://twitter.com/blockscoutcom,https://discord.com/invite/blockscout,Blockscout,,https://drive.google.com/file/d/12jI7sQDLUk6OliYsC9CA9wQWgPAkoTa2/view?usp=sharing,,Yes,Infrastructure,,,,
-Brave,2,Deployment in Progress,Daryl Xu,Crypto Wallet,https://drive.google.com/open?id=1WTEfpRgqS-XpVyl4aGErtuiS1mwOTczI,Browse privately and earn for your attention,"Brave is on a mission to protect your privacy online. We make a suite of internet privacy tools—including our browser and search engine—that shield you from the ads, trackers, and other creepy stuff trying to follow you across the web.",https://brave.com,twitter.com/brave,,Brave,,https://drive.google.com/file/d/1WTEfpRgqS-XpVyl4aGErtuiS1mwOTczI/view?usp=sharing,,,Wallet,,,,
+By separating the AMM curve logic and math from the core swapping functionality, Balancer becomes an extensible AMM that can incorporate any number of swap curves and pool types.",https://balancer.fi/,https://x.com/Balancer,https://t.co/6n6NoFwOQ5,Balancer,,https://drive.google.com/file/d/1FLcRli7NJ3JEmgFdx9r6D1e0q4CRE-Tc/view,,Yes,DeFi,,,,
+Beam,2,Ready for Mainnet,Daryl Xu,Wallet,https://drive.google.com/open?id=1ubjgNaLJGQfG_VMwvBrbVI68Ov3F7-r1,"The easiest wallet ever — no app, no signup.",Beam is a self-custody payments wallet for the mainstream — no download or signup required. It's the easiest way on the planet to send money. Beam works with USDC and ECO (eco.com).,https://beam.eco,https://x.com/eco,,Beam,,https://drive.google.com/file/d/1ubjgNaLJGQfG_VMwvBrbVI68Ov3F7-r1/view?usp=drive_link,,Yes,Wallet,,,,
+Biconomy,2,Ready for Mainnet,Daryl Xu,Infrastructure Other,https://drive.google.com/open?id=1V7vuvOQNutQMB-2E5mlA8hX_rORpU9jq,The ultimate toolkit to leverage smart contract wallets & build custom transaction journeys,"Biconomy brings blockchain-agnostic, web2-like experiences to dApps in a non-custodial manner with our comprehensive software development kit which is built on top of ERC4337 and designed specifically for decentralized applications (dApps).",https://www.biconomy.io/,https://x.com/biconomy,https://discord.com/invite/biconomy,Biconomy,,https://drive.google.com/file/d/1V7vuvOQNutQMB-2E5mlA8hX_rORpU9jq/view?usp=drive_link,,,Infrastructure,,,,
+Blast by Bware Labs,2,(Closed Won) Deployed to Mainnet,Gavynn Arteaga,Infrastructure - Node / RPC,"https://drive.google.com/open?id=1WnTshYMTaksl4pIDKFAzJyqhA9wgzkXK, https://drive.google.com/open?id=1rlSi9dSY5qnYfQsrgriXR6-1TpzDPLMP",Decentralized Web3 Infrastructure for Everyone,Blast is a decentralized API platform with best-in-class response times and availability. It leverages the power of hundreds of node providers and advanced routing algorithms for unmatched service quality!,https://blastapi.io/,https://x.com/BlastAPI,https://discord.gg/bwarelabs,Blast_by_Bware_Labs,,https://drive.google.com/file/d/1zmHaYYIvB04gUSahkBKypa7cVUqIXRFm/view?usp=drive_link,,,Infrastructure,,,,
+Blockscout,1,(Closed Won) Deployed to Mainnet,Viktoriya Hying,Infrastructure - Block Explorer,https://drive.google.com/open?id=12jI7sQDLUk6OliYsC9CA9wQWgPAkoTa2,"Explore your transactions, balances, and smart contracts","Blockscout is a comprehensive open-source tool for viewing blockchain data, including transactions, addresses, and contracts. Plus, it offers easy-to-use APIs.",https://www.blockscout.com/,https://x.com/blockscoutcom,https://discord.com/invite/blockscout,Blockscout,,https://drive.google.com/file/d/12jI7sQDLUk6OliYsC9CA9wQWgPAkoTa2/view?usp=sharing,,Yes,Infrastructure,,,,
+Brave,2,Deployment in Progress,Daryl Xu,Crypto Wallet,https://drive.google.com/open?id=1WTEfpRgqS-XpVyl4aGErtuiS1mwOTczI,Browse privately and earn for your attention,"Brave is on a mission to protect your privacy online. We make a suite of internet privacy tools—including our browser and search engine—that shield you from the ads, trackers, and other creepy stuff trying to follow you across the web.",https://brave.com,x.com/brave,,Brave,,https://drive.google.com/file/d/1WTEfpRgqS-XpVyl4aGErtuiS1mwOTczI/view?usp=sharing,,,Wallet,,,,
Bridge,3,Deployment in Progress,Daryl Xu,DeFi - Stablecoin / Flatcoin,https://drive.google.com/open?id=1cX4z2ROwS3gqY-nIaZoF7M_GIJCtjLz4,Stablecoin orchestration and issuance APIs,"APIs to move into, out of, and between any form of a dollar.",https://bridge.xyz,@zcabrams,,Bridge,,https://drive.google.com/file/d/1cX4z2ROwS3gqY-nIaZoF7M_GIJCtjLz4/view?usp=sharing,,,DeFi,,,,
-Bungee,3,Deployment in Progress,Armand Khatri,Bridge,"https://drive.google.com/open?id=1Jlc11RNre2SCaOARlhB1cPTsVacuKcJT, https://drive.google.com/open?id=1tRlqmLwFpnkcbz6yrH1F8upGUyGS4t4l",Make the Jump & explore your favorite chains!,Bungee integrates bridges & DEXs to help you find the best route across 13+ chains.,https://Bungee.Exchange,https://twitter.com/BungeeExchange,https://discord.gg/socket,Bungee,,https://drive.google.com/file/d/1tRlqmLwFpnkcbz6yrH1F8upGUyGS4t4l/view?usp=sharing,,,Bridge,,,,
-ChainSafe Gaming,2,Initiated,Viktoriya Hying,Gaming,"https://drive.google.com/open?id=116EcUM4pNg7OceMsAFnk06CpNUi9MJud, https://drive.google.com/open?id=1NlULOUgZzcme9VR5iBZDQk-XMHh6TDs6","The world’s only decentralized gaming toolkit, custom-built for developers.","We empower creators. From digital collectibles to in-game assets, incentive mechanisms, and everything in between, change how your players own, create, and get rewarded with ChainSafe Gaming.",https://gaming.chainsafe.io/,https://twitter.com/ChainSafeGaming,https://discord.com/invite/n2U6x9c,ChainSafe_Gaming,,https://drive.google.com/file/d/1-edeOKnfI4V7QaG8ATye0oZ9NB4m4AUY/view?usp=sharing,Requires resize from partner,,Gaming,,,,
-DefiLlama,1,Ready for Mainnet,Gavynn Arteaga,Infrastructure - Analytics,https://drive.google.com/open?id=14fcwiVjmd28GtL6shqaCRry4wKRbdIEX,Open-Source and transparent DeFi Tracking,DefiLlama is the largest TVL aggregator for DeFi (Decentralized Finance). We are fully open-source and our focus is on accurate data and transparent methodology,https://defillama.com/,https://twitter.com/DefiLlama,https://discord.defillama.com/,DefiLlama,,https://drive.google.com/file/d/14fcwiVjmd28GtL6shqaCRry4wKRbdIEX/view?usp=sharing,,,Infrastructure,,,,
-DeForm,1,Ready for Mainnet,Daryl Xu,Infrastructure Other,https://drive.google.com/open?id=1UMWNj5-iGb6ew8dzPLxDk24DSSLzWqDO,"Create web3 allowlists, forms, applications, and more!","DeForm is the most beautiful and easiest to use web3 form builder. Get verified wallet addresses, onchain data lookups, Twitter/Discord/Telegram accounts, and talk to your community!",https://deform.cc/,https://twitter.com/deformapp,https://discord.gg/NqeWdJ2YC5,DeForm,,https://drive.google.com/file/d/1UMWNj5-iGb6ew8dzPLxDk24DSSLzWqDO/view?usp=sharing,,Yes,Infrastructure,,,,
-Exodus,2,Ready for Mainnet,Daryl Xu,Wallet,https://drive.google.com/open?id=1fzSznX3vNXcPSLyAX3mrFNbqG6X0uan6,"Secure, stake, and exchange Bitcoin, Ethereum, Solana, +100 more and store NFTs.","Exodus lets users secure, manage, and swap cryptocurrencies like Bitcoin, Ethereum, & more across 10,000+ asset pairs from a beautiful, easy-to-use wallet. Available for desktop, mobile, and browser.",https://www.exodus.com/,https://twitter.com/exodus_io,http://discord.gg/exodus,Exodus,,https://drive.google.com/file/d/1fzSznX3vNXcPSLyAX3mrFNbqG6X0uan6/view?usp=sharing,,,Wallet,,,,
-Extra Finance,3,Deployment in Progress,Saemi Kim,DeFi - Yield Aggregator,"https://drive.google.com/open?id=1kCduF_TgG9NmGs1EUxWoCaJ_yLHHRNfA, https://drive.google.com/open?id=162fiPC_Ezo74N_L33e8DqcTNpJk-s-47","Farm Extra, Harvest More",Extra Finance is a leveraged yield strategy & lending protocol.,https://app.extrafi.io/,https://twitter.com/extrafi_io,https://discord.com/invite/extra-finance,Extra_Finance,,https://drive.google.com/file/d/1JWTM8DUp9T0aXP1X2CUurBCU8jA67ffC/view?usp=sharing,,,DeFi,,,,
-Fireblocks,1,Ready for Mainnet,Daryl Xu,Infrastructure Other,"https://drive.google.com/open?id=15ycw9V65pZ4-7iRoRp32ra2IbC6z8ESJ, https://drive.google.com/open?id=17qt-V17vPDuHqA92EIcFCFtF7EHTpeDf",The simplest and most secure way to work with digital assets.,Fireblocks provides a suite of applications to manage digital asset operations and a complete development platform to build your business on the blockchain.,https://www.fireblocks.com/,https://twitter.com/FireblocksHQ,N/A,Fireblocks,,https://drive.google.com/file/d/1pchkGzb9FcJlctBDjB6diWmSPxhqgj4f/view?usp=sharing,,,Infrastructure,,,,
-Flipside,1,(Closed Won) Deployed to Mainnet,Gavynn Arteaga,Infrastructure - Analytics,https://drive.google.com/open?id=1Om6zdUdISiH5oelzAuNbeKop3R7OFRIx,Access the industry's most reliable blockchain data,"Builders, investors an analysts can unlock Web3 success with Flipside's trusted blockchain data and expert insights. Grow with governance, acquisition tools, business intelligence and analytics.",https://flipsidecrypto.xyz/,https://twitter.com/flipsidecrypto,https://discord.com/gg/Flipside,Flipside,,https://drive.google.com/file/d/1Om6zdUdISiH5oelzAuNbeKop3R7OFRIx/view?usp=sharing,,Yes,Infrastructure,,,,
-GangstaVerse,2,Initiated,Daryl Xu,Gaming,https://drive.google.com/open?id=1TmX2uYxeOyLgwlyV_eA4OwU0Q8AuuM9L,War between Gangsters and Detectives,GangstaVerse is a multi-chain RPG that combines digital art and web3 game ecosystem. GangWar is a semi-passive simulation-based game where gangsters and detectives fight to establish power in the city.,https://war.gangstaverse.co/,https://twitter.com/GangstaVerse,https://discord.com/invite/rkJBeAgQux,GangstaVerse,,https://drive.google.com/file/d/1vv8ABXL_INJ8WDcB6jMj-z0ypgFxYwjL/view?usp=sharing,,,Gaming,,,,
-Go-Go-Glover,2,Ready for Mainnet,Daryl Xu,,https://drive.google.com/open?id=1Kqp4-K1VjHe5bE9KILYQD_c4BzJwTVFT,An Endless Adventure Reviving the Acclaimed Glover Universe!,"""Dive into the Glover universe in a thrilling endless runner! Dodge obstacles, collect magic crystals, and relive the N64 magic on mobile!""",https://go-go-glover.com,https://twitter.com/StrattonStudios,,Go_Go_Glover,,https://drive.google.com/open?id=1Kqp4-K1VjHe5bE9KILYQD_c4BzJwTVFT,,,Gaming,,,,
-Guild,2,Ready for Mainnet,Viktoriya Hying,NFT - Marketplace,https://drive.google.com/open?id=10hDQ7Uzi8_K-O4KzGh1vaUNuGTp8Ayo0,Homepage of your community,"Guild is an automation platform for onboarding Web3 communities, it can identify NFT holders, active developers, social media influencers and any other custom categories of community members based on their Guild account.",https://guild.xyz,https://twitter.com/guildxyz,,Guild,,https://drive.google.com/file/d/10hDQ7Uzi8_K-O4KzGh1vaUNuGTp8Ayo0/view?usp=sharing,,,NFT,,,,
-LayerZero,2,(Closed Won) Deployed to Mainnet,Armand Khatri,Bridge,https://drive.google.com/open?id=1GY_AJ-9uOlOl1FL9YrzZkInH34lqYwEd,Omnichain interoperability protocol,LayerZero is the leading blockchain messaging protocol. LayerZero's advanced messaging infrastructure seamlessly connects over 30 blockchains and facilitates transparent and secure cross-chain messaging from one easy-to-use interface.,https://layerzero.network/,https://twitter.com/LayerZero_Labs,https://discord-layerzero.netlify.app/discord,LayerZero,,https://drive.google.com/file/d/1GY_AJ-9uOlOl1FL9YrzZkInH34lqYwEd/view?usp=sharing,,,Bridge,,,,
-Onramp Money,2,Ready for Mainnet,Daryl Xu,Onramp,"https://drive.google.com/open?id=1xMoW8TiTbilWy2RnMn0o_XUGwZOt1yo-, https://drive.google.com/open?id=1avEM1KMtr7APK_kK9ZFguoEMhHrUg9M-",Fastest way to convert Fiat-to-Web3 Money,Onramp.money is a convenient & secure way to convert your FIAT to Web3 money in <60s! We allow your users to buy & sell digital assets with lowest processing fees. Onramp.money can be easily integrated with your global decentralized application (dApp) to smoothly onboard users to purchase multiple digital assets across chains.,https://onramp.money/,https://twitter.com/onrampmoney,,Onramp_Money,,https://drive.google.com/file/d/1_FSnyaSghxuOFxXGoDeVVU_hq5xue8bT/view?usp=drive_link,,Yes,Onramp,,,,
+Bungee,3,Deployment in Progress,Armand Khatri,Bridge,"https://drive.google.com/open?id=1Jlc11RNre2SCaOARlhB1cPTsVacuKcJT, https://drive.google.com/open?id=1tRlqmLwFpnkcbz6yrH1F8upGUyGS4t4l",Make the Jump & explore your favorite chains!,Bungee integrates bridges & DEXs to help you find the best route across 13+ chains.,https://Bungee.Exchange,https://x.com/BungeeExchange,https://discord.gg/socket,Bungee,,https://drive.google.com/file/d/1tRlqmLwFpnkcbz6yrH1F8upGUyGS4t4l/view?usp=sharing,,,Bridge,,,,
+ChainSafe Gaming,2,Initiated,Viktoriya Hying,Gaming,"https://drive.google.com/open?id=116EcUM4pNg7OceMsAFnk06CpNUi9MJud, https://drive.google.com/open?id=1NlULOUgZzcme9VR5iBZDQk-XMHh6TDs6","The world’s only decentralized gaming toolkit, custom-built for developers.","We empower creators. From digital collectibles to in-game assets, incentive mechanisms, and everything in between, change how your players own, create, and get rewarded with ChainSafe Gaming.",https://gaming.chainsafe.io/,https://x.com/ChainSafeGaming,https://discord.com/invite/n2U6x9c,ChainSafe_Gaming,,https://drive.google.com/file/d/1-edeOKnfI4V7QaG8ATye0oZ9NB4m4AUY/view?usp=sharing,Requires resize from partner,,Gaming,,,,
+DefiLlama,1,Ready for Mainnet,Gavynn Arteaga,Infrastructure - Analytics,https://drive.google.com/open?id=14fcwiVjmd28GtL6shqaCRry4wKRbdIEX,Open-Source and transparent DeFi Tracking,DefiLlama is the largest TVL aggregator for DeFi (Decentralized Finance). We are fully open-source and our focus is on accurate data and transparent methodology,https://defillama.com/,https://x.com/DefiLlama,https://discord.defillama.com/,DefiLlama,,https://drive.google.com/file/d/14fcwiVjmd28GtL6shqaCRry4wKRbdIEX/view?usp=sharing,,,Infrastructure,,,,
+DeForm,1,Ready for Mainnet,Daryl Xu,Infrastructure Other,https://drive.google.com/open?id=1UMWNj5-iGb6ew8dzPLxDk24DSSLzWqDO,"Create web3 allowlists, forms, applications, and more!","DeForm is the most beautiful and easiest to use web3 form builder. Get verified wallet addresses, onchain data lookups, X/Discord/Telegram accounts, and talk to your community!",https://deform.cc/,https://x.com/deformapp,https://discord.gg/NqeWdJ2YC5,DeForm,,https://drive.google.com/file/d/1UMWNj5-iGb6ew8dzPLxDk24DSSLzWqDO/view?usp=sharing,,Yes,Infrastructure,,,,
+Exodus,2,Ready for Mainnet,Daryl Xu,Wallet,https://drive.google.com/open?id=1fzSznX3vNXcPSLyAX3mrFNbqG6X0uan6,"Secure, stake, and exchange Bitcoin, Ethereum, Solana, +100 more and store NFTs.","Exodus lets users secure, manage, and swap cryptocurrencies like Bitcoin, Ethereum, & more across 10,000+ asset pairs from a beautiful, easy-to-use wallet. Available for desktop, mobile, and browser.",https://www.exodus.com/,https://x.com/exodus_io,http://discord.gg/exodus,Exodus,,https://drive.google.com/file/d/1fzSznX3vNXcPSLyAX3mrFNbqG6X0uan6/view?usp=sharing,,,Wallet,,,,
+Extra Finance,3,Deployment in Progress,Saemi Kim,DeFi - Yield Aggregator,"https://drive.google.com/open?id=1kCduF_TgG9NmGs1EUxWoCaJ_yLHHRNfA, https://drive.google.com/open?id=162fiPC_Ezo74N_L33e8DqcTNpJk-s-47","Farm Extra, Harvest More",Extra Finance is a leveraged yield strategy & lending protocol.,https://app.extrafi.io/,https://x.com/extrafi_io,https://discord.com/invite/extra-finance,Extra_Finance,,https://drive.google.com/file/d/1JWTM8DUp9T0aXP1X2CUurBCU8jA67ffC/view?usp=sharing,,,DeFi,,,,
+Fireblocks,1,Ready for Mainnet,Daryl Xu,Infrastructure Other,"https://drive.google.com/open?id=15ycw9V65pZ4-7iRoRp32ra2IbC6z8ESJ, https://drive.google.com/open?id=17qt-V17vPDuHqA92EIcFCFtF7EHTpeDf",The simplest and most secure way to work with digital assets.,Fireblocks provides a suite of applications to manage digital asset operations and a complete development platform to build your business on the blockchain.,https://www.fireblocks.com/,https://x.com/FireblocksHQ,N/A,Fireblocks,,https://drive.google.com/file/d/1pchkGzb9FcJlctBDjB6diWmSPxhqgj4f/view?usp=sharing,,,Infrastructure,,,,
+Flipside,1,(Closed Won) Deployed to Mainnet,Gavynn Arteaga,Infrastructure - Analytics,https://drive.google.com/open?id=1Om6zdUdISiH5oelzAuNbeKop3R7OFRIx,Access the industry's most reliable blockchain data,"Builders, investors an analysts can unlock Web3 success with Flipside's trusted blockchain data and expert insights. Grow with governance, acquisition tools, business intelligence and analytics.",https://flipsidecrypto.xyz/,https://x.com/flipsidecrypto,https://discord.com/gg/Flipside,Flipside,,https://drive.google.com/file/d/1Om6zdUdISiH5oelzAuNbeKop3R7OFRIx/view?usp=sharing,,Yes,Infrastructure,,,,
+GangstaVerse,2,Initiated,Daryl Xu,Gaming,https://drive.google.com/open?id=1TmX2uYxeOyLgwlyV_eA4OwU0Q8AuuM9L,War between Gangsters and Detectives,GangstaVerse is a multi-chain RPG that combines digital art and web3 game ecosystem. GangWar is a semi-passive simulation-based game where gangsters and detectives fight to establish power in the city.,https://war.gangstaverse.co/,https://x.com/GangstaVerse,https://discord.com/invite/rkJBeAgQux,GangstaVerse,,https://drive.google.com/file/d/1vv8ABXL_INJ8WDcB6jMj-z0ypgFxYwjL/view?usp=sharing,,,Gaming,,,,
+Go-Go-Glover,2,Ready for Mainnet,Daryl Xu,,https://drive.google.com/open?id=1Kqp4-K1VjHe5bE9KILYQD_c4BzJwTVFT,An Endless Adventure Reviving the Acclaimed Glover Universe!,"""Dive into the Glover universe in a thrilling endless runner! Dodge obstacles, collect magic crystals, and relive the N64 magic on mobile!""",https://go-go-glover.com,https://x.com/StrattonStudios,,Go_Go_Glover,,https://drive.google.com/open?id=1Kqp4-K1VjHe5bE9KILYQD_c4BzJwTVFT,,,Gaming,,,,
+Guild,2,Ready for Mainnet,Viktoriya Hying,NFT - Marketplace,https://drive.google.com/open?id=10hDQ7Uzi8_K-O4KzGh1vaUNuGTp8Ayo0,Homepage of your community,"Guild is an automation platform for onboarding Web3 communities, it can identify NFT holders, active developers, social media influencers and any other custom categories of community members based on their Guild account.",https://guild.xyz,https://x.com/guildxyz,,Guild,,https://drive.google.com/file/d/10hDQ7Uzi8_K-O4KzGh1vaUNuGTp8Ayo0/view?usp=sharing,,,NFT,,,,
+LayerZero,2,(Closed Won) Deployed to Mainnet,Armand Khatri,Bridge,https://drive.google.com/open?id=1GY_AJ-9uOlOl1FL9YrzZkInH34lqYwEd,Omnichain interoperability protocol,LayerZero is the leading blockchain messaging protocol. LayerZero's advanced messaging infrastructure seamlessly connects over 30 blockchains and facilitates transparent and secure cross-chain messaging from one easy-to-use interface.,https://layerzero.network/,https://x.com/LayerZero_Labs,https://discord-layerzero.netlify.app/discord,LayerZero,,https://drive.google.com/file/d/1GY_AJ-9uOlOl1FL9YrzZkInH34lqYwEd/view?usp=sharing,,,Bridge,,,,
+Onramp Money,2,Ready for Mainnet,Daryl Xu,Onramp,"https://drive.google.com/open?id=1xMoW8TiTbilWy2RnMn0o_XUGwZOt1yo-, https://drive.google.com/open?id=1avEM1KMtr7APK_kK9ZFguoEMhHrUg9M-",Fastest way to convert Fiat-to-Web3 Money,Onramp.money is a convenient & secure way to convert your FIAT to Web3 money in <60s! We allow your users to buy & sell digital assets with lowest processing fees. Onramp.money can be easily integrated with your global decentralized application (dApp) to smoothly onboard users to purchase multiple digital assets across chains.,https://onramp.money/,https://x.com/onrampmoney,,Onramp_Money,,https://drive.google.com/file/d/1_FSnyaSghxuOFxXGoDeVVU_hq5xue8bT/view?usp=drive_link,,Yes,Onramp,,,,
Pike,2,Deployment in Progress,Armand Khatri,DeFi Other,"https://drive.google.com/open?id=16Y3XLIgLBCaI5pT02Jnoed_7MGVs4sZq, https://drive.google.com/open?id=1ekEBS3JYgLWnHpwKd6h-mNID1ATTn-AB, https://drive.google.com/open?id=17VfFtIbRYW_J2c5XVeSiHewhIw1wOgIn","Lend, borrow and earn native crypto assets","Pike is a Universal Liquidity Protocol, it is designed to unleash utility for native crypto assets by aggregating liquidity across blockchain networks.
Pike’s vision is to become a universal liquidity layer that enables frictionless movement and accessibility of native assets across ecosystems. Pike is built on top of Wormhole’s Cross-Chain Data Messaging and Circle’s Cross-Chain Transfer Protocol (CCTP).
-One fundamental primitive of Pike is to enable users to supply native crypto assets on source chains and borrow native crypto assets on destination chains without interacting with cross-chain bridges and handling wrapped assets.",https://pike.finance,https://twitter.com/PikeFinance,https://discord.com/invite/yUmg8QC37U,Pike,,https://drive.google.com/file/d/16Y3XLIgLBCaI5pT02Jnoed_7MGVs4sZq/view?usp=sharing,,Yes,DeFi,,,,
-PoolTogether,3,Deployment in Progress,Saemi Kim,DeFi - Yield Aggregator,https://drive.google.com/open?id=1dmzZZTPHHXEYuXDWO0E3vHSbYzxIX06x,Deposit tokens and win prizes!,"PoolTogether is a prize savings protocol that makes saving fun! Deposit into PoolTogether vaults to be eligible to win prizes every day. Prizes are generated by the yield on deposits, and you can deposit all kinds of tokens!",https://pooltogether.com,https://twitter.com/poolTogether_,https://discord.gg/AyKfVB4Pak,PoolTogether,,https://drive.google.com/file/d/1dmzZZTPHHXEYuXDWO0E3vHSbYzxIX06x/view?usp=sharing,,Yes,DeFi,,,,
-Privy,2,Ready for Mainnet,Daryl Xu,Onramp,https://drive.google.com/open?id=1UweG0hGk2vJRN9it2_2zg6JsLusZlDBR,The easiest way to onboard all your users to web3,"Privy is a simple library to onboard all your users to web3, with embedded wallets for web3 newcomers, reliable connectors for web3 natives, and powerful user management.",https://www.privy.io/,https://twitter.com/privy_io,,Privy,,https://drive.google.com/file/d/169xTOO86YJdJOykBTApGlgx6JQt-KKyd/view?usp=sharing,,,Onramp,,,,
-Quicknode,1,(Closed Won) Deployed to Mainnet,Gavynn Arteaga,Infrastructure - Node / RPC,https://drive.google.com/open?id=1t5hr6ipCN80IZSeAVO3HQsEYpC0iKbr7,The Blockchain Development Platform,"As the leading end-to-end web3 developer platform, QuickNode is transforming blockchain infrastructure and tooling by simplifying web3 development and providing high-performance access to 24+ blockchains. Since 2017, QuickNode has empowered hundreds of thousands of top developers and companies to focus on innovation by accelerating dApp build times and offering enterprise-grade solutions to businesses of every size.",https://www.quicknode.com/,https://twitter.com/QuickNode,https://discord.gg/quicknode,Quicknode,,https://drive.google.com/file/d/1t5hr6ipCN80IZSeAVO3HQsEYpC0iKbr7/view?usp=sharing,,,Infrastructure,,,,
-Rabby Wallet,2,Deployment in Progress,Armand Khatri,Crypto Wallet,https://drive.google.com/open?id=1m8wyqFIKJfLj8vLdtvgML3tA9dFRcHm2,The game-changing wallet for Ethereum and all EVM chains,https://chrome.google.com/webstore/detail/rabby-wallet/acmacodkjbdgmoleebolmdjonilkdbch,https://rabby.io,https://twitter.com/Rabby_io,https://discord.com/invite/seFBCWmUre,Rabby_Wallet,,https://drive.google.com/file/d/1m8wyqFIKJfLj8vLdtvgML3tA9dFRcHm2/view?usp=sharing,,,Wallet,,,,
-Reservoir,3,Deployment in Progress,Viktoriya Hying,NFT - Marketplace,"https://drive.google.com/open?id=1U6QX23iaFqAvkkvV-dJK2rpH-41f5oC6, https://drive.google.com/open?id=1rx4QVWidDy1giUfbifvJN6qZ8zN8oBRK",NFT Trading Infrastructure • Build buying & selling into your app,"The most powerful tools to build buying & selling into your app - access NFT data, create, store, and fill NFT orders.",https://reservoir.tools/,https://twitter.com/reservoir0x,https://discord.gg/T4MqhUzdxn,Reservoir,,https://drive.google.com/file/d/11XG2hzaJ-8VA_6jesO0sVEMASiiKADFu/view?usp=sharing,,,NFT,,,,
-rhino.fi,2,Deployment in Progress,Armand Khatri,DeFi Other,"https://drive.google.com/open?id=1d9RC8RLlUvaIbLRHPHgdi9Xoj3BNEbin, https://drive.google.com/open?id=1rz3a2EauDm8A6wU2f2-0CsOkOarQXJk1",Seamless DeFi bridge and yield aggregator,"Unlock secure, self-custodial DeFi with rhino.fi - The Layer 2 DeFi aggregator. Explore 500+ tokens across 9 chains. Bridge, swap, stake, farm all in one place.",https://app.rhino.fi/bridge?token=ETH,https://twitter.com/rhinofi,https://discord.gg/ES27QxFWmF,Rhino_Fi,,https://drive.google.com/file/d/1d9RC8RLlUvaIbLRHPHgdi9Xoj3BNEbin/view?usp=sharing,Requires resize from partner,,DeFi,,,,
+One fundamental primitive of Pike is to enable users to supply native crypto assets on source chains and borrow native crypto assets on destination chains without interacting with cross-chain bridges and handling wrapped assets.",https://pike.finance,https://x.com/PikeFinance,https://discord.com/invite/yUmg8QC37U,Pike,,https://drive.google.com/file/d/16Y3XLIgLBCaI5pT02Jnoed_7MGVs4sZq/view?usp=sharing,,Yes,DeFi,,,,
+PoolTogether,3,Deployment in Progress,Saemi Kim,DeFi - Yield Aggregator,https://drive.google.com/open?id=1dmzZZTPHHXEYuXDWO0E3vHSbYzxIX06x,Deposit tokens and win prizes!,"PoolTogether is a prize savings protocol that makes saving fun! Deposit into PoolTogether vaults to be eligible to win prizes every day. Prizes are generated by the yield on deposits, and you can deposit all kinds of tokens!",https://pooltogether.com,https://x.com/poolTogether_,https://discord.gg/AyKfVB4Pak,PoolTogether,,https://drive.google.com/file/d/1dmzZZTPHHXEYuXDWO0E3vHSbYzxIX06x/view?usp=sharing,,Yes,DeFi,,,,
+Privy,2,Ready for Mainnet,Daryl Xu,Onramp,https://drive.google.com/open?id=1UweG0hGk2vJRN9it2_2zg6JsLusZlDBR,The easiest way to onboard all your users to web3,"Privy is a simple library to onboard all your users to web3, with embedded wallets for web3 newcomers, reliable connectors for web3 natives, and powerful user management.",https://www.privy.io/,https://x.com/privy_io,,Privy,,https://drive.google.com/file/d/169xTOO86YJdJOykBTApGlgx6JQt-KKyd/view?usp=sharing,,,Onramp,,,,
+Quicknode,1,(Closed Won) Deployed to Mainnet,Gavynn Arteaga,Infrastructure - Node / RPC,https://drive.google.com/open?id=1t5hr6ipCN80IZSeAVO3HQsEYpC0iKbr7,The Blockchain Development Platform,"As the leading end-to-end web3 developer platform, QuickNode is transforming blockchain infrastructure and tooling by simplifying web3 development and providing high-performance access to 24+ blockchains. Since 2017, QuickNode has empowered hundreds of thousands of top developers and companies to focus on innovation by accelerating dApp build times and offering enterprise-grade solutions to businesses of every size.",https://www.quicknode.com/,https://x.com/QuickNode,https://discord.gg/quicknode,Quicknode,,https://drive.google.com/file/d/1t5hr6ipCN80IZSeAVO3HQsEYpC0iKbr7/view?usp=sharing,,,Infrastructure,,,,
+Rabby Wallet,2,Deployment in Progress,Armand Khatri,Crypto Wallet,https://drive.google.com/open?id=1m8wyqFIKJfLj8vLdtvgML3tA9dFRcHm2,The game-changing wallet for Ethereum and all EVM chains,https://chrome.google.com/webstore/detail/rabby-wallet/acmacodkjbdgmoleebolmdjonilkdbch,https://rabby.io,https://x.com/Rabby_io,https://discord.com/invite/seFBCWmUre,Rabby_Wallet,,https://drive.google.com/file/d/1m8wyqFIKJfLj8vLdtvgML3tA9dFRcHm2/view?usp=sharing,,,Wallet,,,,
+Reservoir,3,Deployment in Progress,Viktoriya Hying,NFT - Marketplace,"https://drive.google.com/open?id=1U6QX23iaFqAvkkvV-dJK2rpH-41f5oC6, https://drive.google.com/open?id=1rx4QVWidDy1giUfbifvJN6qZ8zN8oBRK",NFT Trading Infrastructure • Build buying & selling into your app,"The most powerful tools to build buying & selling into your app - access NFT data, create, store, and fill NFT orders.",https://reservoir.tools/,https://x.com/reservoir0x,https://discord.gg/T4MqhUzdxn,Reservoir,,https://drive.google.com/file/d/11XG2hzaJ-8VA_6jesO0sVEMASiiKADFu/view?usp=sharing,,,NFT,,,,
+rhino.fi,2,Deployment in Progress,Armand Khatri,DeFi Other,"https://drive.google.com/open?id=1d9RC8RLlUvaIbLRHPHgdi9Xoj3BNEbin, https://drive.google.com/open?id=1rz3a2EauDm8A6wU2f2-0CsOkOarQXJk1",Seamless DeFi bridge and yield aggregator,"Unlock secure, self-custodial DeFi with rhino.fi - The Layer 2 DeFi aggregator. Explore 500+ tokens across 9 chains. Bridge, swap, stake, farm all in one place.",https://app.rhino.fi/bridge?token=ETH,https://x.com/rhinofi,https://discord.gg/ES27QxFWmF,Rhino_Fi,,https://drive.google.com/file/d/1d9RC8RLlUvaIbLRHPHgdi9Xoj3BNEbin/view?usp=sharing,Requires resize from partner,,DeFi,,,,
Satsuma,3,(Closed Won) Deployed to Mainnet,Gavynn Arteaga,Infrastructure Other,"https://drive.google.com/open?id=11l51NIqfaHFIew91Beapi3CMDU5lBQvB, https://drive.google.com/open?id=1z7cxbGBN78V53i7VjvwSN1Ek8jX0XxNr, https://drive.google.com/open?id=1XHKigRV30ACDPYbcod9gjZCOMjczMdI2, https://drive.google.com/open?id=1uyBs3BUYWe24dKCU1XIEnKCbqxeOEKov",Reliable Subgraph & Blockchain Indexing For Web3 Teams,"Save months of development time with our hosted subgraph indexing. Instead of focusing on backend development and devops, write a subgraph in < 1 hr and get a custom GraphQL API for your dApp.
-Projects like Decentraland, Aragon, and Treasure use Satsuma for our 99.9% uptime, up to 5x+ faster indexing, and comprehensive developer tooling.",https://www.satsuma.xyz/,https://twitter.com/satsumaxyz,,Satsuma,,https://drive.google.com/file/d/11l51NIqfaHFIew91Beapi3CMDU5lBQvB/view?usp=sharing,,,Infrastructure,,,,
-Sequence,2,Ready for Mainnet,Daryl Xu,Wallet,https://drive.google.com/open?id=1TxgOPpzstSF4mAgQ7iDc8wy2UrX82lKi,Build web3 games + apps with ease.,Sequence is the all-in-one developer platform + smart wallet that makes building web3 games and applications easy.,https://sequence.xyz/,https://twitter.com/0xsequence,https://discord.com/invite/sequence,Sequence,,https://drive.google.com/file/d/1zERyzdkETTySCF4-Osub4IDzf5ZJ44RW/view?usp=drive_link,,Yes,Wallet,,,,
-Snaky Cat,2,Ready for Mainnet,Daryl Xu,GameFi,https://drive.google.com/open?id=1ZcSUob5VJV7wFoJnE6WXmkSCTtSDMIH0,Rule as the longest cat and earn tokens!,"Control a unique feline with a snake-like body, feast on food to stretch and grow. Outmaneuver other cats, seize their remains, become the longest cat and slither up the leaderboard, scoring purr-ecious tokens!",https://snakycat.io,https://twitter.com/appxplore,N/A,Snaky_Cat,,https://drive.google.com/file/d/1ZcSUob5VJV7wFoJnE6WXmkSCTtSDMIH0/view?usp=sharing,,,Gaming,,,,
-Spearbit,2,Ready for Mainnet,Saemi Kim,Infrastructure - Security,"https://drive.google.com/open?id=1iZTbIY-XvLxIG_2Evha07I8h_88iXjhZ, https://drive.google.com/open?id=1qqu_Fvbgytbg1nrZaZ08WX487M41eI9Z",A distributed network of top web3 security talent,"Spearbit is a global distributed network of industry-leading security experts that offer web3 security review and consulting services. Spearbit operates as a web3 smart contract security solutions firm with clients such as Polygon, OpenSea, Gauntlet, Optimism and many other mission-critical protocols across the web3 landscape.",https://spearbit.com/,https://twitter.com/SpearbitDAO,N/A (Private Invites Only),Spearbit,,https://drive.google.com/file/d/1qYWpGYVA-hLPPz3-VE0PHCGBaAeI6Z8F/view?usp=sharing,,,Infrastructure,,,,
-Superfluid,3,(Closed Won) Deployed to Mainnet,Armand Khatri,,https://drive.google.com/open?id=1NAhOoHJNJoalOlooN-7qUUtkr8Ylia8a,Programmable cashflows for real-time money streaming,"Superfluid is the industry-leading revolutionary asset streaming protocol that brings real-time subscriptions, salaries, vesting, and rewards to DAOs and crypto-native businesses worldwide.",https://www.superfluid.finance/,https://twitter.com/Superfluid_HQ,https://discord.gg/pPzPEDMVua,Superfliud,,https://drive.google.com/file/d/1NAhOoHJNJoalOlooN-7qUUtkr8Ylia8a/view?usp=sharing,,Yes,Infrastructure,,,,
+Projects like Decentraland, Aragon, and Treasure use Satsuma for our 99.9% uptime, up to 5x+ faster indexing, and comprehensive developer tooling.",https://www.satsuma.xyz/,https://x.com/satsumaxyz,,Satsuma,,https://drive.google.com/file/d/11l51NIqfaHFIew91Beapi3CMDU5lBQvB/view?usp=sharing,,,Infrastructure,,,,
+Sequence,2,Ready for Mainnet,Daryl Xu,Wallet,https://drive.google.com/open?id=1TxgOPpzstSF4mAgQ7iDc8wy2UrX82lKi,Build web3 games + apps with ease.,Sequence is the all-in-one developer platform + smart wallet that makes building web3 games and applications easy.,https://sequence.xyz/,https://x.com/0xsequence,https://discord.com/invite/sequence,Sequence,,https://drive.google.com/file/d/1zERyzdkETTySCF4-Osub4IDzf5ZJ44RW/view?usp=drive_link,,Yes,Wallet,,,,
+Snaky Cat,2,Ready for Mainnet,Daryl Xu,GameFi,https://drive.google.com/open?id=1ZcSUob5VJV7wFoJnE6WXmkSCTtSDMIH0,Rule as the longest cat and earn tokens!,"Control a unique feline with a snake-like body, feast on food to stretch and grow. Outmaneuver other cats, seize their remains, become the longest cat and slither up the leaderboard, scoring purr-ecious tokens!",https://snakycat.io,https://x.com/appxplore,N/A,Snaky_Cat,,https://drive.google.com/file/d/1ZcSUob5VJV7wFoJnE6WXmkSCTtSDMIH0/view?usp=sharing,,,Gaming,,,,
+Spearbit,2,Ready for Mainnet,Saemi Kim,Infrastructure - Security,"https://drive.google.com/open?id=1iZTbIY-XvLxIG_2Evha07I8h_88iXjhZ, https://drive.google.com/open?id=1qqu_Fvbgytbg1nrZaZ08WX487M41eI9Z",A distributed network of top web3 security talent,"Spearbit is a global distributed network of industry-leading security experts that offer web3 security review and consulting services. Spearbit operates as a web3 smart contract security solutions firm with clients such as Polygon, OpenSea, Gauntlet, Optimism and many other mission-critical protocols across the web3 landscape.",https://spearbit.com/,https://x.com/SpearbitDAO,N/A (Private Invites Only),Spearbit,,https://drive.google.com/file/d/1qYWpGYVA-hLPPz3-VE0PHCGBaAeI6Z8F/view?usp=sharing,,,Infrastructure,,,,
+Superfluid,3,(Closed Won) Deployed to Mainnet,Armand Khatri,,https://drive.google.com/open?id=1NAhOoHJNJoalOlooN-7qUUtkr8Ylia8a,Programmable cashflows for real-time money streaming,"Superfluid is the industry-leading revolutionary asset streaming protocol that brings real-time subscriptions, salaries, vesting, and rewards to DAOs and crypto-native businesses worldwide.",https://www.superfluid.finance/,https://x.com/Superfluid_HQ,https://discord.gg/pPzPEDMVua,Superfliud,,https://drive.google.com/file/d/1NAhOoHJNJoalOlooN-7qUUtkr8Ylia8a/view?usp=sharing,,Yes,Infrastructure,,,,
Transak,1,Ready for Mainnet,Daryl Xu,Onramp,"https://drive.google.com/open?id=1bjSWinzYTgCpEkHQ3oU7UfvJaGNgkNFK, https://drive.google.com/open?id=1BI6YcLfgg2tPM18ygrCFUST-v4tO8c5o",Making web3 applications accessible,"Transak is a global web3 payment and onboarding infrastructure provider, facilitating seamless transitions between traditional finance and crypto assets.
Web3 platforms using Transak can embed the best way to onboard users by enabling them to buy or sell crypto assets from 150+ countries, as Transak abstracts away the complexity of user KYC, risk monitoring, compliance, payment methods and customer support.
@@ -124,54 +124,54 @@ Transak’s product suite includes robust fiat-to-crypto services (On/Off-Ramps)
As a regulated, non-custodial payments layer, Transak supports onboarding to 160+ crypto assets across 75+ blockchains. Trusted by over 350+ applications, including MetaMask and Coinbase Wallet, Transak is making web3 applications more accessible.
-For more information, visit transak.com or follow us on twitter.com/transak",https://transak.com/,https://twitter.com/Transak,,Transak,,https://drive.google.com/file/d/1bzPTEgljWgLiY04qXgQvoyDMtIaY9R3S/view?usp=sharing,Requires resize from partner,Yes,Onramp,,,,
-Truflation,2,Deployment in Progress,Armand Khatri,DeFi,https://drive.google.com/open?id=15Jpqtmx7NVluwPC7Um1Fgdx5FcWiwsbi,"onchain, unbiased, economic data oracle","Truflation is revolutionizing financial insights with real-time, unbiased economic data through a decentralized onchain oracle",https://truflation.com/,https://twitter.com/truflation,,Truflation,,https://drive.google.com/file/d/1oP0bkfOZRfP5rHZYi3hZd5yDUQLv3IYh/view?usp=drive_link,Yes,,DeFi,,,,
-WalletConnect,2,Ready for Mainnet,Daryl Xu,Infrastructure Other,https://drive.google.com/open?id=14LosXoh2kOMosZuuJx58b3jEfES7W8iQ,The web3 communications protocol,"WalletConnect was founded with the mission to connect wallets and dapps, and the scope of our ambition has erupted along with the ecosystem. Today, WalletConnect is the communications protocol connecting web3, as we focus on assembling a messaging layer with our SDKs that enable authentication, push notifications, and wallet messaging. Our infrastructure and tools help developers build apps and expand experiences for the millions - and soon, billions - of users exploring the fast-growing world of web3.",https://www.walletconnect.com,https://twitter.com/WalletConnect,,WalletConnect,,https://drive.google.com/file/d/1C2nwY2rMZsCSALVH_src8oIjceCBjzZj/view?usp=sharing,,Yes,Infrastructure,,,,
-Words3,2,Ready for Mainnet,Daryl Xu,,https://drive.google.com/open?id=1RPLLkXf6lZ50y1W2BUrrbEz0tvhUfS7q,Web3's Word Game,Compete for ETH in a new crossword-style game... where every move is onchain!,https://words3.xyz,https://twitter.com/0xsmallbrain,https://discord.gg/q2zqXbt5kd,Words3,,https://drive.google.com/file/d/1RPLLkXf6lZ50y1W2BUrrbEz0tvhUfS7q/view?usp=sharing,,Yes,Gaming,,,,
-XDAO,3,Deployment in Progress,Saemi Kim,DAO,https://drive.google.com/open?id=15QmKeQENp9r5Kkh66MCb4UuclqfnkZ4l,A smart DAO tool for crypto entrepreneurs,XDAO is a versatile tool that empowers individuals and teams to effortlessly create a DAO.,https://xdao.app,https://twitter.com/xdaoapp,https://discord.gg/xdaoapp,XDAO,,https://drive.google.com/file/d/15QmKeQENp9r5Kkh66MCb4UuclqfnkZ4l/view?usp=sharing,,Yes,DAO,,,,
-Yield Guild Games,1,Ready for Mainnet,Daryl Xu,GameFi,https://drive.google.com/open?id=1_QjJoYYhEpBs9aCDYiRffdLetGkCLvvx,"Make friends, discover games, and level up.","Yield Guild Games (YGG) is the world’s first and biggest web3 gaming guild where players can enrich themselves as they find their community, discover games and level up together.",https://yieldguild.io,https://twitter.com/YieldGuild,https://discord.com/invite/ygg,Yield_Guild_Games,,https://drive.google.com/file/d/1_QjJoYYhEpBs9aCDYiRffdLetGkCLvvx/view?usp=sharing,,,Gaming,,,,
-Zapper,2,Deployment in Progress,Saemi Kim,Infrastructure - Analytics,"https://drive.google.com/open?id=1VDW-VE7mmZg-siw9v185FoQ0IiVauPqQ, https://drive.google.com/open?id=1nHi_OniNWO4pZ-RAuhnC1uJWvGAgkR7A",Track your DeFi and NFT portfolio and discover new onchain opportunities.,"Zapper is a social web3 explorer which allows users to follow the blockchain journey of other people in NFTs, DeFi and DAOs. Our mission to make the blockchain readable and accessible to everyone.",https://zapper.xyz/,https://twitter.com/zapper_fi,https://discord.gg/XSPSNqxBRX,Zapper,,https://drive.google.com/file/d/1nHi_OniNWO4pZ-RAuhnC1uJWvGAgkR7A/view?usp=sharing,,,Infrastructure,,,,
-Zellic,3,Deployment in Progress,Saemi Kim,Infrastructure - Security,https://drive.google.com/open?id=1R-P1An_muNiqNah8ams6LY04PO57gWWu,"Real audits, not rubber stamps.","Zellic is a blockchain security firm solving the most critical software assurance problems. Our audits prevent business-ending hacks. We have identified and eliminated critical vulnerabilities in top projects, including Sui and Aptos Core, Solana SPL, and LayerZero that endangered billions of dollars. Before Zellic, we founded the #1 CTF (competitive hacking) team in the world.",https://zellic.io/,https://twitter.com/zellic_io,,Zellic,,https://drive.google.com/file/d/1R-P1An_muNiqNah8ams6LY04PO57gWWu/view?usp=sharing,,,Infrastructure,,,,
-Ankr,1,,,DeFi - Swap,,"Liquid, secure, and easy to integrate.","Build on Web3 with a fast, reliable and distributed network of blockchain nodes",https://www.ankr.com/,https://twitter.com/ankr?ref_src=twsrc%5Egoogle%7Ctwcamp%5Eserp%7Ctwgr%5Eauthor,,Ankr,,https://drive.google.com/file/d/1p1DErskRPDZgE32vn3ZVBTpBMxP9YIs2/view?usp=sharing,,,DeFi,,,,
-Chainlink,1,Ready for Mainnet,Armand Khatri,Infrastructure - Oracle,https://chain.link/brand-assets,Connecting the world to blockchains,"Chainlink is the industry-standard Web3 services platform connecting the people, businesses, and data of today with the Web3 world of tomorrow.",https://chain.link/,https://twitter.com/chainlink,https://discord.com/invite/chainlink,Chainlink,,https://drive.google.com/file/d/1ZYNbpKG7tAzDdE-wfdNrEt68Ml3sxnst/view?usp=drive_link,,,Infrastructure,,,,
-DODO,2,Ready for Mainnet,Armand Khatri,DeFi - Swap,https://drive.google.com/open?id=1_XNuXu_ngPzx2DfHJLY0CPl7083ryFWq,Your onchain Liquidity Hub,"DODO is a decentralized trading platform that uses the innovative Proactive Market Maker (PMM) algorithm to provide efficient onchain liquidity for Web3 assets, making it easy for everyone to issue and trade these assets.",https://dodoex.io/en,https://twitter.com/BreederDodo,https://discord.com/invite/tyKReUK,Dodo,,https://drive.google.com/file/d/1_XNuXu_ngPzx2DfHJLY0CPl7083ryFWq/view?usp=drive_link,,,DeFi,,,,
+For more information, visit transak.com or follow us on x.com/transak",https://transak.com/,https://x.com/Transak,,Transak,,https://drive.google.com/file/d/1bzPTEgljWgLiY04qXgQvoyDMtIaY9R3S/view?usp=sharing,Requires resize from partner,Yes,Onramp,,,,
+Truflation,2,Deployment in Progress,Armand Khatri,DeFi,https://drive.google.com/open?id=15Jpqtmx7NVluwPC7Um1Fgdx5FcWiwsbi,"onchain, unbiased, economic data oracle","Truflation is revolutionizing financial insights with real-time, unbiased economic data through a decentralized onchain oracle",https://truflation.com/,https://x.com/truflation,,Truflation,,https://drive.google.com/file/d/1oP0bkfOZRfP5rHZYi3hZd5yDUQLv3IYh/view?usp=drive_link,Yes,,DeFi,,,,
+WalletConnect,2,Ready for Mainnet,Daryl Xu,Infrastructure Other,https://drive.google.com/open?id=14LosXoh2kOMosZuuJx58b3jEfES7W8iQ,The web3 communications protocol,"WalletConnect was founded with the mission to connect wallets and dapps, and the scope of our ambition has erupted along with the ecosystem. Today, WalletConnect is the communications protocol connecting web3, as we focus on assembling a messaging layer with our SDKs that enable authentication, push notifications, and wallet messaging. Our infrastructure and tools help developers build apps and expand experiences for the millions - and soon, billions - of users exploring the fast-growing world of web3.",https://www.walletconnect.com,https://x.com/WalletConnect,,WalletConnect,,https://drive.google.com/file/d/1C2nwY2rMZsCSALVH_src8oIjceCBjzZj/view?usp=sharing,,Yes,Infrastructure,,,,
+Words3,2,Ready for Mainnet,Daryl Xu,,https://drive.google.com/open?id=1RPLLkXf6lZ50y1W2BUrrbEz0tvhUfS7q,Web3's Word Game,Compete for ETH in a new crossword-style game... where every move is onchain!,https://words3.xyz,https://x.com/0xsmallbrain,https://discord.gg/q2zqXbt5kd,Words3,,https://drive.google.com/file/d/1RPLLkXf6lZ50y1W2BUrrbEz0tvhUfS7q/view?usp=sharing,,Yes,Gaming,,,,
+XDAO,3,Deployment in Progress,Saemi Kim,DAO,https://drive.google.com/open?id=15QmKeQENp9r5Kkh66MCb4UuclqfnkZ4l,A smart DAO tool for crypto entrepreneurs,XDAO is a versatile tool that empowers individuals and teams to effortlessly create a DAO.,https://xdao.app,https://x.com/xdaoapp,https://discord.gg/xdaoapp,XDAO,,https://drive.google.com/file/d/15QmKeQENp9r5Kkh66MCb4UuclqfnkZ4l/view?usp=sharing,,Yes,DAO,,,,
+Yield Guild Games,1,Ready for Mainnet,Daryl Xu,GameFi,https://drive.google.com/open?id=1_QjJoYYhEpBs9aCDYiRffdLetGkCLvvx,"Make friends, discover games, and level up.","Yield Guild Games (YGG) is the world’s first and biggest web3 gaming guild where players can enrich themselves as they find their community, discover games and level up together.",https://yieldguild.io,https://x.com/YieldGuild,https://discord.com/invite/ygg,Yield_Guild_Games,,https://drive.google.com/file/d/1_QjJoYYhEpBs9aCDYiRffdLetGkCLvvx/view?usp=sharing,,,Gaming,,,,
+Zapper,2,Deployment in Progress,Saemi Kim,Infrastructure - Analytics,"https://drive.google.com/open?id=1VDW-VE7mmZg-siw9v185FoQ0IiVauPqQ, https://drive.google.com/open?id=1nHi_OniNWO4pZ-RAuhnC1uJWvGAgkR7A",Track your DeFi and NFT portfolio and discover new onchain opportunities.,"Zapper is a social web3 explorer which allows users to follow the blockchain journey of other people in NFTs, DeFi and DAOs. Our mission to make the blockchain readable and accessible to everyone.",https://zapper.xyz/,https://x.com/zapper_fi,https://discord.gg/XSPSNqxBRX,Zapper,,https://drive.google.com/file/d/1nHi_OniNWO4pZ-RAuhnC1uJWvGAgkR7A/view?usp=sharing,,,Infrastructure,,,,
+Zellic,3,Deployment in Progress,Saemi Kim,Infrastructure - Security,https://drive.google.com/open?id=1R-P1An_muNiqNah8ams6LY04PO57gWWu,"Real audits, not rubber stamps.","Zellic is a blockchain security firm solving the most critical software assurance problems. Our audits prevent business-ending hacks. We have identified and eliminated critical vulnerabilities in top projects, including Sui and Aptos Core, Solana SPL, and LayerZero that endangered billions of dollars. Before Zellic, we founded the #1 CTF (competitive hacking) team in the world.",https://zellic.io/,https://x.com/zellic_io,,Zellic,,https://drive.google.com/file/d/1R-P1An_muNiqNah8ams6LY04PO57gWWu/view?usp=sharing,,,Infrastructure,,,,
+Ankr,1,,,DeFi - Swap,,"Liquid, secure, and easy to integrate.","Build on Web3 with a fast, reliable and distributed network of blockchain nodes",https://www.ankr.com/,https://x.com/ankr?ref_src=twsrc%5Egoogle%7Ctwcamp%5Eserp%7Ctwgr%5Eauthor,,Ankr,,https://drive.google.com/file/d/1p1DErskRPDZgE32vn3ZVBTpBMxP9YIs2/view?usp=sharing,,,DeFi,,,,
+Chainlink,1,Ready for Mainnet,Armand Khatri,Infrastructure - Oracle,https://chain.link/brand-assets,Connecting the world to blockchains,"Chainlink is the industry-standard Web3 services platform connecting the people, businesses, and data of today with the Web3 world of tomorrow.",https://chain.link/,https://x.com/chainlink,https://discord.com/invite/chainlink,Chainlink,,https://drive.google.com/file/d/1ZYNbpKG7tAzDdE-wfdNrEt68Ml3sxnst/view?usp=drive_link,,,Infrastructure,,,,
+DODO,2,Ready for Mainnet,Armand Khatri,DeFi - Swap,https://drive.google.com/open?id=1_XNuXu_ngPzx2DfHJLY0CPl7083ryFWq,Your onchain Liquidity Hub,"DODO is a decentralized trading platform that uses the innovative Proactive Market Maker (PMM) algorithm to provide efficient onchain liquidity for Web3 assets, making it easy for everyone to issue and trade these assets.",https://dodoex.io/en,https://x.com/BreederDodo,https://discord.com/invite/tyKReUK,Dodo,,https://drive.google.com/file/d/1_XNuXu_ngPzx2DfHJLY0CPl7083ryFWq/view?usp=drive_link,,,DeFi,,,,
ETHLas,2,Ready for Mainnet,Daryl Xu,GameFi,https://drive.google.com/open?id=1IboOKRMqIuR3CG3Ywvxk2xbGPMLLLZqJ,Engineering the Future of Gaming,"Ethlas engineers the future of gaming. The company builds games and infrastructure tools, unlocking the next level of Web3 experiences. They make Web3 more accessible and safe for both users and companies.
-Ethlas aspires to be the Epic Valve of Web3 – great companies who have built lasting impact both through the game titles they create, but also through the gaming infrastructure that they provide to other game companies.",https://ethlas.com/,https://twitter.com/Ethlas_Official,https://discord.com/invite/ethlas,Ethlas,,https://drive.google.com/file/d/1IboOKRMqIuR3CG3Ywvxk2xbGPMLLLZqJ/view?usp=drive_link,,,Gaming,,,,
-Manifold,2,,,NFT,https://drive.google.com/drive/folders/1uoIgcwQLTfwVMYpm6lLyx3sPISqTlj-e?usp=drive_link,Build your own personalized web3 creative platform and sell digital goods(NFTs),Manifold Studio allows you to build your own personalized web3 creative platform and sell digital goods(NFTs). The tools allow for the highest level of provenance and complete control of your work.,https://studio.manifold.xyz/,https://twitter.com/manifoldxyz,https://discord.com/invite/y7eyzgwEdJ,Manifold,,https://drive.google.com/file/d/1tncBvKIWczZBT5KRmxDO0YY0F06CsIb0/view?usp=sharing,,,NFT,,,,
-OpenSea,2,,,NFT,https://drive.google.com/file/d/1SdBHlD2N9kDDha3ZE8MOjGwe9Jn5nzZX/view?usp=drive_link,"A peer-to-peer marketplace for NFTs, rare digital items, and crypto collectibles.","OpenSea is a peer-to-peer marketplace for NFTs, rare digital items, and crypto collectibles. Buy, sell, auction, and discover rare digital art, blockchain game items, and more.",https://opensea.io/,https://twitter.com/opensea,https://discord.com/invite/opensea ,Opensea,,https://drive.google.com/file/d/1X6mWkLeok2Ui0FPOPEFFEYCpUJQOYI-s/view?usp=drive_link,,Yes,NFT,,,,
+Ethlas aspires to be the Epic Valve of Web3 – great companies who have built lasting impact both through the game titles they create, but also through the gaming infrastructure that they provide to other game companies.",https://ethlas.com/,https://x.com/Ethlas_Official,https://discord.com/invite/ethlas,Ethlas,,https://drive.google.com/file/d/1IboOKRMqIuR3CG3Ywvxk2xbGPMLLLZqJ/view?usp=drive_link,,,Gaming,,,,
+Manifold,2,,,NFT,https://drive.google.com/drive/folders/1uoIgcwQLTfwVMYpm6lLyx3sPISqTlj-e?usp=drive_link,Build your own personalized web3 creative platform and sell digital goods(NFTs),Manifold Studio allows you to build your own personalized web3 creative platform and sell digital goods(NFTs). The tools allow for the highest level of provenance and complete control of your work.,https://studio.manifold.xyz/,https://x.com/manifoldxyz,https://discord.com/invite/y7eyzgwEdJ,Manifold,,https://drive.google.com/file/d/1tncBvKIWczZBT5KRmxDO0YY0F06CsIb0/view?usp=sharing,,,NFT,,,,
+OpenSea,2,,,NFT,https://drive.google.com/file/d/1SdBHlD2N9kDDha3ZE8MOjGwe9Jn5nzZX/view?usp=drive_link,"A peer-to-peer marketplace for NFTs, rare digital items, and crypto collectibles.","OpenSea is a peer-to-peer marketplace for NFTs, rare digital items, and crypto collectibles. Buy, sell, auction, and discover rare digital art, blockchain game items, and more.",https://opensea.io/,https://x.com/opensea,https://discord.com/invite/opensea ,Opensea,,https://drive.google.com/file/d/1X6mWkLeok2Ui0FPOPEFFEYCpUJQOYI-s/view?usp=drive_link,,Yes,NFT,,,,
Monkeyleague,2,,,Gaming,,"Strategy-based sport game: build you team, compete against players earn MonkeyBucks $MBS","MonkeyLeague is a mobile soccer game that requires the strategic thinking of a general manager, a coach's tactical game plan, and a soccer player's skills.",,,,Monkeyleague,,https://drive.google.com/file/d/16ZvjMr_seQyMA4hVveuVWfx7h3n97Y7V/view?usp=drive_link,,,Gaming,,,,
-Uniswap,2,,,DeFi,https://drive.google.com/drive/folders/1xVOy1-vra82HEBIY8lR5HnoaSCu-t7mB,Uniswap is the largest is the largest marketplace for onchain digital assets,"The Uniswap Protocol is the largest decentralized exchange with over $1.6T in trading volume. Uniswap Labs builds products that let you buy, sell, and use your self custodied digital assets in a safe, simple, and secure way.",http://uniswap.com/,https://twitter.com/Uniswap,https://discord.com/invite/FCfyBSbCU5,Uniswap,,https://drive.google.com/file/d/1uLRLqfwxoCY_5Ldc8HpA1U2IOnjavcJR/view?usp=drive_link,,,DeFi,,,,
-Unlock Protocol,2,Ready for Mainnet,Viktoriya Hying,NFT - Marketplace,https://drive.google.com/open?id=1wXkHpEsNnmFKwaDvshx2oi4Z399NfNN5,Smart contracts built specifically for memberships and subscriptions,"Unlock is an open-source, collectively owned, community-governed, peer-to-peer system that creates time-based memberships",https://unlock-protocol.com/,https://twitter.com/UnlockProtocol,https://discord.gg/VnZQUCs4,Unlock Protocol,,https://drive.google.com/file/d/1wXkHpEsNnmFKwaDvshx2oi4Z399NfNN5/view?usp=drive_link,,Yes,NFT,,,,
-AppliedPrimate,2,Ready for Mainnet,Daryl Xu,GameFi,https://drive.google.com/open?id=1-di6fZvUL7HFX2YKL754-KgvQHiO-6T1,For All Apekind!,"AppliedPrimate Megaforce Sentinel Collectible Card Game is an onchain PVP game featuring AppliedPrimate Sentinel NFTs that was designed under advisement from Richard Garfield, creator of MAGIC: THE GATHERING.",www.appliedprimate.com,https://twitter.com/AppliedPrimate?s=20,https://discord.gg/appliedprimate,AppliedPrimate,,https://drive.google.com/file/d/1hBsLh_z_lHRKENcJ6nakQccOu-9qcCp9/view?usp=drive_link,,,Gaming,,,,
+Uniswap,2,,,DeFi,https://drive.google.com/drive/folders/1xVOy1-vra82HEBIY8lR5HnoaSCu-t7mB,Uniswap is the largest is the largest marketplace for onchain digital assets,"The Uniswap Protocol is the largest decentralized exchange with over $1.6T in trading volume. Uniswap Labs builds products that let you buy, sell, and use your self custodied digital assets in a safe, simple, and secure way.",http://uniswap.com/,https://x.com/Uniswap,https://discord.com/invite/FCfyBSbCU5,Uniswap,,https://drive.google.com/file/d/1uLRLqfwxoCY_5Ldc8HpA1U2IOnjavcJR/view?usp=drive_link,,,DeFi,,,,
+Unlock Protocol,2,Ready for Mainnet,Viktoriya Hying,NFT - Marketplace,https://drive.google.com/open?id=1wXkHpEsNnmFKwaDvshx2oi4Z399NfNN5,Smart contracts built specifically for memberships and subscriptions,"Unlock is an open-source, collectively owned, community-governed, peer-to-peer system that creates time-based memberships",https://unlock-protocol.com/,https://x.com/UnlockProtocol,https://discord.gg/VnZQUCs4,Unlock Protocol,,https://drive.google.com/file/d/1wXkHpEsNnmFKwaDvshx2oi4Z399NfNN5/view?usp=drive_link,,Yes,NFT,,,,
+AppliedPrimate,2,Ready for Mainnet,Daryl Xu,GameFi,https://drive.google.com/open?id=1-di6fZvUL7HFX2YKL754-KgvQHiO-6T1,For All Apekind!,"AppliedPrimate Megaforce Sentinel Collectible Card Game is an onchain PVP game featuring AppliedPrimate Sentinel NFTs that was designed under advisement from Richard Garfield, creator of MAGIC: THE GATHERING.",www.appliedprimate.com,https://x.com/AppliedPrimate?s=20,https://discord.gg/appliedprimate,AppliedPrimate,,https://drive.google.com/file/d/1hBsLh_z_lHRKENcJ6nakQccOu-9qcCp9/view?usp=drive_link,,,Gaming,,,,
DIA,3,Ready for Mainnet,Armand Khatri,Infrastructure - Oracle,https://drive.google.com/open?id=1do0AcQxUPNXs6Gm1mkjbJuuZjL6hsIET,Fully Customizable Cross-Chan Oracles,"DIA redefines oracles on 30+ L1/L2s: Fully customizable, unmet asset coverage 100% transparent. Enabling new primitives for DeFi, NFTfi, and GameFi.
-DIA's data feeds are fully customized with regard to the mix of sources and methodologies, resulting in tailor-made, high resilience feeds and thereby setting a new paradigm for oracles.",https://www.diadata.org/,https://twitter.com/DIAdata_org,https://discord.com/invite/zFmXtPFgQj?utm_source=Website&utm_medium=side+menu,Dia,,https://drive.google.com/file/d/1do0AcQxUPNXs6Gm1mkjbJuuZjL6hsIET/view?usp=sharing,,Yes,Infrastructure,,,,
-Faraway,2,Ready for Mainnet,Daryl Xu,GameFi,https://drive.google.com/open?id=1mMZvFJusp45fJAJr7_sQykcxD9BHHWJm,Building player-driven gaming ecosystems,"Faraway is an open economy dev studio and game publisher specializing in blockchain-enabled games including Mini Royale: Nations, Serum City, and more.",https://faraway.com,https://twitter.com/farawaygg,https://discord.gg/faraway,Faraway,,https://drive.google.com/file/d/1mMZvFJusp45fJAJr7_sQykcxD9BHHWJm/view?usp=sharing,,,Gaming,,,,
-Frame,3,Ready for Mainnet,Daryl Xu,Crypto Wallet,https://drive.google.com/open?id=1QBRypPOAKkFRrEuQhNEaNWyPXHKZdKRQ,Modern web3 for Desktop,"System-wide web3 wallet for macOS, Windows, and Linux. Seamlessly access your web3 accounts from any browser, command-line, or native dapp.",https://frame.sh,https://twitter.com/0xFrame,https://discord.gg/rr4Yr3JkPq,Frame,,https://drive.google.com/file/d/1QBRypPOAKkFRrEuQhNEaNWyPXHKZdKRQ/view?usp=sharing,Resize,,Wallet,,,,
-Game7,2,Ready for Mainnet,Daryl Xu,GameFi,https://drive.google.com/open?id=1IPtZVgrAG3R7x0VbX-SvghXltKZ4dM5s,A community formed to accelerate the adoption of Web3 gaming,"We are the voice at the forefront of the industry turning Web3 technology into tangible, real-world solutions for gaming. By supporting open-source software, diversity, education, and events we rally behind a core mission to solve Web3 gaming problems.",https://game7.io/,https://twitter.com/G7_DAO,discord.gg/g7dao,Game7,,https://drive.google.com/file/d/1IPtZVgrAG3R7x0VbX-SvghXltKZ4dM5s/view?usp=sharing,,,Gaming,,,,
+DIA's data feeds are fully customized with regard to the mix of sources and methodologies, resulting in tailor-made, high resilience feeds and thereby setting a new paradigm for oracles.",https://www.diadata.org/,https://x.com/DIAdata_org,https://discord.com/invite/zFmXtPFgQj?utm_source=Website&utm_medium=side+menu,Dia,,https://drive.google.com/file/d/1do0AcQxUPNXs6Gm1mkjbJuuZjL6hsIET/view?usp=sharing,,Yes,Infrastructure,,,,
+Faraway,2,Ready for Mainnet,Daryl Xu,GameFi,https://drive.google.com/open?id=1mMZvFJusp45fJAJr7_sQykcxD9BHHWJm,Building player-driven gaming ecosystems,"Faraway is an open economy dev studio and game publisher specializing in blockchain-enabled games including Mini Royale: Nations, Serum City, and more.",https://faraway.com,https://x.com/farawaygg,https://discord.gg/faraway,Faraway,,https://drive.google.com/file/d/1mMZvFJusp45fJAJr7_sQykcxD9BHHWJm/view?usp=sharing,,,Gaming,,,,
+Frame,3,Ready for Mainnet,Daryl Xu,Crypto Wallet,https://drive.google.com/open?id=1QBRypPOAKkFRrEuQhNEaNWyPXHKZdKRQ,Modern web3 for Desktop,"System-wide web3 wallet for macOS, Windows, and Linux. Seamlessly access your web3 accounts from any browser, command-line, or native dapp.",https://frame.sh,https://x.com/0xFrame,https://discord.gg/rr4Yr3JkPq,Frame,,https://drive.google.com/file/d/1QBRypPOAKkFRrEuQhNEaNWyPXHKZdKRQ/view?usp=sharing,Resize,,Wallet,,,,
+Game7,2,Ready for Mainnet,Daryl Xu,GameFi,https://drive.google.com/open?id=1IPtZVgrAG3R7x0VbX-SvghXltKZ4dM5s,A community formed to accelerate the adoption of Web3 gaming,"We are the voice at the forefront of the industry turning Web3 technology into tangible, real-world solutions for gaming. By supporting open-source software, diversity, education, and events we rally behind a core mission to solve Web3 gaming problems.",https://game7.io/,https://x.com/G7_DAO,discord.gg/g7dao,Game7,,https://drive.google.com/file/d/1IPtZVgrAG3R7x0VbX-SvghXltKZ4dM5s/view?usp=sharing,,,Gaming,,,,
Goldsky,3,(Closed Won) Deployed to Mainnet,Gavynn Arteaga,Infrastructure - Analytics,https://drive.google.com/open?id=1qLHUTWxck36-k7I0qrYLUXu2F-mTRuAm,"Realtime Onchain Data, Streamed Anywhere You Need It.","Web3's Realtime Data Platform.
-Build powerful dApps faster with premium blockchain indexing, instant subgraphs, and custom data streaming pipelines.",https://goldsky.com/,https://twitter.com/goldskyio,,Goldsky,,https://drive.google.com/file/d/1qLHUTWxck36-k7I0qrYLUXu2F-mTRuAm/view?usp=sharing,Requires resize from partner,,Infrastructure,,,,
-Landtorn,2,Deployment in Progress,Daryl Xu,GameFi,https://drive.google.com/open?id=1bRDutHm3zII3kk3cPWSMT3Xay-NGGmeH,"The BASE gaming ecosystem, building a decentralized EPIC Games.","LandTorn is a platform hosting BASE native games. Play, compete, trade and win. Initially powered by multiple games around the TORN IP and NFT system.",https://landtorn.com/lorak,https://twitter.com/Landtorn,https://discord.gg/G5sK6gTP,Lantorn,,https://drive.google.com/file/d/1bRDutHm3zII3kk3cPWSMT3Xay-NGGmeH/view,,Yes,Gaming,,,,
-Maverick Protocol,2,Ready for Mainnet,Armand Khatri,DeFi - Swap,https://drive.google.com/open?id=10dH5y8E5BfeUbTUAPTFrPARtPXyRtmRH,"DeFi infrastructure provider focused on increasing industry efficiency, powered by Maverick AMM.","Maverick Protocol is eliminating inefficiency from DeFi by helping users put liquidity where it can do the most work. Backed by Founders Fund, Pantera Capital, Coinbase Ventures, Circle Ventures, etc",https://app.mav.xyz/pools,https://twitter.com/mavprotocol,https://discord.gg/mavprotocol,Maverick Protocol,,https://drive.google.com/file/d/10dH5y8E5BfeUbTUAPTFrPARtPXyRtmRH/view?usp=sharing,,,DeFi,,,,
-Nouns Builder,3,Ready for Mainnet,Viktoriya Hying,NFT - Creator,https://drive.google.com/open?id=16JnstiEyUR11oaxbXpP64Wa0IEMov8AG,Create Nounish DAOs.,"Governed by BuilderDAO, Nouns Builder is a tool lets you create Nounish DAOs easily. Build and empower your community with onchain governance and treasury.",https://nouns.build,https://twitter.com/nounsbuilder,https://discord.gg/C6Zmt8aakt,Nouns Builder,,https://drive.google.com/file/d/16JnstiEyUR11oaxbXpP64Wa0IEMov8AG/view,,,NFT,,,,
-Onboard,1,Ready for Mainnet,Daryl Xu,Onramp,"https://drive.google.com/open?id=16Vgs33sJSr2rxRX3zIPajbzuz7ERqgmg, https://drive.google.com/open?id=1rMKRqHqKHRdtT-XTS2ZkqleHYbJ9ZRcU",Money should be borderless. It is with Onboard.,"The simplest and most secure self-custody wallet to convert digital assets to local currency in minutes and spend your crypto anytime, anywhere.",https://onboard.xyz,https://twitter.com/OnboardWallet,,Onboard,,https://drive.google.com/file/d/16Vgs33sJSr2rxRX3zIPajbzuz7ERqgmg/view?usp=sharing,,,Onramp,,,,
-Photo Finish™ LIVE,2,Ready for Mainnet,Daryl Xu,GameFi,https://drive.google.com/open?id=1KKYJnMXFwc01ZQ10sMjSE01OeyHqqPD2,Virtual horse racing for real money,Fulfill your lifelong fantasy of winning the Kentucky Derby! Experience the thrill of owning a race horse without any of the hassle.,https://photofinish.live,https://twitter.com/photofinishgame,discord.gg/tVhBawVeb9,Photo_Finish,,https://drive.google.com/file/d/1KKYJnMXFwc01ZQ10sMjSE01OeyHqqPD2/view?usp=sharing,,,Gaming,,,,
-Pixelmon,2,Initiated,Daryl Xu,GameFi,https://drive.google.com/open?id=1ru_cdjKm1dTkHP_974sWfAyxKdTLAWbv,The First Truly Decentralized IP,Building the First Truly Decentralized IP starting with a Multiplayer Open World Adventure and Monster Combat Arena.,https://www.pixelmon.ai/,https://twitter.com/Pixelmon,discord.gg/thepixelmon,Pixelmon,,https://drive.google.com/file/d/1ru_cdjKm1dTkHP_974sWfAyxKdTLAWbv/view?usp=sharing,,,Gaming,,,,
-Safe Wallet,1,Ready for Mainnet,Daryl Xu,Crypto Wallet,,Safe{Wallet}: The most trusted Smart Wallet; Safe{Core}: Modular Account Abstraction stack for developers,Safe is the most trusted platform to manage digital assets on Ethereum.,https://safe.global/,https://twitter.com/safe,,Safe Wallet,,https://drive.google.com/file/d/1TTgJWmY1rJmTc1hXYEC26xxtSsk5uAdc/view?usp=sharing,,,Wallet,,,,
-Stargate Finance,2,Ready for Mainnet,Armand Khatri,Bridge,https://drive.google.com/open?id=1Twi50Ct0WnfZq9T80PvG46kTlst2cNdf,Transfer native assets cross-chain,Stargate is a fully composable liquidity transport protocol that lives at the heart of Omnichain DeFi,https://stargate.finance/,https://twitter.com/StargateFinance,https://stargate.finance/discord,Stargate Finance,,https://drive.google.com/file/d/1Twi50Ct0WnfZq9T80PvG46kTlst2cNdf/view?usp=sharing,crop,,Bridge,,,,
-SushiSwap,2,,,DeFi,,Sushi (sushi.com) is a leading multi-chain decentralized exchange (DEX),"Sushi is a leading multi-chain decentralized exchange (DEX) deployed across 25+ chains and featuring unique cross-chain swaps via SushiXSwap. Focusing on seamless user experiences, innovative trading, and enhanced liquidity provisions, Sushi is committed to being a community-built, open-source ecosystem of all the DeFi tools you need.",https://www.sushi.com/,https://twitter.com/SushiSwap,,Sushi,,https://drive.google.com/file/d/130H836p3Cx5Wv-pPb-O8l-Inr3gvJuWw/view?usp=drive_link,,,,,,,
+Build powerful dApps faster with premium blockchain indexing, instant subgraphs, and custom data streaming pipelines.",https://goldsky.com/,https://x.com/goldskyio,,Goldsky,,https://drive.google.com/file/d/1qLHUTWxck36-k7I0qrYLUXu2F-mTRuAm/view?usp=sharing,Requires resize from partner,,Infrastructure,,,,
+Landtorn,2,Deployment in Progress,Daryl Xu,GameFi,https://drive.google.com/open?id=1bRDutHm3zII3kk3cPWSMT3Xay-NGGmeH,"The BASE gaming ecosystem, building a decentralized EPIC Games.","LandTorn is a platform hosting BASE native games. Play, compete, trade and win. Initially powered by multiple games around the TORN IP and NFT system.",https://landtorn.com/lorak,https://x.com/Landtorn,https://discord.gg/G5sK6gTP,Lantorn,,https://drive.google.com/file/d/1bRDutHm3zII3kk3cPWSMT3Xay-NGGmeH/view,,Yes,Gaming,,,,
+Maverick Protocol,2,Ready for Mainnet,Armand Khatri,DeFi - Swap,https://drive.google.com/open?id=10dH5y8E5BfeUbTUAPTFrPARtPXyRtmRH,"DeFi infrastructure provider focused on increasing industry efficiency, powered by Maverick AMM.","Maverick Protocol is eliminating inefficiency from DeFi by helping users put liquidity where it can do the most work. Backed by Founders Fund, Pantera Capital, Coinbase Ventures, Circle Ventures, etc",https://app.mav.xyz/pools,https://x.com/mavprotocol,https://discord.gg/mavprotocol,Maverick Protocol,,https://drive.google.com/file/d/10dH5y8E5BfeUbTUAPTFrPARtPXyRtmRH/view?usp=sharing,,,DeFi,,,,
+Nouns Builder,3,Ready for Mainnet,Viktoriya Hying,NFT - Creator,https://drive.google.com/open?id=16JnstiEyUR11oaxbXpP64Wa0IEMov8AG,Create Nounish DAOs.,"Governed by BuilderDAO, Nouns Builder is a tool lets you create Nounish DAOs easily. Build and empower your community with onchain governance and treasury.",https://nouns.build,https://x.com/nounsbuilder,https://discord.gg/C6Zmt8aakt,Nouns Builder,,https://drive.google.com/file/d/16JnstiEyUR11oaxbXpP64Wa0IEMov8AG/view,,,NFT,,,,
+Onboard,1,Ready for Mainnet,Daryl Xu,Onramp,"https://drive.google.com/open?id=16Vgs33sJSr2rxRX3zIPajbzuz7ERqgmg, https://drive.google.com/open?id=1rMKRqHqKHRdtT-XTS2ZkqleHYbJ9ZRcU",Money should be borderless. It is with Onboard.,"The simplest and most secure self-custody wallet to convert digital assets to local currency in minutes and spend your crypto anytime, anywhere.",https://onboard.xyz,https://x.com/OnboardWallet,,Onboard,,https://drive.google.com/file/d/16Vgs33sJSr2rxRX3zIPajbzuz7ERqgmg/view?usp=sharing,,,Onramp,,,,
+Photo Finish™ LIVE,2,Ready for Mainnet,Daryl Xu,GameFi,https://drive.google.com/open?id=1KKYJnMXFwc01ZQ10sMjSE01OeyHqqPD2,Virtual horse racing for real money,Fulfill your lifelong fantasy of winning the Kentucky Derby! Experience the thrill of owning a race horse without any of the hassle.,https://photofinish.live,https://x.com/photofinishgame,discord.gg/tVhBawVeb9,Photo_Finish,,https://drive.google.com/file/d/1KKYJnMXFwc01ZQ10sMjSE01OeyHqqPD2/view?usp=sharing,,,Gaming,,,,
+Pixelmon,2,Initiated,Daryl Xu,GameFi,https://drive.google.com/open?id=1ru_cdjKm1dTkHP_974sWfAyxKdTLAWbv,The First Truly Decentralized IP,Building the First Truly Decentralized IP starting with a Multiplayer Open World Adventure and Monster Combat Arena.,https://www.pixelmon.ai/,https://x.com/Pixelmon,discord.gg/thepixelmon,Pixelmon,,https://drive.google.com/file/d/1ru_cdjKm1dTkHP_974sWfAyxKdTLAWbv/view?usp=sharing,,,Gaming,,,,
+Safe Wallet,1,Ready for Mainnet,Daryl Xu,Crypto Wallet,,Safe{Wallet}: The most trusted Smart Wallet; Safe{Core}: Modular Account Abstraction stack for developers,Safe is the most trusted platform to manage digital assets on Ethereum.,https://safe.global/,https://x.com/safe,,Safe Wallet,,https://drive.google.com/file/d/1TTgJWmY1rJmTc1hXYEC26xxtSsk5uAdc/view?usp=sharing,,,Wallet,,,,
+Stargate Finance,2,Ready for Mainnet,Armand Khatri,Bridge,https://drive.google.com/open?id=1Twi50Ct0WnfZq9T80PvG46kTlst2cNdf,Transfer native assets cross-chain,Stargate is a fully composable liquidity transport protocol that lives at the heart of Omnichain DeFi,https://stargate.finance/,https://x.com/StargateFinance,https://stargate.finance/discord,Stargate Finance,,https://drive.google.com/file/d/1Twi50Ct0WnfZq9T80PvG46kTlst2cNdf/view?usp=sharing,crop,,Bridge,,,,
+SushiSwap,2,,,DeFi,,Sushi (sushi.com) is a leading multi-chain decentralized exchange (DEX),"Sushi is a leading multi-chain decentralized exchange (DEX) deployed across 25+ chains and featuring unique cross-chain swaps via SushiXSwap. Focusing on seamless user experiences, innovative trading, and enhanced liquidity provisions, Sushi is committed to being a community-built, open-source ecosystem of all the DeFi tools you need.",https://www.sushi.com/,https://x.com/SushiSwap,,Sushi,,https://drive.google.com/file/d/130H836p3Cx5Wv-pPb-O8l-Inr3gvJuWw/view?usp=drive_link,,,,,,,
TBTC,2,Deployment in Progress,Gavynn Arteaga,Bridge,"https://drive.google.com/open?id=1-kuZSCVzN1CGsd773KLSOekUaXwJDvqC, https://drive.google.com/open?id=14oPacoFEjGo6ZI8ol9ritMFZI5dlO_7f, https://drive.google.com/open?id=1_duHtfQwANEJ69rMEhnWn0muwifBpX66, https://drive.google.com/open?id=1Dd_AuoUkMQgoB5007KR-g1srSLNClay0, https://drive.google.com/open?id=1gABdGevu-2M694YH7wa9dgQnerFCINPv",Decentralized wBTC,"tBTC is a decentralized, permissionless, and scalable Bitcoin equivalent that allows users to access the Ethereum and the cross chain DeFi ecosystem. Each tBTC token is fully backed by 1 BTC held in reserve.
Threshold Network, the builders of tBTC, replaces centralized intermediaries with a randomly selected group of node operators who secure users’ deposited Bitcoin through threshold cryptography.
-Visit https://threshold.network/ for more information.",https://dashboard.threshold.network/tBTC/mint,https://twitter.com/TheTNetwork,https://discord.com/invite/Threshold,TBTC,,https://drive.google.com/file/d/1-kuZSCVzN1CGsd773KLSOekUaXwJDvqC/view?usp=sharing,,Yes,Bridge,,,,
-Trust Wallet,3,Initiated,Daryl Xu,Crypto Wallet,https://drive.google.com/open?id=1C4ogF0iuI38lAqCRC9v6ST09gb8gjNJ9,The most trusted & secure crypto wallet,"Trust Wallet is a multi-chain, self-custody wallet with 60M+ users. Supporting 70+ chains & 8M+ digital assets; you can manage crypto & NFTs, explore DeFi and connect to dApps safely & securely.",https://trustwallet.com/,https://twitter.com/trustwallet,,Trust Wallet,,https://drive.google.com/file/d/1C4ogF0iuI38lAqCRC9v6ST09gb8gjNJ9/view?usp=sharing,,Yes,Wallet,,,,
-Prophouse,2,,,DAO,,Reward builders through fun & easy funding rounds,Prop House is public infrastructure by Nouns DAO that helps internet communities incentivize ecosystem development.,https://prop.house,https://twitter.com/nounsprophouse,,Prop House,,https://drive.google.com/file/d/1UL2WZdxIvWb7zH1O4TgVsbIxcmxhejlu/view?usp=sharing,,,DAO,,,,
-Mint.fun,2,,,NFT,,Mint new NFT projects safely from one interface,"The fastest, safest, and most rewarding way to mint all the top new NFT projects.",https://mint.fun/feed/trending,https://twitter.com/mintdotfun,,mint.fun,,https://drive.google.com/file/d/1wPrklCZySTJmAG3EvjisflvYgpoHzWax/view?usp=sharing,,,NFT,,,,
-Harvest Finance,2,,,DeFi,https://drive.google.com/open?id=1F6vsdLyRGTX6xqeUXtmJBy3O0qAE4BaE,Yield Farming Made Easy,"Taking advantage of the yield opportunities in DeFi can be a costly process in terms of time, risk and gas costs. Harvest Finance does the hard work of scouring the fields of DeFi for the best and safest yields, brings them to a single UX, and saves you a ton on gas fees with it's autocompounding feature. See the best yields that DeFi has to offer, set your crypto to work and let Harvest handle the rest!",https://harvest.finance,https://twitter.com/harvest_finance,https://discord.gg/xHXe3tYjPY,Harvest Finance,,https://drive.google.com/file/d/1F6vsdLyRGTX6xqeUXtmJBy3O0qAE4BaE/view?usp=sharing,,,DeFi,,,,
-Zora,2,,,NFT,,"Buy, sell, and curate NFTs","ZORA is a universal media registry protocol. It’s a way for creators to publish creative media, earn money on their work, and have others build and share what they create.",https://zora.co/,https://twitter.com/ourZORA,https://discord.com/invite/zora-753127928434393128,Zora,,https://drive.google.com/file/d/1wSwl0H0hVEtzIONjm6GblbrautzwcryP/view?usp=sharing,,,NFT,,,,
+Visit https://threshold.network/ for more information.",https://dashboard.threshold.network/tBTC/mint,https://x.com/TheTNetwork,https://discord.com/invite/Threshold,TBTC,,https://drive.google.com/file/d/1-kuZSCVzN1CGsd773KLSOekUaXwJDvqC/view?usp=sharing,,Yes,Bridge,,,,
+Trust Wallet,3,Initiated,Daryl Xu,Crypto Wallet,https://drive.google.com/open?id=1C4ogF0iuI38lAqCRC9v6ST09gb8gjNJ9,The most trusted & secure crypto wallet,"Trust Wallet is a multi-chain, self-custody wallet with 60M+ users. Supporting 70+ chains & 8M+ digital assets; you can manage crypto & NFTs, explore DeFi and connect to dApps safely & securely.",https://trustwallet.com/,https://x.com/trustwallet,,Trust Wallet,,https://drive.google.com/file/d/1C4ogF0iuI38lAqCRC9v6ST09gb8gjNJ9/view?usp=sharing,,Yes,Wallet,,,,
+Prophouse,2,,,DAO,,Reward builders through fun & easy funding rounds,Prop House is public infrastructure by Nouns DAO that helps internet communities incentivize ecosystem development.,https://prop.house,https://x.com/nounsprophouse,,Prop House,,https://drive.google.com/file/d/1UL2WZdxIvWb7zH1O4TgVsbIxcmxhejlu/view?usp=sharing,,,DAO,,,,
+Mint.fun,2,,,NFT,,Mint new NFT projects safely from one interface,"The fastest, safest, and most rewarding way to mint all the top new NFT projects.",https://mint.fun/feed/trending,https://x.com/mintdotfun,,mint.fun,,https://drive.google.com/file/d/1wPrklCZySTJmAG3EvjisflvYgpoHzWax/view?usp=sharing,,,NFT,,,,
+Harvest Finance,2,,,DeFi,https://drive.google.com/open?id=1F6vsdLyRGTX6xqeUXtmJBy3O0qAE4BaE,Yield Farming Made Easy,"Taking advantage of the yield opportunities in DeFi can be a costly process in terms of time, risk and gas costs. Harvest Finance does the hard work of scouring the fields of DeFi for the best and safest yields, brings them to a single UX, and saves you a ton on gas fees with it's autocompounding feature. See the best yields that DeFi has to offer, set your crypto to work and let Harvest handle the rest!",https://harvest.finance,https://x.com/harvest_finance,https://discord.gg/xHXe3tYjPY,Harvest Finance,,https://drive.google.com/file/d/1F6vsdLyRGTX6xqeUXtmJBy3O0qAE4BaE/view?usp=sharing,,,DeFi,,,,
+Zora,2,,,NFT,,"Buy, sell, and curate NFTs","ZORA is a universal media registry protocol. It’s a way for creators to publish creative media, earn money on their work, and have others build and share what they create.",https://zora.co/,https://x.com/ourZORA,https://discord.com/invite/zora-753127928434393128,Zora,,https://drive.google.com/file/d/1wSwl0H0hVEtzIONjm6GblbrautzwcryP/view?usp=sharing,,,NFT,,,,
FWB,1,,,Social,,,"Friends With Benefits (FWB) is a community of builders, creatives, and investors who believe in the power of social tokens and the communities they create.",,,,FWB,,https://drive.google.com/file/d/1XILm2lSTQ20bjKEeih_0ItkABTCAMkSH/view?usp=drive_link,,,Social,,,,
Indelible Labs,1,,,NFT,,,,,,,Indelible Labs,,https://drive.google.com/file/d/1CCXih0HVsiwVu5sDi5tM938eme9YSpD0/view?usp=sharing,,,NFT,,,,
OAK,1,,,Social,,,,,,,OAK,,,,,Social,,,,
@@ -179,4 +179,4 @@ fini,1,,,Social,,,,,,,fini,,,,,Social,,,,
Blackbird,1,,,Social,,,,,,,Blackbird,,,,,Social,,,,
Sablier,2,,,DeFi,https://drive.google.com/file/d/1pzUfkygtWAF4WlTn8RyGeUJx-iJqRpY9/view?usp=sharing,Stream tokens by the second,"Sablier is a token streaming protocol that enables by-the-second payments in web3. DAOs and businesses use it for vesting, payroll, airdrops, and more.
-The Sablier protocol features a streaming model Lockup, in which the sender locks up a specified amount of ERC-20 tokens in a contract. The contract progressively allocates the funds to the designated recipient, who can access them as they become available over time. The streaming rate is influenced by various factors, including the start and end times, as well as the total amount of assets locked up.",https://sablier.com,https://twitter.com/Sablier,https://discord.com/invite/bSwRCwWRsT,Sablier,,https://drive.google.com/file/d/1pzUfkygtWAF4WlTn8RyGeUJx-iJqRpY9/view?usp=sharing,,,,,,,
+The Sablier protocol features a streaming model Lockup, in which the sender locks up a specified amount of ERC-20 tokens in a contract. The contract progressively allocates the funds to the designated recipient, who can access them as they become available over time. The streaming rate is influenced by various factors, including the start and end times, as well as the total amount of assets locked up.",https://sablier.com,https://x.com/Sablier,https://discord.com/invite/bSwRCwWRsT,Sablier,,https://drive.google.com/file/d/1pzUfkygtWAF4WlTn8RyGeUJx-iJqRpY9/view?usp=sharing,,,,,,,
diff --git a/apps/web/src/components/BuilderNft/MintedSocialShare.tsx b/apps/web/src/components/BuilderNft/MintedSocialShare.tsx
index d043029346..64dc378cd6 100644
--- a/apps/web/src/components/BuilderNft/MintedSocialShare.tsx
+++ b/apps/web/src/components/BuilderNft/MintedSocialShare.tsx
@@ -28,7 +28,7 @@ export function MintedSocialShare() {
diff --git a/apps/web/src/data/ecosystem.json b/apps/web/src/data/ecosystem.json
index f9124a5196..f5d52e5ab4 100644
--- a/apps/web/src/data/ecosystem.json
+++ b/apps/web/src/data/ecosystem.json
@@ -1777,7 +1777,7 @@
{
"name": "DeForm",
"url": "https://deform.cc/",
- "description": "DeForm is the most beautiful and easiest to use web3 form builder. Get verified wallet addresses, onchain data lookups, Twitter/Discord/Telegram accounts, and talk to your community!",
+ "description": "DeForm is the most beautiful and easiest to use web3 form builder. Get verified wallet addresses, onchain data lookups, X/Discord/Telegram accounts, and talk to your community!",
"imageUrl": "/images/partners/deform.webp",
"category": "infra",
"subcategory": "identity"
@@ -1937,7 +1937,7 @@
{
"name": "Transak",
"url": "https://transak.com/",
- "description": "Transak is a global web3 payment and onboarding infrastructure provider, facilitating seamless transitions between traditional finance and crypto assets.\n\nWeb3 platforms using Transak can embed the best way to onboard users by enabling them to buy or sell crypto assets from 150+ countries, as Transak abstracts away the complexity of user KYC, risk monitoring, compliance, payment methods and customer support.\n\nTransak’s product suite includes robust fiat-to-crypto services (On/Off-Ramps), a fiat-to-smart-contract solution (Transak One), and a fiat-to-NFT checkout solution.\n\nAs a regulated, non-custodial payments layer, Transak supports onboarding to 160+ crypto assets across 75+ blockchains. Trusted by over 350+ applications, including MetaMask and Coinbase Wallet, Transak is making web3 applications more accessible.\n\nFor more information, visit transak.com or follow us on twitter.com/transak",
+ "description": "Transak is a global web3 payment and onboarding infrastructure provider, facilitating seamless transitions between traditional finance and crypto assets.\n\nWeb3 platforms using Transak can embed the best way to onboard users by enabling them to buy or sell crypto assets from 150+ countries, as Transak abstracts away the complexity of user KYC, risk monitoring, compliance, payment methods and customer support.\n\nTransak’s product suite includes robust fiat-to-crypto services (On/Off-Ramps), a fiat-to-smart-contract solution (Transak One), and a fiat-to-NFT checkout solution.\n\nAs a regulated, non-custodial payments layer, Transak supports onboarding to 160+ crypto assets across 75+ blockchains. Trusted by over 350+ applications, including MetaMask and Coinbase Wallet, Transak is making web3 applications more accessible.\n\nFor more information, visit transak.com or follow us on x.com/transak",
"imageUrl": "/images/partners/transak.webp",
"category": "onramp",
"subcategory": "fiat on-ramp"