Skip to content

Commit d5c93b3

Browse files
authored
chore: update axelar bridge connection logic (#86)
This PR updates the way we connect tokens across the Axelar bridge. **Specific changes:** - Upgrade forge dependencies - `lib/axelar-gmp-sdk-solidity` - `lib/interchain-token-service` - Remove token manager deployment from Recall ERC20 deployment script - Add a two step script for linking a token to a new chain (in the `Bridge.s.sol` script)
1 parent 19c8b09 commit d5c93b3

6 files changed

+42
-27
lines changed

lib/axelar-gmp-sdk-solidity

lib/interchain-token-service

script/Bridge.s.sol

+37
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ pragma solidity ^0.8.26;
44
import {Recall} from "../src/token/Recall.sol";
55
import {IInterchainTokenService} from
66
"@axelar-network/interchain-token-service/contracts/interfaces/IInterchainTokenService.sol";
7+
import {ITokenManagerType} from "@axelar-network/interchain-token-service/contracts/interfaces/ITokenManagerType.sol";
78
import {Strings} from "@openzeppelin/contracts/utils/Strings.sol";
89
import {Script, console} from "forge-std/Script.sol";
910

@@ -50,6 +51,42 @@ you want to transfer 1 token, use 1000000000000000000.*/
5051
contract BridgeOps is Script {
5152
using Strings for string;
5253

54+
/// @notice Step 1 of the linkToken process
55+
/// @dev This function should be called on the source chain (e.g. Base) to link a token
56+
/// already deployed on a destination chain (e.g. Ethereum)
57+
/// @param recallAddress The address of the recall contract on the destination chain
58+
/// @param network The network to link the token to
59+
function linkTokenStep1(address recallAddress, string memory network) public {
60+
bytes32 itsSalt = keccak256("RECALL_SALT");
61+
IInterchainTokenService itsContract = IInterchainTokenService(INTERCHAIN_TOKEN_SERVICE);
62+
63+
bytes memory params = abi.encodePacked(msg.sender);
64+
bytes memory addressBytes = abi.encodePacked(recallAddress);
65+
66+
vm.startBroadcast();
67+
itsContract.linkToken(
68+
itsSalt, network, addressBytes, ITokenManagerType.TokenManagerType.MINT_BURN_FROM, params, 0
69+
);
70+
vm.stopBroadcast();
71+
}
72+
73+
/// @notice Step 2 of the linkToken process
74+
/// @dev This function should be called on the destination chain (e.g. Ethereum) after the
75+
/// x-chain link has been finalized from step 1
76+
/// @param recallAddress The address of the recall contract on the destination chain
77+
/// @param recallItsTokenId The interchain token ID of the recall contract on the source chain
78+
function linkTokenStep2(address recallAddress, bytes32 recallItsTokenId) public {
79+
Recall recall = Recall(recallAddress);
80+
IInterchainTokenService itsContract = IInterchainTokenService(INTERCHAIN_TOKEN_SERVICE);
81+
address tokenManager = itsContract.tokenManagerAddress(recallItsTokenId);
82+
console.log("Token manager: ", tokenManager);
83+
84+
vm.startBroadcast();
85+
// Grant minter role to token manager
86+
recall.grantRole(recall.MINTER_ROLE(), tokenManager);
87+
vm.stopBroadcast();
88+
}
89+
5390
function isMinter(address proxyAddress, address addressToCheck) public view {
5491
console.log("Proxy address: ", proxyAddress);
5592

script/Recall.s.sol

+1-23
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,6 @@
33
pragma solidity ^0.8.26;
44

55
import {Recall} from "../src/token/Recall.sol";
6-
import {IInterchainTokenService} from
7-
"@axelar-network/interchain-token-service/contracts/interfaces/IInterchainTokenService.sol";
8-
import {ITokenManagerType} from "@axelar-network/interchain-token-service/contracts/interfaces/ITokenManagerType.sol";
9-
import {Strings} from "@openzeppelin/contracts/utils/Strings.sol";
106
import {Options, Upgrades} from "@openzeppelin/foundry-upgrades/Upgrades.sol";
117
import {Script, console} from "forge-std/Script.sol";
128

@@ -19,7 +15,7 @@ contract DeployScript is Script {
1915
return proxyAddress;
2016
}
2117

22-
function run(string memory network) public returns (Recall) {
18+
function run() public returns (Recall) {
2319
vm.startBroadcast();
2420

2521
bytes32 itsSalt = keccak256("RECALL_SALT");
@@ -35,24 +31,6 @@ contract DeployScript is Script {
3531

3632
console.log("Deployer: ", recall.deployer());
3733

38-
if (
39-
Strings.equal(network, "filecoin") || Strings.equal(network, "ethereum") || Strings.equal(network, "base")
40-
|| Strings.equal(network, "filecoin-2") // Calibration testnet
41-
|| Strings.equal(network, "base-sepolia") // Base sepolia testnet
42-
) {
43-
console.log("Deploying token manager");
44-
IInterchainTokenService itsContract = IInterchainTokenService(INTERCHAIN_TOKEN_SERVICE);
45-
bytes memory params = abi.encode(abi.encodePacked(recall.deployer()), address(recall));
46-
itsContract.deployTokenManager(itsSalt, "", ITokenManagerType.TokenManagerType.MINT_BURN_FROM, params, 0);
47-
bytes32 itsTokenId = recall.interchainTokenId();
48-
49-
console.log("Recall Interchain Token ID: ", Strings.toHexString(uint256(itsTokenId), 32));
50-
address tokenManager = itsContract.tokenManagerAddress(itsTokenId);
51-
console.log("Token manager: ", tokenManager);
52-
53-
// Grant minter role to token manager
54-
recall.grantRole(recall.MINTER_ROLE(), tokenManager);
55-
}
5634
vm.stopBroadcast();
5735

5836
return recall;

test/Recall.t.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ contract RecallTest is Test {
1919

2020
function setUp() public {
2121
DeployScript deployer = new DeployScript();
22-
token = deployer.run("local");
22+
token = deployer.run();
2323

2424
user = address(0x123);
2525
}

test/ValidatorRewarder.t.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ abstract contract ValidatorRewarderTestBase is Test {
3131

3232
// Deploy Recall token
3333
RecallDeployScript recallDeployer = new RecallDeployScript();
34-
token = recallDeployer.run("local");
34+
token = recallDeployer.run();
3535

3636
// Create subnet for initialization
3737
SubnetID memory subnet = createSubnet();

0 commit comments

Comments
 (0)