Skip to content
Open
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
14 changes: 14 additions & 0 deletions src/abi/teeRegistry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,20 @@ export const TEE_REGISTRY_ABI = [
{ internalType: "bool", name: "enabled", type: "bool" },
{ internalType: "uint256", name: "registeredAt", type: "uint256" },
{ internalType: "uint256", name: "lastHeartbeatAt", type: "uint256" },
{
components: [
{ internalType: "uint8", name: "keyId", type: "uint8" },
{ internalType: "uint16", name: "kemId", type: "uint16" },
{ internalType: "uint16", name: "kdfId", type: "uint16" },
{ internalType: "uint16", name: "aeadId", type: "uint16" },
{ internalType: "bytes", name: "publicKey", type: "bytes" },
{ internalType: "bytes", name: "keyConfig", type: "bytes" },
{ internalType: "uint256", name: "registeredAt", type: "uint256" },
],
internalType: "struct TEERegistry.OhttpConfig",
name: "ohttpConfig",
type: "tuple",
},
],
internalType: "struct TEERegistry.TEEInfo[]",
name: "",
Expand Down
2 changes: 1 addition & 1 deletion src/defaults.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export const DEFAULT_OG_RPC_URL = "https://ogevmdevnet.opengradient.ai";
* verified TEE LLM endpoints and their pinned TLS certificates.
*/
export const DEFAULT_TEE_REGISTRY_ADDRESS =
"0x4e72238852f3c918f4E4e57AeC9280dDB0c80248";
"0x703cB174AEadB35D611858369B4b1111dC9Abda6";

/**
* Base URL for the OpenGradient faucet service.
Expand Down