You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the GatewayZEVM contract's ZETA deposit functions (deposit(), depositAndCall(), depositAndRevert()) expect WZETA tokens from the protocol. This creates an inefficient flow:
Current flow:
Protocol mints native ZETA
Protocol wraps ZETA → WZETA
Protocol calls deposit() on GatewayZEVM with WZETA
GatewayZEVM unwraps WZETA → native ZETA
GatewayZEVM transfers native ZETA to target
Desired flow:
Protocol mints native ZETA
Protocol calls deposit() on GatewayZEVM with native ZETA
GatewayZEVM transfers native ZETA to target
The text was updated successfully, but these errors were encountered:
Currently, the GatewayZEVM contract's ZETA deposit functions (
deposit()
,depositAndCall()
,depositAndRevert()
) expect WZETA tokens from the protocol. This creates an inefficient flow:Current flow:
deposit()
on GatewayZEVM with WZETADesired flow:
deposit()
on GatewayZEVM with native ZETAThe text was updated successfully, but these errors were encountered: