반업주부의 일상 배움사
블록체인 하나씩 알아보기 :: ERC20 본문
반응형
mint와 burn을 제공하는 간단한 것부터 해볼게요.
BanjubuCoin.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract BanjubuCoin is ERC20, ERC20Burnable, Ownable {
constructor() ERC20("BanjubuCoin", "BJB") {}
function mint(address to, uint256 amount) public onlyOwner {
_mint(to, amount);
}
}
Rinkeby에 올렸어요.
https://rinkeby.etherscan.io/address/0x9Baa04dA62Da27712388988c7bc7596FAd5dE1A4
0x302...에게 토큰(코인)을 53개 지급할게요.
0x302...의 갯수를 확인했더니 53개가 있네요.
0x302...로 계정을 연결하면 자신의 토큰을 없앨 수 있어요. (burn)
다시 확인하니 줄어있네요.
이제 NFT를 생성할게요.
2022.07.19 - [IT 인터넷/Blockchain] - 블록체인 하나씩 알아보기 :: ERC721
영어, 중국어 공부중이신가요?
홈스쿨 교재. 한 권으로 가족 모두 할 수 있어요!
반응형
LIST
'IT 인터넷 > Blockchain' 카테고리의 다른 글
메타마스크에 폴리곤 테스트넷(Mumbai) 추가 :: Metamask Polygon Testnet (0) | 2022.07.29 |
---|---|
블록체인 하나씩 알아보기 :: Market (0) | 2022.07.20 |
블록체인 하나씩 알아보기 :: ERC721 (0) | 2022.07.19 |
[블록체인/NFT] 이미지 생성부터 오픈씨까지 (Rinkeby/Ethereum) (0) | 2022.05.03 |
[블록체인/NFT] 이미지 생성부터 오픈씨까지 (Mumbai/Polygon) (0) | 2022.04.30 |
Comments