Securing Your Withdrawal Contract
Learn More About the Withdrawal Contracts:
π‘οΈWithdrawal ContractsChecking for Upgrades
// compare these 2 version IDs:
const lastVersion = await Portal.getWithdrawalContractVersion();
const currentVersion = await WithdrawalContract.getContractVersion();
const needs_upgrade = lastVersion != currentVersion ;Fetching an Upgrade Proposal
await WithdrawalContract.fetchUpgradeProposal();Upgrade
await WithdrawalContract.upgradeTo(newImplementation);Last updated