See how a minor change to your commit message style can make a difference.
Tip
Have a look at git-conventional-commits , a CLI util to ensure these conventions and generate verion and changelogs
See how a minor change to your commit message style can make a difference.
Tip
Have a look at git-conventional-commits , a CLI util to ensure these conventions and generate verion and changelogs
| // SPDX-License-Identifier: MIT | |
| pragma solidity ^0.8.7; | |
| import "@openzeppelin/contracts/token/ERC1155/IERC1155.sol"; | |
| import "@openzeppelin/contracts/token/ERC1155/utils/ERC1155Receiver.sol"; | |
| contract NftStaker { | |
| IERC1155 public parentNFT; | |
| struct Stake { |
| //SPDX-License-Identifier: MIT | |
| pragma solidity ^0.6.0; | |
| contract PetAdoption { | |
| Adoption[16] public adoptions; | |
| mapping(uint256 => Pet) private pet_list; | |
| struct Adoption { |
| pragma solidity ^0.4.23; | |
| import "./ownable.sol"; | |
| import "openzeppelin-solidity/contracts/token/ERC721/ERC721.sol"; | |
| /** | |
| * @title CowBreeding | |
| * @dev Cow Basic Implementation to breed them and provides basic functions. | |
| */ | |
| contract CowBreeding is Ownable { |
| // File: @openzeppelin/contracts/math/SafeMath.sol | |
| // SPDX-License-Identifier: MIT | |
| pragma solidity >=0.6.0 <0.8.0; | |
| /** | |
| * @dev Wrappers over Solidity's arithmetic operations with added overflow | |
| * checks. | |
| * |