From c8648b8c124f62b3eae3dc3e864fb3d134e92360 Mon Sep 17 00:00:00 2001 From: Stephen Shelton Date: Thu, 20 Apr 2023 12:05:03 +0000 Subject: [PATCH] Update solidity interface with correct precompile address (#2245) --- precompiles/gmp/Gmp.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/precompiles/gmp/Gmp.sol b/precompiles/gmp/Gmp.sol index ffe2caab8d..257e99c43d 100644 --- a/precompiles/gmp/Gmp.sol +++ b/precompiles/gmp/Gmp.sol @@ -2,7 +2,7 @@ pragma solidity >=0.8.3; /// @dev The Gmp contract's address. -address constant GMP_ADDRESS = 0x0000000000000000000000000000000000000815; +address constant GMP_ADDRESS = 0x0000000000000000000000000000000000000816; /// @dev The Gmp contract's instance. Gmp constant GMP_CONTRACT = Gmp(GMP_ADDRESS);