This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| <head> | |
| <title>Zetachain Matrix Logo</title> | |
| </head> | |
| <body> | |
| <!--style for image rotation--> | |
| <style> | |
| .wrapper{ | |
| perspective: 2000px; | |
| width: 900px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // SPDX-License-Identifier: MIT | |
| pragma solidity ^0.8.2; | |
| contract MyTestToken { | |
| mapping(address => uint) public balances; | |
| mapping(address => mapping(address => uint)) public allowance; | |
| uint public totalSupply = 2100000; | |
| string public name = "BOMBERuss"; | |
| string public symbol = "BOMBER"; |