diff --git a/.env.example b/.env.example index 9533485..536b64f 100644 --- a/.env.example +++ b/.env.example @@ -7,4 +7,5 @@ AAVE_AGENT_SEED= DUNE_AGENT_SEED= COMPOUND_AGENT_SEED= NEXT_PUBLIC_ASSERTION_TABLE=kjzl6hvfrbw6c9yovsnmz91qcj8p1dkudjym6rrh30rvwdyiae1407s7ac9yems -NEXT_PUBLIC_CONTEXT_ID= \ No newline at end of file +NEXT_PUBLIC_CONTEXT_ID= +NEXT_PUBLIC_ENV_ID= diff --git a/src/app/api/agents/route.ts b/src/app/api/agents/route.ts index 0645535..4c38547 100644 --- a/src/app/api/agents/route.ts +++ b/src/app/api/agents/route.ts @@ -1,4 +1,3 @@ -import { OrbisDB } from "@useorbis/db-sdk"; import { OrbisKeyDidAuth } from "@useorbis/db-sdk/auth"; diff --git a/src/components/agent-section.tsx b/src/components/agent-section.tsx index e5e9b83..78c5b05 100644 --- a/src/components/agent-section.tsx +++ b/src/components/agent-section.tsx @@ -101,24 +101,6 @@ export default function AgentSection() { const [viewScores, setViewScores] = useState(false); const [globalScores, setGlobalScores] = useState({}); const { address } = useAccount(); - const [scopes, setScopes] = useState< - { - agentName: string; - scope: string; - }[] - >([]); - const [levels, setLevels] = useState< - { - agentName: string; - level: number; - }[] - >([]); - const [reasons, setReasons] = useState< - { - agentName: string; - reason: string[]; - }[] - >([]); const [newsTrust, setNewsTrust] = useState([]); const [aaveTrust, setAaveTrust] = useState([]); const [duneTrust, setDuneTrust] = useState([]);