This assignment written in Solidity is the final project for the Beginner course in Metacrafters on Blockchain and Solidity
The Solidity program is used to create our very own token using a smart contract. The token contains a token name, abbrevation and the total supply. There is also a mapping of addresses with balances. The program also has two functions mint and burn which increases and decreases the balances respectively.
The program draft is copied from the metacrafters website and onto Remix - an online IDE for Solidity (https://remix.ethereum.org/) and is then edited
// SPDX-License-Identifier: MIT
pragma solidity 0.8.18;
contract MyToken {
// public variables here
// mapping variable here
// mint function
// burn function
}
Kruthika Eswaran
This program is licensed under the MIT License