From 062aff78999fbdb3f3d80aa96028516f246723ba Mon Sep 17 00:00:00 2001 From: Rocky Murdoch Date: Wed, 30 Oct 2024 23:33:40 +0200 Subject: [PATCH] test: add AggregatorType to lib/constants --- lib/constants.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/constants.js b/lib/constants.js index f5fde3d40f..8f55daf0db 100644 --- a/lib/constants.js +++ b/lib/constants.js @@ -157,6 +157,11 @@ const ContractCode = { CoverProducts: 'CP', }; +const AggregatorType = { + ETH: 0, + USD: 1, +}; + module.exports = { Assets, CoverStatus, @@ -171,4 +176,5 @@ module.exports = { NXMasterOwnerParamType, PoolAsset, ContractCode, + AggregatorType, };