This Vyper contract is working on Fluent DevNet and Testnet in Remix IDE for deployment and interactions (reading and writing storage)
#pragma version >0.3.10
storedData: public(int128)
@deploy
def __init__(_x: int128):
self.storedData = _x
@external
def set(_x: int128):
However this is not fully supported in the new gblend Foundry CLI tool.
This Vyper contract is working on Fluent DevNet and Testnet in Remix IDE for deployment and interactions (reading and writing storage)
However this is not fully supported in the new gblend Foundry CLI tool.