Skip to main content

Transfers and approval of ERC-20 tokens from a solidity smart contract

smart contracts
tokens
solidity
erc-20
Intermediate
jdourlens
April 7, 2020
7 minute read

In the previous tutorial we studied the anatomy of an ERC-20 token in Solidity on the Ethereum blockchain. In this article we’ll see how we can use a smart contract to interact with a token using the Solidity language.

For this smart contract, we’ll create a real dummy decentralized exchange where a user can trade ether for our newly deployed ERC-20 token.

For this tutorial we’ll use the code we wrote in the previous tutorial as a base. Our DEX will instantiate an instance of the contract in its constructor and perform the operations of:

  • exchanging tokens to ether
  • exchanging ether to tokens

We’ll start our Decentralized exchange code by adding our simple ERC20 codebase:

Our new DEX smart contract will deploy the ERC-20 and get all the supplied:

So we now have our DEX and it has all the token reserve available. The contract has two functions:

  • buy: The user can send ether and get tokens in exchange
  • sell: The user can decide to send tokens to get ether back

The buy function

Let’s code the buy function. We’ll first need to check the amount of ether the message contains and verify that the contracts own enough tokens and that the message has some ether in it. If the contract owns enough tokens it’ll send the number of tokens to the user and emit the Bought event.

Note that if we call the require function in the case of an error the ether sent will directly be reverted and given back to the user.

To keep things simple, we just exchange 1 token for 1 Wei.

function buy() payable public {
    uint256 amountTobuy = msg.value;
    uint256 dexBalance = token.balanceOf(address(this));
    require(amountTobuy > 0, "You need to send some ether");
    require(amountTobuy <= dexBalance, "Not enough tokens in the reserve");
    token.transfer(msg.sender, amountTobuy);
    emit Bought(amountTobuy);
}

In the case where the buy is successful we should see two events in the transaction: The token Transfer and the Bought event.

Two events in the transaction: Transfer and Bought

The sell function

The function responsible for the sell will first require the user to have approved the amount by calling the approve function beforehand. Approving the transfer requires the ERC20Basic token instantiated by the DEX to be called by the user. This can be achieved by first calling the DEX contract's token() function to retrieve the address where DEX deployed the ERC20Basic contract called token. Then we create an instance of that contract in our session and call its approve function. Then we are able to call the DEX's sell function and swap our tokens back for ether. For example, this is how this looks in an interactive brownie session:

Then when the sell function is called, we’ll check if the transfer from the caller address to the contract address was successful and then send the Ethers back to the caller address.

function sell(uint256 amount) public {
    require(amount > 0, "You need to sell at least some tokens");
    uint256 allowance = token.allowance(msg.sender, address(this));
    require(allowance >= amount, "Check the token allowance");
    token.transferFrom(msg.sender, address(this), amount);
    payable(msg.sender).transfer(amount);
    emit Sold(amount);
}

If everything works you should see 2 events (a Transfer and Sold) in the transaction and your token balance and ether balance updated.

Two events in the transaction: Transfer and Sold

From this tutorial we saw how to check the balance and allowance of an ERC-20 token and also how to call Transfer and TransferFrom of an ERC20 smart contract using the interface.

Once you make a transaction we have a JavaScript tutorial to wait and get details about the transactions (opens in a new tab) that were made to your contract and a tutorial to decode events generated by token transfers or any other events (opens in a new tab) as long as you have the ABI.

Here is the complete code for the tutorial:

Page last update: March 3, 2026

Was this tutorial helpful?