* switch to using Context internally
* add context import
* Add smoke test to make sure enabling GSN support works
* Update test/GSN/ERC721GSNRecipientMock.test.js
Co-Authored-By: Francisco Giordano <frangio.1@gmail.com>
* Upgrade truffle
* add missing awaits
* Revert "Upgrade truffle"
This reverts commit f9b0ba9019.
23 lines
692 B
Solidity
23 lines
692 B
Solidity
pragma solidity ^0.5.0;
|
|
|
|
import "@openzeppelin/upgrades/contracts/Initializable.sol";
|
|
import "../GSN/GSNRecipient.sol";
|
|
import "../GSN/bouncers/GSNBouncerERC20Fee.sol";
|
|
|
|
contract GSNBouncerERC20FeeMock is GSNRecipient, GSNBouncerERC20Fee {
|
|
constructor(string memory name, string memory symbol, uint8 decimals) public {
|
|
GSNRecipient.initialize();
|
|
GSNBouncerERC20Fee.initialize(name, symbol, decimals);
|
|
}
|
|
|
|
function mint(address account, uint256 amount) public {
|
|
_mint(account, amount);
|
|
}
|
|
|
|
event MockFunctionCalled(uint256 senderBalance);
|
|
|
|
function mockFunction() public {
|
|
emit MockFunctionCalled(token().balanceOf(_msgSender()));
|
|
}
|
|
}
|