Skip to content

Commit

Permalink
Update TokenStaking contract
Browse files Browse the repository at this point in the history
Add support for `approveAndCall`/`receiveApproval` pattern. The tBTC
token contract that will be a staking token supports this pattern. To be
able to stake in one transaction (instead of 2: approve + stake) we must
implement the `RecieveApproval` interface. The token staking contract
receives approval to spend tokens and create a stake for a given
account.
  • Loading branch information
r-czajkowski committed Oct 30, 2023
1 parent e1140c8 commit ae6c079
Show file tree
Hide file tree
Showing 4 changed files with 104 additions and 24 deletions.
16 changes: 16 additions & 0 deletions core/contracts/shared/IReceiveApproval.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
// SPDX-License-Identifier: GPL-3.0-only

pragma solidity ^0.8.20;

/// @notice An interface that should be implemented by contracts supporting
/// `approveAndCall`/`receiveApproval` pattern.
interface IReceiveApproval {
/// @notice Receives approval to spend tokens. Called as a result of
/// `approveAndCall` call on the token.
function receiveApproval(
address from,
uint256 amount,
address token,
bytes calldata extraData
) external;
}
31 changes: 27 additions & 4 deletions core/contracts/staking/TokenStaking.sol
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,13 @@ pragma solidity ^0.8.20;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "../shared/IReceiveApproval.sol";

/// @title TokenStaking
/// @notice A token staking contract for a specified standard ERC20 token. A
/// holder of the specified token can stake its tokens to this contract
/// and recover the stake after undelegation period is over.
contract TokenStaking {
contract TokenStaking is IReceiveApproval {
using SafeERC20 for IERC20;

event Staked(address indexed account, uint256 amount);
Expand All @@ -27,14 +28,36 @@ contract TokenStaking {
token = _token;
}

/// @notice Receives approval of token transfer and stakes the approved
/// amount or adds the approved amount to an existing stake.
/// @dev Requires that the provided token contract be the same one linked to
/// this contract.
/// @param from The owner of the tokens who approved them to transfer.
/// @param amount Approved amount for the transfer and stake.
/// @param _token Token contract address.
function receiveApproval(
address from,
uint256 amount,
address _token,
bytes calldata
) external override {
require(_token == address(token), "Unrecognized token");
_stake(from, amount);
}

/// @notice Stakes the owner's tokens in the staking contract.
/// @param amount Approved amount for the transfer and stake.
function stake(uint256 amount) external {
_stake(msg.sender, amount);
}

function _stake(address account, uint256 amount) private {
require(amount > 0, "Amount is less than minimum");
require(account != address(0), "Can not be the zero address");

balanceOf[msg.sender] += amount;
balanceOf[account] += amount;

emit Staked(msg.sender, amount);
token.safeTransferFrom(msg.sender, address(this), amount);
emit Staked(account, amount);
token.safeTransferFrom(account, address(this), amount);
}
}
19 changes: 19 additions & 0 deletions core/contracts/test/TestToken.sol
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,30 @@
pragma solidity 0.8.20;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "../shared/IReceiveApproval.sol";


contract Token is ERC20 {
constructor() ERC20("Test Token", "TEST") {}

function mint(address account, uint256 value) external {
_mint(account, value);
}

function approveAndCall(
address spender,
uint256 amount,
bytes memory extraData
) external returns (bool) {
if (approve(spender, amount)) {
IReceiveApproval(spender).receiveApproval(
msg.sender,
amount,
address(this),
extraData
);
return true;
}
return false;
}
}
62 changes: 42 additions & 20 deletions core/test/staking/TokenStaking.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import { expect } from "chai"
import { Token, TokenStaking } from "../../typechain"
import { WeiPerEther } from "ethers"
import { HardhatEthersSigner } from "@nomicfoundation/hardhat-ethers/signers"
import { before } from "mocha"

async function tokenStakingFixture() {
const [deployer, tokenHolder] = await ethers.getSigners()
Expand Down Expand Up @@ -39,29 +38,52 @@ describe("TokenStaking", () => {
})

describe("staking", () => {
beforeEach(async () => {
// Infinite approval for staking contract.
await token
.connect(tokenHolder)
.approve(await tokenStaking.getAddress(), ethers.MaxUint256)
})
describe("when staking via staking contract directly", () => {
beforeEach(async () => {
// Infinite approval for staking contract.
await token
.connect(tokenHolder)
.approve(await tokenStaking.getAddress(), ethers.MaxUint256)
})

it("should stake tokens", async () => {
const tokenHolderAddress = await tokenHolder.getAddress()
const tokenBalance = await token.balanceOf(tokenHolderAddress)

it("should stake tokens", async () => {
const tokenHolderAddress = await tokenHolder.getAddress()
const tokenBalance = await token.balanceOf(tokenHolderAddress)
await expect(tokenStaking.connect(tokenHolder).stake(tokenBalance))
.to.emit(tokenStaking, "Staked")
.withArgs(tokenHolderAddress, tokenBalance)
expect(await tokenStaking.balanceOf(tokenHolderAddress)).to.be.eq(
tokenBalance,
)
expect(await token.balanceOf(tokenHolderAddress)).to.be.eq(0)
})

await expect(tokenStaking.connect(tokenHolder).stake(tokenBalance))
.to.emit(tokenStaking, "Staked")
.withArgs(tokenHolderAddress, tokenBalance)
expect(await tokenStaking.balanceOf(tokenHolderAddress)).to.be.eq(
tokenBalance,
)
expect(await token.balanceOf(tokenHolderAddress)).to.be.eq(0)
it("should revert if the staked amount is less than required minimum", async () => {
await expect(
tokenStaking.connect(tokenHolder).stake(0),
).to.be.revertedWith("Amount is less than minimum")
})
})

it("should revert if the staked amount is less than required minimum", async () => {
await expect(tokenStaking.connect(tokenHolder).stake(0))
.to.be.revertedWith("Amount is less than minimum")
describe("when staking via staking token using approve and call pattern", () => {
it("should stake tokens", async () => {
const tokenHolderAddress = await tokenHolder.getAddress()
const tokenBalance = await token.balanceOf(tokenHolderAddress)
const tokenStakingAddress = await tokenStaking.getAddress()

await expect(
token
.connect(tokenHolder)
.approveAndCall(tokenStakingAddress, tokenBalance, "0x"),
)
.to.emit(tokenStaking, "Staked")
.withArgs(tokenHolderAddress, tokenBalance)
expect(await tokenStaking.balanceOf(tokenHolderAddress)).to.be.eq(
tokenBalance,
)
expect(await token.balanceOf(tokenHolderAddress)).to.be.eq(0)
})
})
})
})

0 comments on commit ae6c079

Please sign in to comment.