@argonprotocol/mainchain 1.4.0-dev.acff7e48 → 1.4.0-dev.c55a5aa8

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.
@@ -1637,10 +1637,6 @@ declare module '@polkadot/api-base/types/errors' {
1637
1637
  UnregisteredAsset: AugmentedError<ApiType>;
1638
1638
  };
1639
1639
  treasury: {
1640
- /**
1641
- * The added amount would exceed the activated securitization
1642
- **/
1643
- ActivatedSecuritizationExceeded: AugmentedError<ApiType>;
1644
1640
  /**
1645
1641
  * This fund has already been renewed
1646
1642
  **/
@@ -3708,8 +3704,8 @@ declare module '@polkadot/api-base/types/events' {
3708
3704
  participatingVaults: u32;
3709
3705
  }>;
3710
3706
  /**
3711
- * Some mining bond capital was refunded due to less activated vault funds than bond
3712
- * capital
3707
+ * Some mining bond capital was refunded because vault securitized satoshis (`sats *
3708
+ * securitization ratio`) were lower than bond capital
3713
3709
  **/
3714
3710
  RefundedTreasuryCapital: AugmentedEvent<ApiType, [
3715
3711
  frameId: u64,
@@ -11966,6 +11962,7 @@ declare module '@polkadot/types/lookup' {
11966
11962
  readonly securitizationTarget: Compact<u128>;
11967
11963
  readonly securitizationLocked: Compact<u128>;
11968
11964
  readonly securitizationPendingActivation: Compact<u128>;
11965
+ readonly lockedSatoshis: Compact<u64>;
11969
11966
  readonly securitizedSatoshis: Compact<u64>;
11970
11967
  readonly securitizationReleaseSchedule: BTreeMap<u64, u128>;
11971
11968
  readonly securitizationRatio: Compact<u128>;
@@ -12472,11 +12469,10 @@ declare module '@polkadot/types/lookup' {
12472
12469
  readonly isInternalError: boolean;
12473
12470
  readonly isCouldNotFindTreasury: boolean;
12474
12471
  readonly isMaxContributorsExceeded: boolean;
12475
- readonly isActivatedSecuritizationExceeded: boolean;
12476
12472
  readonly isMaxVaultsExceeded: boolean;
12477
12473
  readonly isAlreadyRenewed: boolean;
12478
12474
  readonly isNotAVaultOperator: boolean;
12479
- readonly type: 'ContributionTooLow' | 'VaultNotAcceptingMiningBonds' | 'BelowMinimum' | 'NotAFundContributor' | 'InternalError' | 'CouldNotFindTreasury' | 'MaxContributorsExceeded' | 'ActivatedSecuritizationExceeded' | 'MaxVaultsExceeded' | 'AlreadyRenewed' | 'NotAVaultOperator';
12475
+ readonly type: 'ContributionTooLow' | 'VaultNotAcceptingMiningBonds' | 'BelowMinimum' | 'NotAFundContributor' | 'InternalError' | 'CouldNotFindTreasury' | 'MaxContributorsExceeded' | 'MaxVaultsExceeded' | 'AlreadyRenewed' | 'NotAVaultOperator';
12480
12476
  }
12481
12477
  /** @name PalletFeeControlError (534) */
12482
12478
  interface PalletFeeControlError extends Enum {