deusopus Brent K. Kohler Artist, Developer, Designer, Podcaster Seattle, WA
I hereby claim:
- I am grass-shack-studio on github.
- I am deusopus (https://keybase.io/deusopus) on keybase.
deusopus Brent K. Kohler Artist, Developer, Designer, Podcaster Seattle, WA
I hereby claim:
I hereby claim:
To claim this, I am signing this object:
// SPDX-License-Identifier: MIT | |
pragma solidity ^0.8.14; | |
import 'https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol'; | |
contract CannaCoin is ERC20 { | |
constructor() ERC20('Cannacoin', 'CCN') { | |
_mint(msg.sender, 13141591 * 10 ** 18); | |
} |
// SPDX-License-Identifier: MIT | |
pragma solidity ^0.8.7; | |
import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; | |
import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; | |
contract CannacoinPrime is ERC20, ReentrancyGuard { | |
uint256 public constant TOTAL_SUPPLY_CAP = 1_000_000_000_000 * 10 ** 18; | |
address public immutable AVAX_ADDRESS; | |
address public immutable owner; |
// SPDX-License-Identifier: UNLICENSED | |
// File: @openzeppelin/contracts/utils/Address.sol | |
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol) | |
pragma solidity ^0.8.1; |