diff --git a/README.md b/README.md index 9e1c156d9..88962db43 100644 --- a/README.md +++ b/README.md @@ -126,43 +126,7 @@ ApplicationConfiguration: ``` ## Writing smart contracts in Go -In depth documentation about the **neo-go** compiler and smart contract examples can be found inside the [compiler package](https://github.com/CityOfZion/neo-go/tree/master/pkg/vm/compiler). - -### Compile a smart contract - -``` -./bin/neo-go contract compile -i mycontract.go -``` - -By default the filename will be the name of your `.go` file with the `.avm` extension, the file will be located in the same directory where you called the command from. If you want another location for your compiled contract: - -``` -./bin/neo-go contract compile -i mycontract.go --out /Users/foo/bar/contract.avm -``` - -### Debugging your smart contract -You can dump the opcodes generated by the compiler with the following command: - -``` -./bin/neo-go contract opdump -i mycontract.go -``` - -This will result in something like this: - -``` -INDEX OPCODE DESC -0 0x52 OpPush2 -1 0xc5 OpNewArray -2 0x6b OpToAltStack -3 0x 0 OpPush0 -4 0x6c OpFromAltStack -5 0x76 OpDup -6 0x6b OpToAltStack -7 0x 0 OpPush0 -8 0x52 OpPush2 -9 0x7a OpRoll -10 0xc4 OpSetItem -``` +Golang's development is been moved to a separate repository which you can find here [neo-storm](https://github.com/CityOfZion/neo-storm) # Contributing diff --git a/VERSION b/VERSION index e74136f3c..9c955ee8b 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.44.9 +0.44.10