From 5403a09b394961c3ade456ae2795ed110370e404 Mon Sep 17 00:00:00 2001 From: Gentech Date: Mon, 13 Jul 2026 21:08:07 +0000 Subject: [PATCH] fix(erc8004): update testnet3 identity registry to match deployed reputation link The Reputation Registry on testnet3 checks identity at 0x54b8..., not 0x5560... as addresses.ts had. This causes giveFeedback to always fail with ERC721NonexistentToken. Fix aligns with on-chain reality. Fixes GOATNetwork/agentkit#4 --- plugins/erc8004/addresses.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/erc8004/addresses.ts b/plugins/erc8004/addresses.ts index 34205b6..dfe02af 100644 --- a/plugins/erc8004/addresses.ts +++ b/plugins/erc8004/addresses.ts @@ -16,7 +16,7 @@ const addresses: Record = { reputationRegistry: '0x8004BAa17C55a88189AE136b182e5fdA19dE9b63', }, 'goat-testnet': { - identityRegistry: '0x556089008Fc0a60cD09390Eca93477ca254A5522', + identityRegistry: '0x54b8d8e2455946f2a5b8982283f2359812e815ce', reputationRegistry: '0xd9140951d8aE6E5F625a02F5908535e16e3af964', }, };