Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 22 additions & 2 deletions contracts/Carrier.sol
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,29 @@ import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol";

/*
* Extensible collection airdrop contract.
*
* by @NFTChef
* "The Carrier"
*/

////////////////////////
// //
// //
// //
// //
// .--,--. //
// `. ,.' //
// |___| //
// :o o: //
// _`~^~'_ //
// /' ^ `\ //
// Cooked up by //
// @nftChef //
// //
// //
// //
// //
////////////////////////


contract Carrier is ERC1155, ERC1155Supply, Ownable {
constructor(string memory _uri) ERC1155(_uri) {
_setURI(_uri);
Expand Down