coreum-js 2.18.2 → 2.18.4

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.
@@ -411,7 +411,7 @@ class Client {
411
411
  });
412
412
  this._client.aminoTypes.register = {
413
413
  ...this._client.aminoTypes.register,
414
- ...(0, coreum_1.createCoreumAminoTypes)(),
414
+ ...coreum_1.coreumAminoConverters,
415
415
  };
416
416
  }
417
417
  catch (e) {
@@ -541,7 +541,7 @@ exports.coreumAminoConverters = {
541
541
  ...exports.ftAminoConverters,
542
542
  ...exports.dexAminoConverters,
543
543
  ...exports.nftAminoConverters,
544
- ...exports.nftBetaAminoConverters,
544
+ // ...nftBetaAminoConverters,
545
545
  };
546
546
  // Create AminoTypes instance
547
547
  function createCoreumAminoTypes() {
@@ -1,4 +1,4 @@
1
- import { coreumRegistry, createCoreumAminoTypes } from "../coreum";
1
+ import { coreumRegistry, coreumAminoConverters, } from "../coreum";
2
2
  import { cosmwasmRegistry } from "../wasm/v1";
3
3
  import { setupFTExtension } from "../coreum/extensions/ft";
4
4
  import { setupNFTExtension } from "../coreum/extensions/nft";
@@ -415,7 +415,7 @@ export class Client {
415
415
  });
416
416
  this._client.aminoTypes.register = {
417
417
  ...this._client.aminoTypes.register,
418
- ...createCoreumAminoTypes(),
418
+ ...coreumAminoConverters,
419
419
  };
420
420
  }
421
421
  catch (e) {
@@ -538,7 +538,7 @@ export const coreumAminoConverters = {
538
538
  ...ftAminoConverters,
539
539
  ...dexAminoConverters,
540
540
  ...nftAminoConverters,
541
- ...nftBetaAminoConverters,
541
+ // ...nftBetaAminoConverters,
542
542
  };
543
543
  // Create AminoTypes instance
544
544
  export function createCoreumAminoTypes() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "coreum-js",
3
- "version": "2.18.2",
3
+ "version": "2.18.4",
4
4
  "description": "JS/TS Library to to easily make use of the Coreum Blockchain",
5
5
  "main": "dist/main/index.js",
6
6
  "module": "dist/module/index.js",