As technology progresses, infrastructure should be commoditized, especially in Web3, in order to avoid the creation of bottlenecks and gatekeepers. Blockchains are naturally oblivious to off-chain data, so they need oracles to fetch data. However, given their past technical limitations, oracles have failed to provide a decentralized and permissionless framework for data queries. SEDA seeks to change this by creating an intent-based modular data layer, which brings off-chain data on-chain, in order for it to be available to any party, regardless of who requested it first.Epicenter, Jasper De Goojier, March 2024
# Search
curl -X POST "https://search.dria.co/hnsw/search" \
-H "x-api-key: <YOUR_API_KEY>" \
-H "Content-Type: application/json" \
-d '{"rerank": true, "top_n": 10, "contract_id": "7O9RefiOdYfa7jFehRe4ij0WwpjEVAY2jdBsgd2xi3c", "query": "What is alexanDRIA library?"}'
# Query
curl -X POST "https://search.dria.co/hnsw/query" \
-H "x-api-key: <YOUR_API_KEY>" \
-H "Content-Type: application/json" \
-d '{"vector": [0.123, 0.5236], "top_n": 10, "contract_id": "7O9RefiOdYfa7jFehRe4ij0WwpjEVAY2jdBsgd2xi3c", "level": 2}'