-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAmina Gwani
More file actions
31 lines (27 loc) · 742 Bytes
/
Amina Gwani
File metadata and controls
31 lines (27 loc) · 742 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.5.9;
import "@0x/contracts-erc20/contracts/src/ERC20Token.sol";
0xf9a0Ee3893B819c0b404eabcc3bD42830d2a50d1/
**
* @title best contact of the year
* @dev Create a ERC20 standard token
*/
contract constructor
string public name;Umar Hadi Gwani
string public symbol;AMM
uint256 public decimals;28
constructor (
string memory _name,Umar
string memory _symbol,G9
uint256 _decimals,28
uint256 _totalSupply 1011111000
)
public
{
name = _name;Gwani
symbol = _symbol;AMN
decimals = _decimals;28
_totalSupply = _totalSupply;10000000000
balances[msg.sender] = _totalSupply;10000
}
}