Skip to content

Instantly share code, notes, and snippets.

@bertil291utn
Last active November 8, 2022 23:02
Show Gist options
  • Save bertil291utn/0113a0ba8f9a2ede9d792e0b93a51e28 to your computer and use it in GitHub Desktop.
Save bertil291utn/0113a0ba8f9a2ede9d792e0b93a51e28 to your computer and use it in GitHub Desktop.
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.7+commit.e28d00a7.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "@openzeppelin/contracts@4.7.3/token/ERC20/ERC20.sol";
contract BertilTokens is ERC20 {
uint256 internal fullAmountTokens = 10000 * 10**decimals();
constructor(address _claimableToken,address _stakingAddress) ERC20("BertilTokens", "BATL") {
_mint(_claimableToken, fullAmountTokens);
approve(_stakingAddress,fullAmountTokens);
// transfer(_claimableToken, fullAmountTokens);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment