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
"Hi! We're having some issues with using ETH as a token when creating and funding pools (we're using this address as specified in the Allo code: 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE.
The transaction just fails without any error message. Do you have a working example we can look at for reference?
Update:
It looks like the contract requires: receive() external payable {}
I can't find this line in the BaseStrategy. Does this mean every strategy contract must implement this? "
From this conversation, it looks like the solution would be to add the needed function to the Base Strategy.
Apetite
Small Batch:
Add a receive() external payable {} to the BaseStrategy.sol contract. This will allow for receiving native ETH without having to implement in each strategy.
Solution
Add receive() external payable {} to BaseStrategy.sol
Problem
Apetite
Small Batch:
Add a
receive() external payable {}
to theBaseStrategy.sol
contract. This will allow for receiving native ETH without having to implement in each strategy.Solution
Add
receive() external payable {}
toBaseStrategy.sol
References
https://discord.com/channels/562828676480237578/1047159914956591114
Rabbit Holes
N/A
Planning Docs
N/A
The text was updated successfully, but these errors were encountered: