From 69cafaafb20fbed072f2816f0871369389c81bf3 Mon Sep 17 00:00:00 2001 From: Le Yu <6251863+ltyu@users.noreply.github.com> Date: Sun, 27 Oct 2024 16:11:44 -0400 Subject: [PATCH] Update abi to return bytes[][] --- typescript/ccip-server/src/abis/ProofsServiceAbi.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typescript/ccip-server/src/abis/ProofsServiceAbi.ts b/typescript/ccip-server/src/abis/ProofsServiceAbi.ts index ead75f1eb..fea798284 100644 --- a/typescript/ccip-server/src/abis/ProofsServiceAbi.ts +++ b/typescript/ccip-server/src/abis/ProofsServiceAbi.ts @@ -1,7 +1,7 @@ // This is the ABI for the ProofsService. // This is used to 1) Select the function 2) encode output const ProofsServiceAbi = [ - 'function getProofs(address target, bytes32 storageKey, uint256 slot) public view returns (string[][])', + 'function getProofs(address target, bytes32 storageKey, uint256 slot) public view returns (bytes[][])', ]; export { ProofsServiceAbi };