Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/AgentManage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const LLM_MODELS = [
const EIP712_DOMAIN = {
name: "ERC8004IdentityRegistry",
version: "1",
chainId: BigInt(BASE_CHAIN_ID),
chainId: Number(BASE_CHAIN_ID),
verifyingContract: ERC8004_REGISTRY,
} as const;

Expand Down
2 changes: 1 addition & 1 deletion src/components/AgentRegister.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ type WizardStep = 1 | 2 | "3a" | "3b" | "3c" | "done";
const EIP712_DOMAIN = {
name: "ERC8004IdentityRegistry",
version: "1",
chainId: BigInt(BASE_CHAIN_ID),
chainId: Number(BASE_CHAIN_ID),
verifyingContract: ERC8004_REGISTRY,
} as const;

Expand Down
Loading