Skip to content

Commit

Permalink
Add extra contract with fixed configurables
Browse files Browse the repository at this point in the history
  • Loading branch information
0xmichalis committed Feb 13, 2024
1 parent b600889 commit f7fd3a0
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/DynamicTokenURI24.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.17;

import "./DynamicTokenURI.sol";

contract DynamicTokenURI24 is DynamicTokenURI {
constructor(address creatorContract_, string memory baseURI_)
DynamicTokenURI(creatorContract_, baseURI_, 24, 0.001 ether)
{}
}

0 comments on commit f7fd3a0

Please sign in to comment.