> 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/evm-side-setup/setup-evm-contracts/verify-and-publish-source-code-1/token-contract-and-overview.md).

# token contract and overview

Let's dive right in

![](/files/-Ma0GLwyPM3FQWGX70-r)

Settings

![](/files/-Ma0GUtVRZjkSVNARst7)

{% hint style="warning" %}
If your compiler version is different be sure to change it here!
{% endhint %}

There's not an easy way to download contracts or directories in remix that I've found, and probably for good reason (to keep the resource costs needed for providing the app low).

So we'll need to upload IBEP20.sol, Context.sol, SafeMath.sol, Initializable.sol, BEP20TokenImplementation.sol.

Before we do that, we need to update the paths in our BEP20TokenImplementation so that the compiler can find them

```
import "./IBEP20.sol";
import "./Context.sol";
import "./SafeMath.sol";
import "./Initializable.sol";
```

Click upload.

![](/files/-Ma0HumfjGwU0iqLA3RV)

Satisfy the reCAPTCHA check and Verify and Publish

![](/files/-Ma0I3UmjJvhuSYwAxIY)

This one may require 4 heel clicks, but if you did everything right you should see this:

![](/files/-Ma0IpdSm7y5wpyN_MSg)


---

# 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, and the optional `goal` query parameter:

```
GET https://docs.liquidapps.io/liquidapps-documentation/cross-chain-bridges/getting-started-with-liquidbridge/eosio-less-than-greater-than-evm/evm-side-setup/setup-evm-contracts/verify-and-publish-source-code-1/token-contract-and-overview.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
