Skip to content

Commit

Permalink
Additional clean-up and fixing example env file
Browse files Browse the repository at this point in the history
  • Loading branch information
mzkrasner committed Aug 27, 2024
1 parent 5ee7b9a commit ce8c401
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 20 deletions.
3 changes: 2 additions & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@ AAVE_AGENT_SEED=
DUNE_AGENT_SEED=
COMPOUND_AGENT_SEED=
NEXT_PUBLIC_ASSERTION_TABLE=kjzl6hvfrbw6c9yovsnmz91qcj8p1dkudjym6rrh30rvwdyiae1407s7ac9yems
NEXT_PUBLIC_CONTEXT_ID=
NEXT_PUBLIC_CONTEXT_ID=
NEXT_PUBLIC_ENV_ID=
1 change: 0 additions & 1 deletion src/app/api/agents/route.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import { OrbisDB } from "@useorbis/db-sdk";
import { OrbisKeyDidAuth } from "@useorbis/db-sdk/auth";


Expand Down
18 changes: 0 additions & 18 deletions src/components/agent-section.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -101,24 +101,6 @@ export default function AgentSection() {
const [viewScores, setViewScores] = useState(false);
const [globalScores, setGlobalScores] = useState<GlobalScores>({});
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<TrustType[]>([]);
const [aaveTrust, setAaveTrust] = useState<TrustType[]>([]);
const [duneTrust, setDuneTrust] = useState<TrustType[]>([]);
Expand Down

0 comments on commit ce8c401

Please sign in to comment.