fmt.sol 424 B

12345678910111213
  1. // SPDX-License-Identifier: MIT
  2. pragma solidity ^0.5.2;
  3. import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
  4. import {ERC1155} from "solmate/tokens/ERC1155.sol";
  5. import {IAchievements} from "./interfaces/IAchievements.sol";
  6. import {SoulBound1155} from "./abstracts/SoulBound1155.sol";
  7. contract Achievements is IAchievements, SoulBound1155, Ownable {
  8. constructor(address owner) Ownable() ERC1155() {}
  9. }