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