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.16; | |
| import '@openzeppelin/contracts/token/ERC1155/ERC1155.sol'; | |
| import '@openzeppelin/contracts/access/Ownable.sol'; | |
| import '@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol'; | |
| /// @title AVAXGods | |
| /// @notice This contract handles the token management and battle logic for the AVAXGods game |
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
| pragma solidity ^0.6.0; | |
| contract HotelRoom { | |
| enum Statuses { Vacant, Occupied } | |
| Statuses currentStatus; | |
| address payable public owner; | |
| event Occupy(address _occupant, uint _value); |
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
| [ | |
| { | |
| "state": "Abia", | |
| "lgas": [ | |
| "Aba North", | |
| "Aba South", | |
| "Arochukwu", | |
| "Bende", | |
| "Ikawuno", | |
| "Ikwuano", |
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
| $ git remote rm origin | |
| $ git remote add origin git@github.com:aplikacjainfo/proj1.git | |
| $ git config master.remote origin | |
| $ git config master.merge refs/heads/master |