Skip to content

Commit

Permalink
fix: step ordering (#1040)
Browse files Browse the repository at this point in the history
Needed extra spaces to let markdown count the list items
  • Loading branch information
StephenFluin authored Jul 9, 2024
1 parent 7656aee commit 71b6ed7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/pages/dev/general-message-passing/executable.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ The [Axelar Executable Contract](https://github.com/axelarnetwork/axelar-gmp-sdk
import "@axelar-network/axelar-gmp-sdk-solidity/contracts/executable/AxelarExecutable.sol";
```

2. Inherit Axelar Executable Functions:
1. Inherit Axelar Executable Functions:

```solidity
contract MyContract is AxelarExecutable {}
```
```solidity
contract MyContract is AxelarExecutable {}
```

1. Implement the `virtual` functions defined in Axelar Executable on your own contracts. The functions you implement on your own contract will be automatically triggered by an Axelar relayer on the destination chain once the multichain transaction arrives on the destination chain

Expand Down

0 comments on commit 71b6ed7

Please sign in to comment.