소스 검색

Update IERC7786 to match latest ERC changes (#5883)

Hadrien Croubois 1 개월 전
부모
커밋
be8ee86fc1
1개의 변경된 파일2개의 추가작업 그리고 3개의 파일을 삭제
  1. 2 3
      contracts/interfaces/draft-IERC7786.sol

+ 2 - 3
contracts/interfaces/draft-IERC7786.sol

@@ -55,10 +55,9 @@ interface IERC7786Receiver {
      *
      * This function may be called directly by the gateway.
      */
-    function executeMessage(
+    function receiveMessage(
         bytes32 receiveId,
         bytes calldata sender, // Binary Interoperable Address
-        bytes calldata payload,
-        bytes[] calldata attributes
+        bytes calldata payload
     ) external payable returns (bytes4);
 }