You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
571 B
Solidity
19 lines
571 B
Solidity
2 years ago
|
// SPDX-License-Identifier: MIT
|
||
|
// ERC721A Contracts v4.2.3
|
||
|
// Creators: Chiru Labs
|
||
|
|
||
|
pragma solidity ^0.8.4;
|
||
|
|
||
|
/**
|
||
|
* This Helper is used to return a dynamic value in the overridden _startTokenId() function.
|
||
|
* Extending this Helper before the ERC721A contract give us access to the herein set `startTokenId`
|
||
|
* to be returned by the overridden `_startTokenId()` function of ERC721A in the ERC721AStartTokenId mocks.
|
||
|
*/
|
||
|
contract StartTokenIdHelper {
|
||
|
uint256 public startTokenId;
|
||
|
|
||
|
constructor(uint256 startTokenId_) {
|
||
|
startTokenId = startTokenId_;
|
||
|
}
|
||
|
}
|