@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.
- package/browser/artifacts/contracts/ArgonToken.sol/ArgonToken.json +1 -1
- package/browser/artifacts/contracts/ArgonotToken.sol/ArgonotToken.json +1 -1
- package/browser/artifacts/contracts/MintingGateway.sol/MintingGateway.json +128 -37
- package/browser/artifacts/contracts/ProxyArtifacts.sol/ProxyAdmin.json +1 -1
- package/browser/artifacts/contracts/ProxyArtifacts.sol/TransparentUpgradeableProxy.json +1 -1
- package/browser/index.d.ts +7 -16
- package/browser/index.js +298 -104
- package/browser/index.js.map +1 -1
- package/lib/artifacts/contracts/ArgonToken.sol/ArgonToken.json +1 -1
- package/lib/artifacts/contracts/ArgonotToken.sol/ArgonotToken.json +1 -1
- package/lib/artifacts/contracts/MintingGateway.sol/MintingGateway.json +128 -37
- package/lib/artifacts/contracts/ProxyArtifacts.sol/ProxyAdmin.json +1 -1
- package/lib/artifacts/contracts/ProxyArtifacts.sol/TransparentUpgradeableProxy.json +1 -1
- package/lib/index.cjs +352 -104
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.cts +7 -16
- package/lib/index.d.ts +7 -16
- package/lib/index.js +352 -104
- package/lib/index.js.map +1 -1
- package/package.json +2 -2
- package/src/interfaces/augment-api-consts.ts +1 -0
- package/src/interfaces/augment-api-errors.ts +1 -2
- package/src/interfaces/augment-api-events.ts +1 -1
- package/src/interfaces/augment-api-query.ts +1 -0
- package/src/interfaces/augment-api-runtime.ts +1 -0
- package/src/interfaces/augment-api-tx.ts +2 -5
- package/src/interfaces/augment-api.ts +1 -0
- package/src/interfaces/augment-types.ts +1 -0
- package/src/interfaces/lookup.ts +3 -1
- package/src/interfaces/registry.ts +1 -0
- 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.
|
|
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.
|
|
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",
|
|
@@ -445,8 +445,7 @@ declare module '@polkadot/api-base/types/errors' {
|
|
|
445
445
|
**/
|
|
446
446
|
InvalidMintingAuthorityCollateral: AugmentedError<ApiType>;
|
|
447
447
|
/**
|
|
448
|
-
*
|
|
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
|
|
664
|
+
* An operator queued the council-approved Ethereum deactivation for a Minting Authority.
|
|
665
665
|
**/
|
|
666
666
|
MintingAuthorityDeactivationQueued: AugmentedEvent<
|
|
667
667
|
ApiType,
|
|
@@ -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
|
-
|
|
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
|
(
|
package/src/interfaces/lookup.ts
CHANGED
|
@@ -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',
|
|
@@ -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: {
|