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.
|
@@ -541,7 +541,7 @@ exports.coreumAminoConverters = {
|
|
|
541
541
|
...exports.ftAminoConverters,
|
|
542
542
|
...exports.dexAminoConverters,
|
|
543
543
|
...exports.nftAminoConverters,
|
|
544
|
-
...
|
|
544
|
+
// ...nftBetaAminoConverters,
|
|
545
545
|
};
|
|
546
546
|
// Create AminoTypes instance
|
|
547
547
|
function createCoreumAminoTypes() {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { coreumRegistry,
|
|
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
|
-
...
|
|
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() {
|