This enum represents the different types of commands that can be processed by the Axelar Amplifier Gateway
enum CommandType {
ApproveMessages,
RotateSigners
}
This struct represents a message that is to be processed by the Amplifier Gateway
| Name | Type | Description | | —- | —- | ———– |
struct Message {
string sourceChain;
string messageId;
string sourceAddress;
address contractAddress;
bytes32 payloadHash;
}