forked from DecentralizedClimateFoundation/DCIPs
19 lines
482 B
Solidity
19 lines
482 B
Solidity
|
// SPDX-License-Identifier: CC0-1.0
|
||
|
|
||
|
pragma solidity ^0.8.0;
|
||
|
|
||
|
import "../ERC5501Enumerable.sol";
|
||
|
|
||
|
contract ERC5501EnumerableTestCollection is ERC5501Enumerable {
|
||
|
|
||
|
constructor(string memory name_, string memory symbol_) ERC5501Enumerable(name_,symbol_) {}
|
||
|
|
||
|
function getUserBalances(address user) external view returns (uint256[] memory) {
|
||
|
return _userBalances[user];
|
||
|
}
|
||
|
|
||
|
function mint(address to, uint256 tokenId) public {
|
||
|
_mint(to, tokenId);
|
||
|
}
|
||
|
}
|