From 704ae85702abcbabeb65fac59eb695ad2ee06dce Mon Sep 17 00:00:00 2001 From: 0xfoobar <0xfoobar1@gmail.com> Date: Tue, 18 Aug 2026 16:24:19 -0400 Subject: [PATCH 1/2] Add Robinhood Chain to finalized deployments --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 3ea82e6..4d91dc6 100644 --- a/README.md +++ b/README.md @@ -30,6 +30,7 @@ Frontend website interface at [delegate.xyz](https://delegate.xyz). Full docs at |Polygon|[0x00000000000000447e69651d841bd8d104bed493](https://polygonscan.com/address/0x00000000000000447e69651d841bd8d104bed493)| |Polygon zkEVM|[0x00000000000000447e69651d841bd8d104bed493](https://zkevm.polygonscan.com/address/0x00000000000000447e69651d841bd8d104bed493)| |Plume|[0x00000000000000447e69651d841bd8d104bed493](https://phoenix-explorer.plumenetwork.xyz/address/0x00000000000000447e69651d841bD8D104Bed493)| +|Robinhood|[0x00000000000000447e69651d841bd8d104bed493](https://robinhoodchain.blockscout.com/address/0x00000000000000447e69651d841bD8D104Bed493)| |Ronin|[0x00000000000000447e69651d841bd8d104bed493](https://app.roninchain.com/address/0x00000000000000447e69651d841bd8d104bed493)| |Sanko|[0x00000000000000447e69651d841bd8d104bed493](https://explorer.sanko.xyz/address/0x00000000000000447e69651d841bd8d104bed493)| |Scroll|[0x00000000000000447e69651d841bd8d104bed493](https://scrollscan.com/address/0x00000000000000447e69651d841bd8d104bed493)| From 090e5461acf1e5da3ff34867e3be8b63872316c9 Mon Sep 17 00:00:00 2001 From: 0xfoobar <0xfoobar1@gmail.com> Date: Tue, 18 Aug 2026 16:26:38 -0400 Subject: [PATCH 2/2] forge fmt --- test/RegistryUnitTests.t.sol | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/test/RegistryUnitTests.t.sol b/test/RegistryUnitTests.t.sol index 131f365..30be221 100644 --- a/test/RegistryUnitTests.t.sol +++ b/test/RegistryUnitTests.t.sol @@ -566,9 +566,7 @@ contract RegistryUnitTests is Test { else assertEq(registry.checkDelegateForERC20(delegate, vault, contract_, fRights), 0); } - function testCheckDelegateForERC1155(address vault, bytes32 rights, bool enable, address delegate, address contract_, uint256 tokenId, uint256 amount, bytes32 fRights) - public - { + function testCheckDelegateForERC1155(address vault, bytes32 rights, bool enable, address delegate, address contract_, uint256 tokenId, uint256 amount, bytes32 fRights) public { vm.assume(vault > address(1)); registry = new Registry(); assertEq(registry.checkDelegateForERC1155(delegate, vault, contract_, tokenId, rights), 0); @@ -671,9 +669,7 @@ contract RegistryUnitTests is Test { assertEq(keccak256(abi.encode(incomingDelegations)), keccak256(abi.encode(outgoingDelegations))); } - function testGetValidDelegationHashesFromHashes(address from, bytes32 rights, address to, uint256 amount, uint256 tokenId, address contract_, bool[5] calldata enables) - public - { + function testGetValidDelegationHashesFromHashes(address from, bytes32 rights, address to, uint256 amount, uint256 tokenId, address contract_, bool[5] calldata enables) public { vm.assume(amount > 0); bytes32[] memory delegationHashes = new bytes32[](5); vm.startPrank(from);