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
{{ message }}
This repository was archived by the owner on May 18, 2019. It is now read-only.
or in neo-devpack-java are some java files missing
Documentation tells us to extends our smart contracts with FunctionCode or VerificationCode.
Example from doc
importAntShares.SmartContract.Framework.FunctionCode;
importAntShares.SmartContract.Framework.Services.AntShares.Storage;
publicclassHelloWorldextendsFunctionCode{
publicstaticbyte[] Main(String[] args){
Storage.Put(Storage.getCurrentContext(), "Greeting to the World", "Hello World!");
returnStorage.Get(Storage.getCurrentContext(),"Greeting to the World");
}
}