> For the complete documentation index, see [llms.txt](https://docs.liquidapps.io/liquidapps-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.liquidapps.io/liquidapps-documentation/cross-chain-bridges/getting-started-with-liquidbridge/eosio-less-than-greater-than-evm/initialize-eosio-side.md).

# Initialize EOSIO Side

Now we are going to start the interval that runs all of the bridge logic.

Locate the init action on your tokenpeg contract

{% embed url="<https://kylin.bloks.io/account/bsctestbridg?loadContract=true&tab=Actions&account=bsctestbridg&scope=bsctestbridg&limit=100&action=init>" %}

`sister_address` and `sister_msig_address` will be the tokenpeg contract (***not the account***) on the EVM side.

The `token_contract` will be your token contract name on the EOSIO side.

`10000` is `1.0000 TKN` for the `min_transfer`.

We do not allow the contract to issue tokens because we are assuming the original token contract exists on the Kylin side.

![](/files/-Ma0RTWHrZ4ZJ7u70sos)

Login with blok's cleos option with your tokenpeg EOSIO account

![](/files/-Ma0RqI8Cw7QoB0rXRMa)

Select the `active` permission level.

By clicking the `Submit Transaction` the cleos command will be autopopulated for you

{% hint style="warning" %}
If you use the command below, be sure to update the settings like account, addresses, token contract, etc.
{% endhint %}

```
# cleos -u https://kylin.eosn.io push transaction '{
  "delay_sec": 0,
  "max_cpu_usage_ms": 0,
  "actions": [
    {
      "account": "bsctestbridg",
      "name": "init",
      "data": {
        "sister_address": "0x1197b0024EB9E9a8900C0De2A5BeeA7F48dAc572",
        "sister_msig_address": "0x1197b0024EB9E9a8900C0De2A5BeeA7F48dAc572",
        "sister_chain_name": "bsctest",
        "this_chain_name": "kylin",
        "processing_enabled": true,
        "token_contract": "bsctesttoken",
        "token_symbol": "4,TKN",
        "min_transfer": 10000,
        "transfers_enabled": true,
        "can_issue": false
      },
      "authorization": [
        {
          "actor": "bsctestbridg",
          "permission": "active"
        }
      ]
    }
  ]
}'
```

Now we're ready to test the bridge!
