[BlockChain] 메타마스크 토큰추가
·
개발/BlockChain
1. 트러플 초기설정 npx truffle init truffle-config.js module.exports = { networks: { development: { host: "127.0.0.1", port: 8545, // 가나쉬 포트 network_id: "*", }, }, compilers: { solc: { version: "0.8.17", }, }, }; 2. 스마트 컨트랙트 /contracts/Token.sol // SPDX-License-Identifier: MIT pragma solidity ^0.8.17; contract Token{ mapping(address=>uint256) public balances; string public name = "tetedoToken"; // 토큰의 ..