@argonprotocol/mainchain 1.4.12-dev.d1c83d27 → 1.4.12-dev.dd86fab9
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/README.md +0 -10
- package/browser/index.d.ts +705 -842
- package/browser/index.js +14 -1343
- package/browser/index.js.map +1 -1
- package/lib/index.cjs +16 -1346
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.cts +705 -842
- package/lib/index.d.ts +705 -842
- package/lib/index.js +18 -1348
- package/lib/index.js.map +1 -1
- package/package.json +2 -3
- package/src/interfaces/augment-api-consts.ts +10 -1
- package/src/interfaces/augment-api-errors.ts +103 -9
- package/src/interfaces/augment-api-events.ts +105 -46
- package/src/interfaces/augment-api-query.ts +51 -3
- package/src/interfaces/augment-api-runtime.ts +0 -1
- package/src/interfaces/augment-api-tx.ts +54 -47
- package/src/interfaces/augment-api.ts +0 -1
- package/src/interfaces/augment-types.ts +0 -1
- package/src/interfaces/lookup.ts +379 -292
- package/src/interfaces/registry.ts +8 -1
- package/src/interfaces/types-lookup.ts +420 -309
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
// Auto-generated via `yarn polkadot-types-from-defs`, do not edit
|
|
2
|
-
/* eslint-disable */
|
|
3
2
|
|
|
4
3
|
// import type lookup before we augment - in some environments
|
|
5
4
|
// this is required to allow for ambient/previous definitions
|
|
@@ -119,6 +118,10 @@ import type {
|
|
|
119
118
|
PalletBalancesReasons,
|
|
120
119
|
PalletBalancesReserveData,
|
|
121
120
|
PalletBalancesUnexpectedKind,
|
|
121
|
+
PalletBitcoinFissionsCall,
|
|
122
|
+
PalletBitcoinFissionsError,
|
|
123
|
+
PalletBitcoinFissionsEvent,
|
|
124
|
+
PalletBitcoinFissionsFission,
|
|
122
125
|
PalletBitcoinLocksCall,
|
|
123
126
|
PalletBitcoinLocksError,
|
|
124
127
|
PalletBitcoinLocksEvent,
|
|
@@ -431,6 +434,10 @@ declare module '@polkadot/types/types/registry' {
|
|
|
431
434
|
PalletBalancesReasons: PalletBalancesReasons;
|
|
432
435
|
PalletBalancesReserveData: PalletBalancesReserveData;
|
|
433
436
|
PalletBalancesUnexpectedKind: PalletBalancesUnexpectedKind;
|
|
437
|
+
PalletBitcoinFissionsCall: PalletBitcoinFissionsCall;
|
|
438
|
+
PalletBitcoinFissionsError: PalletBitcoinFissionsError;
|
|
439
|
+
PalletBitcoinFissionsEvent: PalletBitcoinFissionsEvent;
|
|
440
|
+
PalletBitcoinFissionsFission: PalletBitcoinFissionsFission;
|
|
434
441
|
PalletBitcoinLocksCall: PalletBitcoinLocksCall;
|
|
435
442
|
PalletBitcoinLocksError: PalletBitcoinLocksError;
|
|
436
443
|
PalletBitcoinLocksEvent: PalletBitcoinLocksEvent;
|