# Hello World Contract

### Create the Contract[​](https://docs.eosnetwork.com/docs/latest/getting-started/smart-contract-development/hello-world#create-the-contract) <a href="#create-the-contract" id="create-the-contract"></a>

Create a new directory called **hello** in the **contracts** directory you previously created and enter the newly created directory.

```sh
cd CONTRACTS_DIR
mkdir hello
cd hello
```

Create a new file, **hello.cpp**, and open it in your preferred text editor:

```sh
touch hello.cpp
```

Below the `eosio.hpp` header file is included. The `eosio.hpp` file includes a few classes required to write a smart contract.

```cpp
#include <eosio/eosio.hpp>
```

Using the `eosio namespace` will reduce clutter in your code. For example, by setting `using namespace eosio;`, `eosio::print("foo")` can be written `print("foo").`

```cpp
using namespace eosio;
```

Create a standard C++11 class. The contract class needs to extend `eosio::contract` class which is included earlier from the eosio.hpp header:

```cpp
#include <eosio/eosio.hpp>

using namespace eosio;

class [[eosio::contract]] hello : public contract {};
```

An empty contract is not enough. Add a public access specifier and a using-declaration. The `using` declaration will allow us to write more concise code:

```cpp
#include <eosio/eosio.hpp>

using namespace eosio;

class [[eosio::contract]] hello : public contract {
  public:
   using contract::contract;
};
```

This contract needs to do something. In the spirit of **hello world** write an action that accepts a "name" parameter, and then prints that parameter out:

Actions implement the behavior of a contract

```cpp
#include <eosio/eosio.hpp>

using namespace eosio;

class [[eosio::contract]] hello : public contract {
  public:
      using contract::contract;

      [[eosio::action]]
      void hi( name user ) {
         print( "Hello, ", user);
      }
};
```

The above action accepts a parameter called `user`, that's a `name` type. VEXANIUM comes with a number of typedefs, one of the most common typedefs you'll encounter is `name`. Using the `eosio::print` library previously included, concatenate a string and print the `user` parameter. Use the braced initialization of `name{user}` to make the `user` parameter printable.

As is, the ABI generator in `cdt` won't know about the `hi()` action without an attribute. Add a C++11 style attribute above the action, this way the abi generator can produce more reliable output:

```cpp
#include <eosio/eosio.hpp>

using namespace eosio;

class [[eosio::contract]] hello : public contract {
  public:
      using contract::contract;

      [[eosio::action]]
      void hi( name user ) {
         print( "Hello, ", user);
      }
};
```

Everything together, here's the completed hello world contract:

```cpp
#include <eosio/eosio.hpp>

using namespace eosio;

class [[eosio::contract]] hello : public contract {
  public:
      using contract::contract;

      [[eosio::action]]
      void hi( name user ) {
         print( "Hello, ", user);
      }
};
```

### Compile the Contract[​](https://docs.eosnetwork.com/docs/latest/getting-started/smart-contract-development/hello-world#compile-the-contract) <a href="#compile-the-contract" id="compile-the-contract"></a>

{% hint style="info" %}
**INFO**

The ABI Generator in eosio.cdt supports several different style of attributes, see the ABI usage guide here.
{% endhint %}

Compile your code to web assembly (.wasm) as follows:

```sh
eosio-cpp hello.cpp -o hello.wasm
```

### Deploy the Contract[​](https://docs.eosnetwork.com/docs/latest/getting-started/smart-contract-development/hello-world#deploy-the-contract) <a href="#deploy-the-contract" id="deploy-the-contract"></a>

When you deploy a contract, it is deployed to an account, and the account becomes the interface for the contract. As mentioned earlier these tutorials use the same public key for all of the accounts to keep things simple.

View the wallet keys by:

```
cleos wallet keys
```

Create an account for the contract using `cleos create account`, with the command provided below.

<pre><code>cleos --url http//explorer.vexanium.com:8080 set contract hello CONTRACTS_DIR/hello -p <a data-footnote-ref href="#user-content-fn-1">[YOUR_ACCOU</a>NT_NAME_1]@active
</code></pre>

Deploy the compiled `wasm` to the blockchain with `cleos set contract`.

In previous steps you should have created a \`contracts\` directory and obtained the absolute path and then saved it into a cookie. Replace "CONTRACTS\_DIR" in the command below with the absolute path to your \`contracts\` directory.

```sh
cleos --url http//explorer.vexanium.com:8080 set contract hello CONTRACTS_DIR/hello -p [YOUR_ACCOUNT_NAME_1]@active
```

{% hint style="info" %}
**GET AN ERROR?**

Check if your wallet needs to be unlocked.
{% endhint %}

### Execute the Contract[​](https://docs.eosnetwork.com/docs/latest/getting-started/smart-contract-development/hello-world#execute-the-contract) <a href="#execute-the-contract" id="execute-the-contract"></a>

Great! Now the contract is set. Push an action to it.

```sh
cleos --url http://explorer.vexanium.com:8080 push action hello hi '["harry"]' -p belajarsc222@active
```

```
executed transaction: 4c10c1426c16b1656e802f3302677594731b380b18a44851d38e8b5275072857  244 bytes  1000 cycles
#    hello.code <= hello.code::hi               {"user":"harry"}
>> Hello, harry
```

As written, the contract will allow any account to say **hi** to any user:

```
cleos --url http://explorer.vexanium.com:8080 push action hello hi '["harry"]' -p [YOUR_ACCOUNT_NAME_1]]@active
```

```
executed transaction: 28d92256c8ffd8b0255be324e4596b7c745f50f85722d0c4400471bc184b9a16  244 bytes  1000 cycles
#    hello.code <= hello.code::hi               {"user":"[YOUR_ACCOUNT_NAME_1]"}
>> Hello, harry
```

As expected, the console output is **Hello, harry**

In this case "`[YOUR_ACCOUNT_NAME_1]`" is the one who authorized it and `user` is just an argument. Modify the contract so that the authorizing user, "`[YOUR_ACCOUNT_NAME_1]`" in this case, must be the same as the user the contract is responding "hi" to. Use the `require_auth` method. This method takes a `name` as a parameter, and will check if the user executing the action matches the provided parameter.

```cpp
void hi( name user ) {
   require_auth( user );
   print( "Hello, ", name{user} );
}
```

Recompile the contract

```
eosio-cpp -abigen -o hello.wasm hello.cpp
```

And then update it

```
cleos --url http://explorer.vexanium.com:8080 set contract hello CONTRACTS_DIR/hello -p [YOUR_ACCOUNT_NAME_1]@active
```

Try to execute the action again, but this time with mismatched authorization.

```
cleos --url http://explorer.vexanium.com:8080 push action hello hi '["harry"]' -p belajarsc222@active
```

As expected, `require_auth` halted the transaction and threw an error.

```sh
Error 3090004: Missing required authority
Ensure that you have the related authority inside your transaction!;
If you are currently using 'cleos push action' command, try to add the relevant authority using -p option.
```

Now, with our change, the contract verifies the provided `name user` is the same as the authorising user. Try it again, but this time, with the authority of the "alice" account.

```
cleos --url http://explorer.vexanium.com:8080 push action hello hi '["taylor"]' -p [YOUR_ACCOUNT_NAME_1]@active
```

```
executed transaction: 235bd766c2097f4a698cfb948eb2e709532df8d18458b92c9c6aae74ed8e4518  244 bytes  1000 cycles
#    hello <= hello::hi               {"user":"taylor"}
>> Hello, taylor
```

### What's Next?[​](https://docs.eosnetwork.com/docs/latest/getting-started/smart-contract-development/hello-world#whats-next) <a href="#whats-next" id="whats-next"></a>

* Deploy, Issue and Transfer Tokens: Learn how to deploy, issue and transfer tokens.

[^1]:
