-
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
[VEN-2741]: Bridge configurations on zksync mainnet #362
Conversation
We could add to the same PR the TX (and VIP for bscmainnet) to be executed on the remote networks to configure the trustworthiness relationship with zkSync |
signature: "setMintCap(address,uint256)", | ||
params: [XVS_BRIDGE_DEST, XVS_MINT_LIMIT], | ||
}, | ||
]); |
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.
Don't we have to configure the limits between zkSync and the rest of the networks? I think we have to invoke the following functions on the XVS_BRIDGE_ADMIN_PROXY
, for each network:
- setMaxDailyLimit(uint16,uint256)
- setMaxSingleTransactionLimit(uint16,uint256)
- setMaxDailyReceiveLimit(uint16,uint256)
- setMaxSingleReceiveTransactionLimit(uint16,uint256)
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.
I see these functions were invoked during the deployment. Ignore this comment
Description
Resolves VEN