@brightunion/sdk
Version:
Brightjs is a set of javascript tools to interact with the Bright Union's risk platform aggregator's protocol on Ethereum, Binance Smart Chain and Polygon blockchains.
20 lines (16 loc) • 550 B
text/typescript
declare interface CatalogItem {
coverType ? : string ;
productId ? : number ;
contractName ? : string ;
coverAmount ? : number ;
premium ? : number ;
currency ? : string ;
contractAddress ? : string ;
expiration ? : number ;
status ? : number ;
refAddress ? : string ;
}
// declare interface CoversArray {
// [index:number] : Cover;
// }
export default CatalogItem