@argonprotocol/mainchain 1.4.6-dev.4eef1f62 → 1.4.6-dev.6400125a

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.
Files changed (31) hide show
  1. package/browser/artifacts/contracts/ArgonToken.sol/ArgonToken.json +1 -1
  2. package/browser/artifacts/contracts/ArgonotToken.sol/ArgonotToken.json +1 -1
  3. package/browser/artifacts/contracts/MintingGateway.sol/MintingGateway.json +128 -37
  4. package/browser/artifacts/contracts/ProxyArtifacts.sol/ProxyAdmin.json +1 -1
  5. package/browser/artifacts/contracts/ProxyArtifacts.sol/TransparentUpgradeableProxy.json +1 -1
  6. package/browser/index.d.ts +7 -16
  7. package/browser/index.js +298 -104
  8. package/browser/index.js.map +1 -1
  9. package/lib/artifacts/contracts/ArgonToken.sol/ArgonToken.json +1 -1
  10. package/lib/artifacts/contracts/ArgonotToken.sol/ArgonotToken.json +1 -1
  11. package/lib/artifacts/contracts/MintingGateway.sol/MintingGateway.json +128 -37
  12. package/lib/artifacts/contracts/ProxyArtifacts.sol/ProxyAdmin.json +1 -1
  13. package/lib/artifacts/contracts/ProxyArtifacts.sol/TransparentUpgradeableProxy.json +1 -1
  14. package/lib/index.cjs +352 -104
  15. package/lib/index.cjs.map +1 -1
  16. package/lib/index.d.cts +7 -16
  17. package/lib/index.d.ts +7 -16
  18. package/lib/index.js +352 -104
  19. package/lib/index.js.map +1 -1
  20. package/package.json +2 -2
  21. package/src/interfaces/augment-api-consts.ts +1 -0
  22. package/src/interfaces/augment-api-errors.ts +1 -2
  23. package/src/interfaces/augment-api-events.ts +1 -1
  24. package/src/interfaces/augment-api-query.ts +1 -0
  25. package/src/interfaces/augment-api-runtime.ts +1 -0
  26. package/src/interfaces/augment-api-tx.ts +2 -5
  27. package/src/interfaces/augment-api.ts +1 -0
  28. package/src/interfaces/augment-types.ts +1 -0
  29. package/src/interfaces/lookup.ts +3 -1
  30. package/src/interfaces/registry.ts +1 -0
  31. package/src/interfaces/types-lookup.ts +0 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@argonprotocol/mainchain",
3
- "version": "1.4.6-dev.4eef1f62",
3
+ "version": "1.4.6-dev.6400125a",
4
4
  "description": "A client for accessing the Argon mainchain apis.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -65,7 +65,7 @@
65
65
  },
66
66
  "devDependencies": {
67
67
  "@argonprotocol/ethereum-contracts": "workspace:*",
68
- "@argonprotocol/testing": "1.4.6-dev.4eef1f62",
68
+ "@argonprotocol/testing": "1.4.6-dev.6400125a",
69
69
  "@polkadot/typegen": "^16.5.6",
70
70
  "@substrate/ss58-registry": "^1.51.0",
71
71
  "@types/node": "^20",
@@ -1,4 +1,5 @@
1
1
  // Auto-generated via `yarn polkadot-types-from-chain`, do not edit
2
+ /* eslint-disable */
2
3
 
3
4
  // import type lookup before we augment - in some environments
4
5
  // this is required to allow for ambient/previous definitions
@@ -445,8 +445,7 @@ declare module '@polkadot/api-base/types/errors' {
445
445
  **/
446
446
  InvalidMintingAuthorityCollateral: AugmentedError<ApiType>;
447
447
  /**
448
- * The provided signer-authorized deactivation signature did not match the expected
449
- * Minting Authority signing key.
448
+ * Reserved legacy error for invalid signer-keyed deactivation signatures.
450
449
  **/
451
450
  InvalidMintingAuthorityDeactivationSignature: AugmentedError<ApiType>;
452
451
  /**
@@ -661,7 +661,7 @@ declare module '@polkadot/api-base/types/events' {
661
661
  { sourceChain: PalletCrosschainTransferSourceChain; destinationSigningKey: H160 }
662
662
  >;
663
663
  /**
664
- * An operator queued the signer-authorized Ethereum deactivation for a Minting Authority.
664
+ * An operator queued the council-approved Ethereum deactivation for a Minting Authority.
665
665
  **/
666
666
  MintingAuthorityDeactivationQueued: AugmentedEvent<
667
667
  ApiType,
@@ -1,4 +1,5 @@
1
1
  // Auto-generated via `yarn polkadot-types-from-chain`, do not edit
2
+ /* eslint-disable */
2
3
 
3
4
  // import type lookup before we augment - in some environments
4
5
  // this is required to allow for ambient/previous definitions
@@ -1,4 +1,5 @@
1
1
  // Auto-generated via `yarn polkadot-types-from-chain`, do not edit
2
+ /* eslint-disable */
2
3
 
3
4
  // import type lookup before we augment - in some environments
4
5
  // this is required to allow for ambient/previous definitions
@@ -548,11 +548,8 @@ declare module '@polkadot/api-base/types/submittable' {
548
548
  [H256, U8aFixed, Compact<u128>, Compact<u128>]
549
549
  >;
550
550
  deactivateMintingAuthority: AugmentedSubmittable<
551
- (
552
- destinationSigningKey: H160 | string | Uint8Array,
553
- signature: U8aFixed | string | Uint8Array,
554
- ) => SubmittableExtrinsic<ApiType>,
555
- [H160, U8aFixed]
551
+ (destinationSigningKey: H160 | string | Uint8Array) => SubmittableExtrinsic<ApiType>,
552
+ [H160]
556
553
  >;
557
554
  forceSetGlobalIssuanceCouncil: AugmentedSubmittable<
558
555
  (
@@ -1,4 +1,5 @@
1
1
  // Auto-generated via `yarn polkadot-types-from-chain`, do not edit
2
+ /* eslint-disable */
2
3
 
3
4
  import './augment-api-consts.js';
4
5
  import './augment-api-errors.js';
@@ -1,4 +1,5 @@
1
1
  // Auto-generated via `yarn polkadot-types-from-defs`, do not edit
2
+ /* eslint-disable */
2
3
 
3
4
  // import type lookup before we augment - in some environments
4
5
  // this is required to allow for ambient/previous definitions
@@ -1,4 +1,7 @@
1
1
  // Auto-generated via `yarn polkadot-types-from-defs`, do not edit
2
+ /* eslint-disable */
3
+
4
+ /* eslint-disable sort-keys */
2
5
 
3
6
  export default {
4
7
  /**
@@ -2931,7 +2934,6 @@ export default {
2931
2934
  },
2932
2935
  deactivate_minting_authority: {
2933
2936
  destinationSigningKey: 'H160',
2934
- signature: '[u8;65]',
2935
2937
  },
2936
2938
  transfer_out: {
2937
2939
  destinationChain: 'PalletCrosschainTransferSourceChain',
@@ -1,4 +1,5 @@
1
1
  // Auto-generated via `yarn polkadot-types-from-defs`, do not edit
2
+ /* eslint-disable */
2
3
 
3
4
  // import type lookup before we augment - in some environments
4
5
  // this is required to allow for ambient/previous definitions
@@ -3433,7 +3433,6 @@ declare module '@polkadot/types/lookup' {
3433
3433
  readonly isDeactivateMintingAuthority: boolean;
3434
3434
  readonly asDeactivateMintingAuthority: {
3435
3435
  readonly destinationSigningKey: H160;
3436
- readonly signature: U8aFixed;
3437
3436
  } & Struct;
3438
3437
  readonly isTransferOut: boolean;
3439
3438
  readonly asTransferOut: {