> For the complete documentation index, see [llms.txt](https://docs.zerowave.my.id/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.zerowave.my.id/testnet/inery/task/task_2.md).

# Task\_2

<div align="center"><img src="https://user-images.githubusercontent.com/38981255/184088981-3f7376ae-7039-4915-98f5-16c3637ccea3.PNG" alt="" height="50"></div>

## TASK 2

### Make own currency and transfer to someone

### Before Start Unlock Wallet First

```
cline wallet unlock -n <WALLET_NAME>
```

> if you follow my tutorial from task 1 `Wallet_Name` = `Username`

### Get Token abi and wasm File

```
cline get code inery.token -c token.wasm -a token.abi --wasm
```

### Set wasm Code to Account

```
cline set code -j <YOUR_USERNAME> token.wasm
```

### Set abi Code

```
cline set abi <YOUR_USERNAME> token.abi
```

### Create Token

```
cline push action inery.token create '["<YOUR_USERNAME>", "100000.0000 <YOUR_TOKENNAME>" , "creating my first tokens"]' -p <YOUR_USERNAME>
```

### Issues New Token

```
cline push action inery.token issue '["<YOUR_USERNAME>", "10000.0000 <YOUR_TOKENNAME>", "Issuing some <YOUR_TOKENNAME> token"]' -p <YOUR_USERNAME>
```

NOTE : TO COMPLETE ON TASK 2 YOU MUST TRANSFER YOUR TOKEN TO 10 DIFFERENT ACCOUNT, YOU CAN CHECK ACCOUNT NAME [HERE](https://explorer.inery.io/)

### Transfer Token

```
cline push action inery.token transfer '["<YOUR_USERNAME>", "<RECEIVER>", "1.0000 <YOUR_TOKENNAME>", "Here Is 1 <YOUR_TOKENNAME> for you bro "]' -p <YOUR_USERNAME>
```

> Repeat that until you done transfer your token to 10 different account included inery account


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.zerowave.my.id/testnet/inery/task/task_2.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
