@xchainjs/xchain-thorchain 3.0.1 → 3.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/index.esm.js +1 -1
- package/lib/index.js +1 -1
- package/package.json +1 -1
package/lib/index.esm.js
CHANGED
|
@@ -3105,7 +3105,7 @@ const getDenom = (asset) => {
|
|
|
3105
3105
|
if (isSecuredAsset(asset))
|
|
3106
3106
|
return assetToString(asset).toLowerCase();
|
|
3107
3107
|
if (isTCYAsset(asset))
|
|
3108
|
-
return
|
|
3108
|
+
return TCY_DENOM;
|
|
3109
3109
|
return asset.symbol.toLowerCase();
|
|
3110
3110
|
};
|
|
3111
3111
|
/**
|
package/lib/index.js
CHANGED
|
@@ -3131,7 +3131,7 @@ const getDenom = (asset) => {
|
|
|
3131
3131
|
if (xchainUtil.isSecuredAsset(asset))
|
|
3132
3132
|
return xchainUtil.assetToString(asset).toLowerCase();
|
|
3133
3133
|
if (isTCYAsset(asset))
|
|
3134
|
-
return
|
|
3134
|
+
return TCY_DENOM;
|
|
3135
3135
|
return asset.symbol.toLowerCase();
|
|
3136
3136
|
};
|
|
3137
3137
|
/**
|