Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions ERC20.sol
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ contract SafeMath {
}


contract CodeWithJoe is ERC20Interface, SafeMath {
contract MambaX is ERC20Interface, SafeMath {
string public name;
string public symbol;
uint8 public decimals; // 18 decimals is the strongly suggested default, avoid changing it
Expand All @@ -47,8 +47,8 @@ contract CodeWithJoe is ERC20Interface, SafeMath {
* Initializes contract with initial supply tokens to the creator of the contract
*/
constructor() public {
name = "CodeWithJoe";
symbol = "CWJ";
name = "MambaX";
symbol = "MAX";
decimals = 18;
_totalSupply = 100000000000000000000000000;

Expand Down