becrypto/contracts/logic/FactoryBase.sol
2022-08-17 17:25:47 +08:00

14 lines
234 B
Solidity

// SPDX-License-Identifier: MIT
pragma solidity 0.8.10;
contract FactoryBase {
struct ShardParam {
address to;
uint256 nftId;
address payToken;
uint256 payAmount;
uint256 startTime;
uint256 saltNonce;
}
}