> 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

![](https://4003270724-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-MTfSc9O76OFJpqcb3QC%2F-Ma04tbOUc-J5LDCl5Gd%2F-Ma0GLwyPM3FQWGX70-r%2F12.png?alt=media\&token=0d50d664-06ac-4b36-bc3d-3c77ff0f2e97)

Settings

![](https://4003270724-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-MTfSc9O76OFJpqcb3QC%2F-Ma04tbOUc-J5LDCl5Gd%2F-Ma0GUtVRZjkSVNARst7%2F13.png?alt=media\&token=60294531-ce44-4313-845e-5d972d3a4e78)

{% 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.

![](https://4003270724-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-MTfSc9O76OFJpqcb3QC%2F-Ma0Ggo4jYBwjnT80XAI%2F-Ma0HumfjGwU0iqLA3RV%2F14.png?alt=media\&token=869b9882-e5d1-4a5a-91c2-a3390614f1bd)

Satisfy the reCAPTCHA check and Verify and Publish

![](https://4003270724-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-MTfSc9O76OFJpqcb3QC%2F-Ma0Ggo4jYBwjnT80XAI%2F-Ma0I3UmjJvhuSYwAxIY%2F15.png?alt=media\&token=89bcbb0a-7cf6-49a3-80b9-cd821e33718d)

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

![](https://4003270724-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-MTfSc9O76OFJpqcb3QC%2F-Ma0Ggo4jYBwjnT80XAI%2F-Ma0IpdSm7y5wpyN_MSg%2F16.png?alt=media\&token=e40b8393-16e7-4ceb-9d3c-c490d4a90e8e)
