Skip to content

Instantly share code, notes, and snippets.

View asmitb127's full-sized avatar
📖

Asmit B asmitb127

📖
View GitHub Profile
@asmitb127
asmitb127 / ALMToken.sol
Last active July 27, 2021 03:40 — forked from bibekblockchain/ALMToken.sol
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.6.6+commit.6c089d02.js&optimize=false&runs=200&gist=
pragma solidity 0.8.0;
import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "./AlbumFungibleToken.sol";
contract ALM is ERC1155, AccessControl{
using Counters for Counters.Counter;