Skip to content

Latest commit

 

History

History
204 lines (189 loc) · 6.65 KB

File metadata and controls

204 lines (189 loc) · 6.65 KB

ICxTokenFactory.sol

View Source: contracts/interfaces/ICxTokenFactory.sol

↗ Extends: IMember ↘ Derived Contracts: cxTokenFactory

ICxTokenFactory

Events

event CxTokenDeployed(address  cxToken, IStore  store, bytes32 indexed coverKey, bytes32 indexed productKey, string  tokenName, uint256 indexed expiryDate);

Functions

deploy

function deploy(bytes32 coverKey, bytes32 productKey, string tokenName, uint256 expiryDate) external nonpayable
returns(address)

Arguments

Name Type Description
coverKey bytes32
productKey bytes32
tokenName string
expiryDate uint256
Source Code
function deploy(
    bytes32 coverKey,
    bytes32 productKey,
    string calldata tokenName,
    uint256 expiryDate
  ) external returns (address);

Contracts