@gearbox-protocol/sdk 12.3.15 → 12.3.16

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.
@@ -101,7 +101,7 @@ class TokenCompressorContract extends import_sdk.BaseContract {
101
101
  const postfix = multivaultSymbol ? `[${multivaultSymbol}]` : "";
102
102
  return {
103
103
  ...tokenInfo,
104
- symbol: `${tokenInfo.symbol} ${postfix}`
104
+ symbol: !postfix ? tokenInfo.symbol : `${tokenInfo.symbol} ${postfix}`
105
105
  };
106
106
  });
107
107
  return tokenInfos;
@@ -81,7 +81,7 @@ class TokenCompressorContract extends BaseContract {
81
81
  const postfix = multivaultSymbol ? `[${multivaultSymbol}]` : "";
82
82
  return {
83
83
  ...tokenInfo,
84
- symbol: `${tokenInfo.symbol} ${postfix}`
84
+ symbol: !postfix ? tokenInfo.symbol : `${tokenInfo.symbol} ${postfix}`
85
85
  };
86
86
  });
87
87
  return tokenInfos;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gearbox-protocol/sdk",
3
- "version": "12.3.15",
3
+ "version": "12.3.16",
4
4
  "description": "Gearbox SDK",
5
5
  "license": "MIT",
6
6
  "main": "./dist/cjs/sdk/index.js",