代写辅导接单-Individual assignment Create an assignmentToken

欢迎使用51辅导,51作业君孵化低价透明的学长辅导平台,服务保持优质,平均费用压低50%以上! 51fudao.top


In this second exercise, you are expected to create and deploy an ERC-20 token. Instructions

Coding smart contract

Create a token with the following features:

1. Mintability

The token can be minted (increasing supply)

Only a can mint the token

The original is the contract creator

A minter can transfer "mintership" to another address

2. Burnability

The token can be burned (reducing supply)

3. Capped supply

The initial supply of the token at contract creation is 50,000, which is credited to the contract creator's balance

The total supply of the token is capped at 1,000,000

4. Token transfer fee

A flat fee of 1 unit of the token is levied and rewarded to the minter with every transfer transaction ( mint or burn not included)

A transfer transaction must be able to cover the transaction fee in order to succeed

You are recommended to start from the skeleton code (assignmentTokenSkel.sol) and use Remix for composing the smart contract.

Deploying smart contract

Deploy the completed smart contract on a testnet and verify the contract code on Etherscan.

Interacting with smart contract

Interact with the deployed smart contract by performing the following 5 transactions:

1. mint 60 new tokens to an address (say, address XYZ ) other than the minter (say, address ABC ) 2. burn 70 tokens from address ABC

 minter

minter

 

3. approve address XYZ to spend up to 110 tokens from address ABC

4. transfer mintership to address XYZ

5. transfer 40 tokens with address XYZ from address ABC to a third address

Deliverable

Upload one PDF file that includes the following information: 1. Complete smart contract code: 28 points

e.g.

2. Deployed smart contract url: 7 points e.g.

https://kovan.etherscan.io/address/0x714adeedb372ce1307d69cca1dfc694a4ec587ed#co

de

3. Transaction urls (one url per transaction): 15 points e.g. transfer tokens:

https://kovan.etherscan.io/tx/0x8e70f74b846f200b43ad27e10bd3bea9ef741be90f73b300fc 24abaed22fc25e

contract MyToken {

// total supply of token

uint256 constant supply = 1000000;

function allowance(address _owner, address _spender) public view returns (uint256

remaining = allowances[_owner][_spender];

return remaining;

} }

r

 

 


51作业君

Email:51zuoyejun

@gmail.com

添加客服微信: abby12468