> 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/test-bridge.md).

# Test bridge

Let's test by sending some tokens.

```bash
export FROM=$KYLIN_TEST_ACCOUNT
export TO=$KYLIN_BRIDGE_ACCOUNT
export QUANTITY="1.0000 TKN"
# user address, not token/tokenpeg account/contract, third account you created
export MEMO="0xE60dEdC13Ee13D563034dF75Acce5C58CB60ab12"
cleos -u $KYLIN_ENDPOINT push action $KYLIN_TOKEN_ACCOUNT transfer "[\"$FROM\",\"$TO\",\"$QUANTITY\",\"$MEMO\"]" -p $KYLIN_TEST_ACCOUNT@active  
```

Now let's see if the tokens make it! Navigate to your user account's address

{% embed url="<https://testnet.bscscan.com/address/0xE60dEdC13Ee13D563034dF75Acce5C58CB60ab12#tokentxns>" %}

![](https://4003270724-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-MTfSc9O76OFJpqcb3QC%2F-Ma0R8oHar8PsEFW4CCA%2F-Ma0T8WtWugQ68Er2XAq%2F28.png?alt=media\&token=1fd769ff-4cc2-48ed-823d-e2d9b9b97c05)

Now let's send it back!

Navigate to your tokenpeg contract on the EVM side, click on the contract tab, go to Write Contract, and connect using your user's account.

![](https://4003270724-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-MTfSc9O76OFJpqcb3QC%2F-Ma0R8oHar8PsEFW4CCA%2F-Ma0TdbSNev9qQKBocsL%2F29.png?alt=media\&token=7686c07b-2044-4125-a97e-ba1d980ae66d)

Scroll to #4.  We're going to send 1 token back `10000`. And to determine the destination address we're going to use a helper function on our bridge contract.

```bash
cleos -u $EOS_ENDPOINT push action $KYLIN_BRIDGE_ACCOUNT getdest '["YOUR EOSIO USER ACCOUNT HERE"]' -p $KYLIN_BRIDGE_ACCOUNT@active
```

The assertion error will relay the `uint64_t` for the account specified, and you said EOSIO assertion messages weren't good for anything, pish posh, we move on!

`Destination EOSIO Account Name Value: 11075078730411234672`

![](https://4003270724-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-MTfSc9O76OFJpqcb3QC%2F-Ma0R8oHar8PsEFW4CCA%2F-Ma0UNd0B7fY_qAn7Yq7%2F30.png?alt=media\&token=ae30294b-7fb7-4bce-ba36-7f113960dd96)

Fire. [Example trx](https://testnet.bscscan.com/tx/0x301dddac2349b7b1c4fd73d11145f28ff015a2b8209d820df45e987360d46a8a)

And shazam you've got tokens! <https://kylin.eosq.app/tx/cbc1bd2591efc7311358ce1ee17c95e8da2dfbf895c00051f401afc794013be0>
