This guide provides instructions on debugging sent messages using command-line tools and hardhat. It covers retrieving message status, inspecting arguments of emitted events by the Endpoint, and more. If you have not deployed your custom protocol yet, refer to the Getting Started guide before proceeding.
Retrieving Account Balance
To get the balance of any account on an EVM-compatible network, execute the command below. It will print the specified account balance.
To retrieve block details from an EVM-compatible network, execute the command below. It will output the block number, block hash, and creation timestamp.
To obtain details of a specific transaction, execute the command below. It will output the sender address, the receiver address, msg.value, payload, and block number.
In this example, some values have been shortened (indicated by "...") for visibility.
Reading data from tx: 0x872f7acf59f32...7e3c694826c7
From: 0xB8F2952882622Bee2fD495148a35109dc108858d
To: 0xC1a4aD3AaC062d875A9395B041ef5E4885BB8F9c
Value: 0
Data: 0x095ea7...28dde4d10ee5c56f
Block: 7892221
Printing Proposal Data
If a proposal was sent to the Endpoint, parse the emitted event by executing the below command. It will output the destination chain ID, msg.value, selector slot, agent parameters, sender address, destination address, encoded payload.
To find the message hash associated with a transaction hash from the source network, execute the command below. If a proposal is found in the transaction receipt, it will be reconstructed, and the corresponding message hashes will be displayed.
Current status of message with hash 0x93f013014a46f9dc8ba9efa60da3683700a73fae736770c7234f477898ebab3b
Source chain id: 5003
Destination chain id: 33133
Retrieve Initial msg.value
If you're working on the Mainnet environment, change "teib" to "eib".
The below command will output the reward value of the specified hash.
In this example, some values have been shortened (indicated by "...") for visibility.
Message of hash:
0x6...186612c12bae
- GLOBAL -
Status: 11 | SUCCESS | delivery zone
Global nonce: 30539
- Proposal -
Destination chain: 5003
Native amount: 1
Selector slot: 0x0...0af859a79
Sender address: 0x0...03f5a530b
Destination address: 0x0...00cd4b974
Payload: 0x0...01bdd243c
Reserved: 0x
Block finalization option: 0
Custom gas limit: 300000
- Source chain -
Location: 1127457...683956
Source tx hash: 0xf...1b65841895
Retrieve Initial Proposal & Source Chain Data -- delete
Retrieve Source Chain ID -- delete
Retrieve Destination Chain ID -- delete
Check Message Status by Hash
If you're working on the Mainnet environment, change "teib" to "eib".
To determine the current status of a sent message, execute the below command. If the transaction is found, the output will display its current status along with information from the initial proposal.
Current status of message with hash <teib_tx_hash>
Status: SUCCESS
Zone: delivery
Checking Message Execution on Destination Endpoint
The below command will retrieve the execution status of the provided hash on the specified network. There are 3 possible execution statuses, described below.
Current execution status of message with hash 0xdfc2c4b17f947abca4aa90697d3d82627e520c0644f9b56e6bace16d16d6b43c
Execution status: Executed
Status Codes
0 - Does not exist
1 - Executed
2 - Protocol failed
Retrieving the Last Received Message by Sender
To get the last received message using a sender address, execute the command below. If the message is found, it will output message length and the message itself in bytes, which is the decoded representation.
In this example, some values have been shortened (indicated by "...") for visibility.
===============================================
Bytes len of message: 194
Msg Bytes: 0x000866726f6d5f6574680000000...0000
===============================================
Last message from address 0xB3B029...5Bde9AF is: "from_eth"
Get Estimate Fee
To get estimated fee for message execution on destination chain + UIP commissions execute the below command.