i want to build a smart contract with neo-python and in my sc i want to have this module:
from boa.blockchain.vm.Neo.Storage import GetContext, Get, Put, Delete
but i get
No module named boa.blockchain
How can i get this module linked?
i want to build a smart contract with neo-python and in my sc i want to have this module:
from boa.blockchain.vm.Neo.Storage import GetContext, Get, Put, Delete
but i get
No module named boa.blockchain
How can i get this module linked?
you forgot to put from
, and also did you install it with pip install neo-boa
?
from boa.blockchain.vm.Neo.Storage import GetContext, Get, Put, Delete