Skip to content

Commit

Permalink
fix: add sections for easier scannability
Browse files Browse the repository at this point in the history
  • Loading branch information
ffe9f8 committed Dec 13, 2023
1 parent ca680f9 commit 2fd6764
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -151,14 +151,21 @@ function _addFlowIn(uint256 flowInAmount_) internal {

There are several options for setting and overriding flow limits in the Interchain Token Service.

### Fully managed flow limits

If you want Axelar to manage the flow limits for the token and not deal with it yourself:
- Deploy the token with the `minter` address set to `address(0)`

### Partially managed flow limits

If you want to manage the flow limits together with Axelar:
- Deploy the token with the `minter` address set to your Deployer account or a multi-sig wallet
If you want to manage the flow limits alone:
- Deploy the token with the `minter` address set to your Deployer account
- Call `tokenManager.removeFlowLimiter(itsAddress)` to remove flow limit management by Axelar

### Unmanaged flow limits

If you don't want anyone to manage mint limits:
- Deploy the token with the `minter` address set to your Deployer account
- Call `tokenManager.removeFlowLimiter(itsAddress)` to remove flow limit management by Axelar
Expand Down

0 comments on commit 2fd6764

Please sign in to comment.