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 has been 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");
}
}
I was not able to create hello world smart contract with neo-devpack-java.
Documentation tells us to extends our smart contracts with FunctionCode or VerificationCode.
Example from doc
Neo-devpack-java doesnt contain this files.
Link to Antshares.SmartContract.Framework JAR by documentation is broken.
I found one issue telling that Antshares.SmartContract.Framework JAR is compiled from neo-devpack-java.
If so than above mentioned documentation is old or neo-devpack-java is missing java files.
The text was updated successfully, but these errors were encountered: