diff --git a/tutorials/2023-01-04-neow3j-nep11/assets/neow3j-padded.png b/tutorials/2023-05-16-neow3j-nep11/assets/neow3j-padded.png similarity index 100% rename from tutorials/2023-01-04-neow3j-nep11/assets/neow3j-padded.png rename to tutorials/2023-05-16-neow3j-nep11/assets/neow3j-padded.png diff --git a/tutorials/2023-01-04-neow3j-nep11/index.md b/tutorials/2023-05-16-neow3j-nep11/index.md similarity index 99% rename from tutorials/2023-01-04-neow3j-nep11/index.md rename to tutorials/2023-05-16-neow3j-nep11/index.md index 1ab4879..fe27dcc 100644 --- a/tutorials/2023-01-04-neow3j-nep11/index.md +++ b/tutorials/2023-05-16-neow3j-nep11/index.md @@ -11,7 +11,7 @@ sidebar: true
neow3j -

neow3j v3.19.3

+

neow3j v3.20.0

Neow3j is a development toolkit that provides easy and reliable tools to build Neo dApps and Smart Contracts using the diff --git a/tutorials/2023-01-04-neow3j-nep17/assets/neow3j-padded.png b/tutorials/2023-05-16-neow3j-nep17/assets/neow3j-padded.png similarity index 100% rename from tutorials/2023-01-04-neow3j-nep17/assets/neow3j-padded.png rename to tutorials/2023-05-16-neow3j-nep17/assets/neow3j-padded.png diff --git a/tutorials/2023-01-04-neow3j-nep17/index.md b/tutorials/2023-05-16-neow3j-nep17/index.md similarity index 99% rename from tutorials/2023-01-04-neow3j-nep17/index.md rename to tutorials/2023-05-16-neow3j-nep17/index.md index 796588d..b39b291 100644 --- a/tutorials/2023-01-04-neow3j-nep17/index.md +++ b/tutorials/2023-05-16-neow3j-nep17/index.md @@ -11,7 +11,7 @@ sidebar: true
neow3j -

neow3j v3.19.3

+

neow3j v3.20.0

Neow3j is a development toolkit that provides easy and reliable tools to build Neo dApps and Smart Contracts using the diff --git a/tutorials/2023-01-04-neow3j-sdk-quickstart/assets/neow3j-padded.png b/tutorials/2023-05-16-neow3j-sdk-quickstart/assets/neow3j-padded.png similarity index 100% rename from tutorials/2023-01-04-neow3j-sdk-quickstart/assets/neow3j-padded.png rename to tutorials/2023-05-16-neow3j-sdk-quickstart/assets/neow3j-padded.png diff --git a/tutorials/2023-01-04-neow3j-sdk-quickstart/index.md b/tutorials/2023-05-16-neow3j-sdk-quickstart/index.md similarity index 99% rename from tutorials/2023-01-04-neow3j-sdk-quickstart/index.md rename to tutorials/2023-05-16-neow3j-sdk-quickstart/index.md index 0f2f38d..3db86a0 100644 --- a/tutorials/2023-01-04-neow3j-sdk-quickstart/index.md +++ b/tutorials/2023-05-16-neow3j-sdk-quickstart/index.md @@ -11,7 +11,7 @@ sidebar: true
neow3j -

neow3j v3.19.3

+

neow3j v3.20.0

## 1. Introduction diff --git a/tutorials/2023-01-04-neow3j-smart-contract-quickstart/assets/neow3j-padded.png b/tutorials/2023-05-16-neow3j-smart-contract-quickstart/assets/neow3j-padded.png similarity index 100% rename from tutorials/2023-01-04-neow3j-smart-contract-quickstart/assets/neow3j-padded.png rename to tutorials/2023-05-16-neow3j-smart-contract-quickstart/assets/neow3j-padded.png diff --git a/tutorials/2023-01-04-neow3j-smart-contract-quickstart/index.md b/tutorials/2023-05-16-neow3j-smart-contract-quickstart/index.md similarity index 93% rename from tutorials/2023-01-04-neow3j-smart-contract-quickstart/index.md rename to tutorials/2023-05-16-neow3j-smart-contract-quickstart/index.md index e3044e0..33e781c 100644 --- a/tutorials/2023-01-04-neow3j-smart-contract-quickstart/index.md +++ b/tutorials/2023-05-16-neow3j-smart-contract-quickstart/index.md @@ -11,7 +11,7 @@ sidebar: true
neow3j -

neow3j v3.19.3

+

neow3j v3.20.0

## 1. Introduction @@ -95,14 +95,11 @@ contract and want to compile your contract in the same code. You will find an example for the compiler usage `com.axlabs.helloworld.Deployment` in the boilerplate project. ```java -CompilationUnit res = new Compiler().compile( - HelloWorldSmartContract.class.getCanonicalName(), - substitutions); +CompilationUnit res = new Compiler().compile(HelloWorldSmartContract.class.getCanonicalName()); ``` -The name of the contract to compile as well as a map of placeholder substitutions is passed to the compiler. The -compilation result is a `CompilationUnit` which gives access to the NEF file and the contract manifest. They are used to -call the `ContractManagement` contract - a contract that is native to the Neo blockchain. +The compilation result is a `CompilationUnit` which gives access to the NEF file and the contract manifest. They are +used to call the `ContractManagement` contract - a contract that is native to the Neo blockchain. ```java TransactionBuilder builder = new ContractManagement(neow3j)