@paraspell/sdk-common 11.3.2 → 11.4.1

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/dist/index.cjs CHANGED
@@ -161,8 +161,9 @@ var isSystemChain = function isSystemChain(chain) {
161
161
  return systemChains.includes(chain) || isRelayChain(chain);
162
162
  };
163
163
  var isTrustedChain = function isTrustedChain(chain) {
164
+ var trusted = ['Mythos', 'Encointer'];
164
165
  var isTrustedByAh = function isTrustedByAh(chain) {
165
- return ['Mythos'].includes(chain);
166
+ return trusted.includes(chain);
166
167
  };
167
168
  return isTrustedByAh(chain) || isSystemChain(chain);
168
169
  };
package/dist/index.mjs CHANGED
@@ -159,8 +159,9 @@ var isSystemChain = function isSystemChain(chain) {
159
159
  return systemChains.includes(chain) || isRelayChain(chain);
160
160
  };
161
161
  var isTrustedChain = function isTrustedChain(chain) {
162
+ var trusted = ['Mythos', 'Encointer'];
162
163
  var isTrustedByAh = function isTrustedByAh(chain) {
163
- return ['Mythos'].includes(chain);
164
+ return trusted.includes(chain);
164
165
  };
165
166
  return isTrustedByAh(chain) || isSystemChain(chain);
166
167
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@paraspell/sdk-common",
3
- "version": "11.3.2",
3
+ "version": "11.4.1",
4
4
  "description": "SDK common code for ParaSpell XCM/XCMP tool for developers",
5
5
  "repository": {
6
6
  "type": "git",