From 70f676d656c9d3b77973a175190a1db61b8f704d Mon Sep 17 00:00:00 2001 From: KOSASIH Date: Sat, 27 Jul 2024 06:58:13 +0700 Subject: [PATCH] Create CrossChainMessage.abi --- .../CrossChainMessage.abi | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 blockchain_integration/pi_network/pi-network-interoperability/cross-chain-communication/CrossChainMessage.abi diff --git a/blockchain_integration/pi_network/pi-network-interoperability/cross-chain-communication/CrossChainMessage.abi b/blockchain_integration/pi_network/pi-network-interoperability/cross-chain-communication/CrossChainMessage.abi new file mode 100644 index 000000000..f27a6b48c --- /dev/null +++ b/blockchain_integration/pi_network/pi-network-interoperability/cross-chain-communication/CrossChainMessage.abi @@ -0,0 +1,34 @@ +[ + { + "constant": true, + "inputs": [], + "name": "messages", + "outputs": [ + { + "name": "", + "type": "bytes" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "name": "_messageId", + "type": "bytes32" + }, + { + "name": "_message", + "type": "bytes" + } + ], + "name": "sendMessage", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + } +]