nftproxy&&register&&fix

This commit is contained in:
owen05
2021-04-04 01:05:08 +08:00
parent 8ce872f4de
commit da5e9dd8e3
12 changed files with 515 additions and 148 deletions

View File

@@ -27,7 +27,11 @@ contract NFTCollateralVault is InitializableOwnable, IERC721Receiver, IERC1155Re
}
NftInfo[] public nftInfos;
constructor (string memory _name) public {
function init(
address owner,
string memory _name
) external {
initOwner(owner);
name = _name;
}