-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: axelar support #18
Conversation
@oed is this one ready for review/merge? |
@sanderpick yes! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just left a couple of comments but overall LGTM, let's see what others have to say.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
awesome. lgtm
This PR adds support for Axelars Interchain Token Service to our ERC20 token. Our ERC20 is kept upgradable such that we can add/remove bridges over time (e.g. we are not locked into axelar).
The deploy script has been set up to connect the token to the axelar bridge on deploytime.
Deployed a test version of the token on Filecoin so far, which can be viewed on Axelars bridge app.
Waiting for gasprices on Ethereum to lower a bit before I deploy there, after which the bridging can be tested.
In addition to the bridge functionality I noticed that the ERC20 was importing
PausableUpgradeable
, but wasn't actually overriding any of the ERC20 methods to make them respect pausing. Fixed this.