Break asset barriers. Simplify cross-chain access. Let AI handle Web3.
Web3 promises decentralization, but today's experience is fragmented and difficult:
-
🌍 Border Barriers of Assets
Global users face restrictions in accessing real-world assets due to geographical and regulatory boundaries. -
🔐 Fragmented Key Management
Managing private keys across multiple chains is confusing, insecure, and a major hurdle for onboarding Web2 users. -
🧠 Complex UX of Web3 dApps
Users are forced to juggle between wallets, chains, and keys. What if they could simply “ask” in natural language?
NEAR.AI brings together AI Agents, Tokenization, and Cross-Chain Signatures into a seamless Web3 interface:
Real-world assets like stocks are digitized into tokens (e.g., tokenized Apple stock).
Use your NEAR wallet to interact with Ethereum, Solana, and beyond. One key, many chains — no need to manage multiple wallets.
Powered by ElizaOS, users describe actions in natural language (e.g., “Mint 1 Apple stock token on Ethereum”), and the AI agent executes it behind the scenes.
Layer | Tech Used | Description |
---|---|---|
🤖 AI Agent | ElizaOS | NLP-driven autonomous agent to interpret and act on user queries. |
🔐 Blockchain SDK | NEAR SDK | Core layer for user authentication and signature management. |
🔀 Cross-Chain | NEAR Cross-Chain Signatures | Enables secure interaction with multiple chains from one NEAR wallet. |
🧠 Oracle | Chainlink | Bridges real-world asset data (price, ownership proof) into smart contracts. |
💻 Smart Contracts | Solidity | Used for writing cross-chain tokenization and mint/redeem logic. |
-
User chats with the ElizaOS agent on NEAR
"Buy 3 shares of AAPL using 10 ETH"
-
Agent sends the mint transaction using NEAR private key to the MPC contract to sign.
-
**MPC contract responds with the signature.
-
Signed transaction is broadcasted to the
dNEAR
smart contract on Ethereum -
Oracle:
- Fetches real-time AAPL stock price (USD)
- Places an off-chain order to buy stock via custom JS
-
Chainlink Price Feed:
- Fetches ETH/USD price
-
Smart Contract Logic:
if (ETH_in_usd >= stock_price_usd * quantity) { mint DNEAR token(s); update totalHoldings[requester][stock]; refund excess ETH; }
-
User chats with the ElizaOS agent on NEAR
"Sell 3 shares of AAPL"
-
Agent sends the redeem transaction using NEAR private key to the MPC contract to sign.
-
**MPC contract responds with the signature.
-
Signed transaction is broadcasted to the
dNEAR
smart contract on Ethereum. -
Oracle:
- Fetches real-time AAPL stock price (USD)
- Places an off-chain order to buy stock via custom JS
-
Chainlink Price Feed:
- Fetches ETH/USD price
-
Smart Contract Logic:
if (totalHoldings[requester][stock] >= quantity) { burn DNEAR token(s) update totalHoldings send back ETH equivalent to stock_price_usd * quantity }
/foundry/src/dNEAR.sol -> Solidity contract (dNEAR logic, oracles)
/ai-agent/src -> ElizaOS agent logic
- 📽️ Demo Video