@substrate/api-sidecar 17.3.4 → 17.4.0

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 (61) hide show
  1. package/README.md +3 -2
  2. package/build/package.json +1 -1
  3. package/build/src/controllers/blocks/BlocksController.d.ts +9 -1
  4. package/build/src/controllers/blocks/BlocksController.js +18 -2
  5. package/build/src/controllers/blocks/BlocksController.js.map +1 -1
  6. package/build/src/controllers/blocks/BlocksExtrinsicsController.d.ts +2 -2
  7. package/build/src/controllers/blocks/BlocksExtrinsicsController.js +3 -1
  8. package/build/src/controllers/blocks/BlocksExtrinsicsController.js.map +1 -1
  9. package/build/src/controllers/transaction/TransactionMaterialController.d.ts +2 -3
  10. package/build/src/controllers/transaction/TransactionMaterialController.js +3 -6
  11. package/build/src/controllers/transaction/TransactionMaterialController.js.map +1 -1
  12. package/build/src/services/accounts/AccountsStakingPayoutsService.js +5 -4
  13. package/build/src/services/accounts/AccountsStakingPayoutsService.js.map +1 -1
  14. package/build/src/services/blocks/BlocksService.d.ts +7 -5
  15. package/build/src/services/blocks/BlocksService.js +16 -4
  16. package/build/src/services/blocks/BlocksService.js.map +1 -1
  17. package/build/src/services/blocks/BlocksService.spec.js +232 -1
  18. package/build/src/services/blocks/BlocksService.spec.js.map +1 -1
  19. package/build/src/services/blocks/XCMDecoder.d.ts +18 -0
  20. package/build/src/services/blocks/XCMDecoder.js +145 -0
  21. package/build/src/services/blocks/XCMDecoder.js.map +1 -0
  22. package/build/src/types/responses/Block.d.ts +2 -0
  23. package/build/src/types/responses/BlockXCMMessages.d.ts +19 -0
  24. package/build/src/types/responses/BlockXCMMessages.js +18 -0
  25. package/build/src/types/responses/BlockXCMMessages.js.map +1 -0
  26. package/build/src/types/responses/SanitizedArgs.d.ts +3 -1
  27. package/build/src/types/responses/SanitizedArgs.js +1 -1
  28. package/build/src/types/responses/SanitizedBackedCandidate.d.ts +7 -0
  29. package/build/src/types/responses/SanitizedBackedCandidate.js +18 -0
  30. package/build/src/types/responses/SanitizedBackedCandidate.js.map +1 -0
  31. package/build/src/types/responses/SanitizedBackedCandidateDescriptor.d.ts +11 -0
  32. package/build/src/types/responses/SanitizedBackedCandidateDescriptor.js +18 -0
  33. package/build/src/types/responses/SanitizedBackedCandidateDescriptor.js.map +1 -0
  34. package/build/src/types/responses/SanitizedBackedCandidateValidityVotes.d.ts +6 -0
  35. package/build/src/types/responses/SanitizedBackedCandidateValidityVotes.js +18 -0
  36. package/build/src/types/responses/SanitizedBackedCandidateValidityVotes.js.map +1 -0
  37. package/build/src/types/responses/SanitizedBackedCandidatesCommitments.d.ts +8 -0
  38. package/build/src/types/responses/SanitizedBackedCandidatesCommitments.js +18 -0
  39. package/build/src/types/responses/SanitizedBackedCandidatesCommitments.js.map +1 -0
  40. package/build/src/types/responses/SanitizedBitfield.d.ts +5 -0
  41. package/build/src/types/responses/SanitizedBitfield.js +18 -0
  42. package/build/src/types/responses/SanitizedBitfield.js.map +1 -0
  43. package/build/src/types/responses/SanitizedCandidate.d.ts +6 -0
  44. package/build/src/types/responses/SanitizedCandidate.js +18 -0
  45. package/build/src/types/responses/SanitizedCandidate.js.map +1 -0
  46. package/build/src/types/responses/SanitizedParachainInherentData.d.ts +8 -0
  47. package/build/src/types/responses/SanitizedParachainInherentData.js +18 -0
  48. package/build/src/types/responses/SanitizedParachainInherentData.js.map +1 -0
  49. package/build/src/types/responses/SanitizedParachainValidationData.d.ts +6 -0
  50. package/build/src/types/responses/SanitizedParachainValidationData.js +18 -0
  51. package/build/src/types/responses/SanitizedParachainValidationData.js.map +1 -0
  52. package/build/src/types/responses/SanitizedParentInherentData.d.ts +10 -0
  53. package/build/src/types/responses/SanitizedParentInherentData.js +18 -0
  54. package/build/src/types/responses/SanitizedParentInherentData.js.map +1 -0
  55. package/build/src/types/responses/SanitizediDisputeStatementSet.d.ts +5 -0
  56. package/build/src/types/responses/SanitizediDisputeStatementSet.js +18 -0
  57. package/build/src/types/responses/SanitizediDisputeStatementSet.js.map +1 -0
  58. package/build/src/types/responses/index.d.ts +1 -0
  59. package/build/src/types/responses/index.js +1 -0
  60. package/build/src/types/responses/index.js.map +1 -1
  61. package/package.json +1 -1
@@ -0,0 +1,11 @@
1
+ export interface ISanitizedBackedCandidateDescriptor {
2
+ paraId: string;
3
+ relayParent: `0x${string}`;
4
+ collator: `0x${string}`;
5
+ persistedValidationDataHash: `0x${string}`;
6
+ povHash: `0x${string}`;
7
+ erasureRoot: `0x${string}`;
8
+ signature: `0x${string}`;
9
+ paraHead: `0x${string}`;
10
+ validationCodeHash: `0x${string}`;
11
+ }
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ // Copyright 2017-2023 Parity Technologies (UK) Ltd.
3
+ // This file is part of Substrate API Sidecar.
4
+ //
5
+ // Substrate API Sidecar is free software: you can redistribute it and/or modify
6
+ // it under the terms of the GNU General Public License as published by
7
+ // the Free Software Foundation, either version 3 of the License, or
8
+ // (at your option) any later version.
9
+ //
10
+ // This program is distributed in the hope that it will be useful,
11
+ // but WITHOUT ANY WARRANTY; without even the implied warranty of
12
+ // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
+ // GNU General Public License for more details.
14
+ //
15
+ // You should have received a copy of the GNU General Public License
16
+ // along with this program. If not, see <http://www.gnu.org/licenses/>.
17
+ Object.defineProperty(exports, "__esModule", { value: true });
18
+ //# sourceMappingURL=SanitizedBackedCandidateDescriptor.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SanitizedBackedCandidateDescriptor.js","sourceRoot":"","sources":["../../../../src/types/responses/SanitizedBackedCandidateDescriptor.ts"],"names":[],"mappings":";AAAA,oDAAoD;AACpD,8CAA8C;AAC9C,EAAE;AACF,gFAAgF;AAChF,uEAAuE;AACvE,oEAAoE;AACpE,sCAAsC;AACtC,EAAE;AACF,kEAAkE;AAClE,iEAAiE;AACjE,gEAAgE;AAChE,+CAA+C;AAC/C,EAAE;AACF,oEAAoE;AACpE,wEAAwE"}
@@ -0,0 +1,6 @@
1
+ export interface ISanitizedBackedCandidateExplicitValidityVote {
2
+ explicit: `0x${string}`;
3
+ }
4
+ export interface ISanitizedBackedCandidateImplicitValidityVote {
5
+ implicit: `0x${string}`;
6
+ }
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ // Copyright 2017-2023 Parity Technologies (UK) Ltd.
3
+ // This file is part of Substrate API Sidecar.
4
+ //
5
+ // Substrate API Sidecar is free software: you can redistribute it and/or modify
6
+ // it under the terms of the GNU General Public License as published by
7
+ // the Free Software Foundation, either version 3 of the License, or
8
+ // (at your option) any later version.
9
+ //
10
+ // This program is distributed in the hope that it will be useful,
11
+ // but WITHOUT ANY WARRANTY; without even the implied warranty of
12
+ // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
+ // GNU General Public License for more details.
14
+ //
15
+ // You should have received a copy of the GNU General Public License
16
+ // along with this program. If not, see <http://www.gnu.org/licenses/>.
17
+ Object.defineProperty(exports, "__esModule", { value: true });
18
+ //# sourceMappingURL=SanitizedBackedCandidateValidityVotes.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SanitizedBackedCandidateValidityVotes.js","sourceRoot":"","sources":["../../../../src/types/responses/SanitizedBackedCandidateValidityVotes.ts"],"names":[],"mappings":";AAAA,oDAAoD;AACpD,8CAA8C;AAC9C,EAAE;AACF,gFAAgF;AAChF,uEAAuE;AACvE,oEAAoE;AACpE,sCAAsC;AACtC,EAAE;AACF,kEAAkE;AAClE,iEAAiE;AACjE,gEAAgE;AAChE,+CAA+C;AAC/C,EAAE;AACF,oEAAoE;AACpE,wEAAwE"}
@@ -0,0 +1,8 @@
1
+ export interface ISanitizedBackedCandidateCommitments {
2
+ upwardMessages: string[];
3
+ horizontalMessages: string[];
4
+ newValidationCode: string | undefined;
5
+ headData: `0x${string}`;
6
+ processedDownwardMessages: string;
7
+ hrmpWatermark: string;
8
+ }
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ // Copyright 2017-2023 Parity Technologies (UK) Ltd.
3
+ // This file is part of Substrate API Sidecar.
4
+ //
5
+ // Substrate API Sidecar is free software: you can redistribute it and/or modify
6
+ // it under the terms of the GNU General Public License as published by
7
+ // the Free Software Foundation, either version 3 of the License, or
8
+ // (at your option) any later version.
9
+ //
10
+ // This program is distributed in the hope that it will be useful,
11
+ // but WITHOUT ANY WARRANTY; without even the implied warranty of
12
+ // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
+ // GNU General Public License for more details.
14
+ //
15
+ // You should have received a copy of the GNU General Public License
16
+ // along with this program. If not, see <http://www.gnu.org/licenses/>.
17
+ Object.defineProperty(exports, "__esModule", { value: true });
18
+ //# sourceMappingURL=SanitizedBackedCandidatesCommitments.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SanitizedBackedCandidatesCommitments.js","sourceRoot":"","sources":["../../../../src/types/responses/SanitizedBackedCandidatesCommitments.ts"],"names":[],"mappings":";AAAA,oDAAoD;AACpD,8CAA8C;AAC9C,EAAE;AACF,gFAAgF;AAChF,uEAAuE;AACvE,oEAAoE;AACpE,sCAAsC;AACtC,EAAE;AACF,kEAAkE;AAClE,iEAAiE;AACjE,gEAAgE;AAChE,+CAA+C;AAC/C,EAAE;AACF,oEAAoE;AACpE,wEAAwE"}
@@ -0,0 +1,5 @@
1
+ export interface ISanitizedBitfield {
2
+ payload: `0x${string}`;
3
+ validatorIndex: string;
4
+ signature: `0x${string}`;
5
+ }
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ // Copyright 2017-2023 Parity Technologies (UK) Ltd.
3
+ // This file is part of Substrate API Sidecar.
4
+ //
5
+ // Substrate API Sidecar is free software: you can redistribute it and/or modify
6
+ // it under the terms of the GNU General Public License as published by
7
+ // the Free Software Foundation, either version 3 of the License, or
8
+ // (at your option) any later version.
9
+ //
10
+ // This program is distributed in the hope that it will be useful,
11
+ // but WITHOUT ANY WARRANTY; without even the implied warranty of
12
+ // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
+ // GNU General Public License for more details.
14
+ //
15
+ // You should have received a copy of the GNU General Public License
16
+ // along with this program. If not, see <http://www.gnu.org/licenses/>.
17
+ Object.defineProperty(exports, "__esModule", { value: true });
18
+ //# sourceMappingURL=SanitizedBitfield.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SanitizedBitfield.js","sourceRoot":"","sources":["../../../../src/types/responses/SanitizedBitfield.ts"],"names":[],"mappings":";AAAA,oDAAoD;AACpD,8CAA8C;AAC9C,EAAE;AACF,gFAAgF;AAChF,uEAAuE;AACvE,oEAAoE;AACpE,sCAAsC;AACtC,EAAE;AACF,kEAAkE;AAClE,iEAAiE;AACjE,gEAAgE;AAChE,+CAA+C;AAC/C,EAAE;AACF,oEAAoE;AACpE,wEAAwE"}
@@ -0,0 +1,6 @@
1
+ import { ISanitizedBackedCandidateDescriptor } from './SanitizedBackedCandidateDescriptor';
2
+ import { ISanitizedBackedCandidateCommitments } from './SanitizedBackedCandidatesCommitments';
3
+ export interface ISanitizedCandidate {
4
+ descriptor: ISanitizedBackedCandidateDescriptor;
5
+ commitments: ISanitizedBackedCandidateCommitments;
6
+ }
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ // Copyright 2017-2023 Parity Technologies (UK) Ltd.
3
+ // This file is part of Substrate API Sidecar.
4
+ //
5
+ // Substrate API Sidecar is free software: you can redistribute it and/or modify
6
+ // it under the terms of the GNU General Public License as published by
7
+ // the Free Software Foundation, either version 3 of the License, or
8
+ // (at your option) any later version.
9
+ //
10
+ // This program is distributed in the hope that it will be useful,
11
+ // but WITHOUT ANY WARRANTY; without even the implied warranty of
12
+ // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
+ // GNU General Public License for more details.
14
+ //
15
+ // You should have received a copy of the GNU General Public License
16
+ // along with this program. If not, see <http://www.gnu.org/licenses/>.
17
+ Object.defineProperty(exports, "__esModule", { value: true });
18
+ //# sourceMappingURL=SanitizedCandidate.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SanitizedCandidate.js","sourceRoot":"","sources":["../../../../src/types/responses/SanitizedCandidate.ts"],"names":[],"mappings":";AAAA,oDAAoD;AACpD,8CAA8C;AAC9C,EAAE;AACF,gFAAgF;AAChF,uEAAuE;AACvE,oEAAoE;AACpE,sCAAsC;AACtC,EAAE;AACF,kEAAkE;AAClE,iEAAiE;AACjE,gEAAgE;AAChE,+CAA+C;AAC/C,EAAE;AACF,oEAAoE;AACpE,wEAAwE"}
@@ -0,0 +1,8 @@
1
+ import { IDownwardMessage, IHorizontalMessage } from './BlockXCMMessages';
2
+ import { ISanitizedParachainValidationData } from './SanitizedParachainValidationData';
3
+ export interface ISanitizedParachainInherentData {
4
+ validationData: ISanitizedParachainValidationData;
5
+ relayChainState: `0x${string}`[];
6
+ downwardMessages: IDownwardMessage[];
7
+ horizontalMessages: Map<string, IHorizontalMessage[]>;
8
+ }
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ // Copyright 2017-2023 Parity Technologies (UK) Ltd.
3
+ // This file is part of Substrate API Sidecar.
4
+ //
5
+ // Substrate API Sidecar is free software: you can redistribute it and/or modify
6
+ // it under the terms of the GNU General Public License as published by
7
+ // the Free Software Foundation, either version 3 of the License, or
8
+ // (at your option) any later version.
9
+ //
10
+ // This program is distributed in the hope that it will be useful,
11
+ // but WITHOUT ANY WARRANTY; without even the implied warranty of
12
+ // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
+ // GNU General Public License for more details.
14
+ //
15
+ // You should have received a copy of the GNU General Public License
16
+ // along with this program. If not, see <http://www.gnu.org/licenses/>.
17
+ Object.defineProperty(exports, "__esModule", { value: true });
18
+ //# sourceMappingURL=SanitizedParachainInherentData.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SanitizedParachainInherentData.js","sourceRoot":"","sources":["../../../../src/types/responses/SanitizedParachainInherentData.ts"],"names":[],"mappings":";AAAA,oDAAoD;AACpD,8CAA8C;AAC9C,EAAE;AACF,gFAAgF;AAChF,uEAAuE;AACvE,oEAAoE;AACpE,sCAAsC;AACtC,EAAE;AACF,kEAAkE;AAClE,iEAAiE;AACjE,gEAAgE;AAChE,+CAA+C;AAC/C,EAAE;AACF,oEAAoE;AACpE,wEAAwE"}
@@ -0,0 +1,6 @@
1
+ export interface ISanitizedParachainValidationData {
2
+ parentHead: `0x${string}`;
3
+ relayParentNumber: string;
4
+ relayParentStorageRoot: `0x${string}`;
5
+ maxPovSize: string;
6
+ }
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ // Copyright 2017-2023 Parity Technologies (UK) Ltd.
3
+ // This file is part of Substrate API Sidecar.
4
+ //
5
+ // Substrate API Sidecar is free software: you can redistribute it and/or modify
6
+ // it under the terms of the GNU General Public License as published by
7
+ // the Free Software Foundation, either version 3 of the License, or
8
+ // (at your option) any later version.
9
+ //
10
+ // This program is distributed in the hope that it will be useful,
11
+ // but WITHOUT ANY WARRANTY; without even the implied warranty of
12
+ // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
+ // GNU General Public License for more details.
14
+ //
15
+ // You should have received a copy of the GNU General Public License
16
+ // along with this program. If not, see <http://www.gnu.org/licenses/>.
17
+ Object.defineProperty(exports, "__esModule", { value: true });
18
+ //# sourceMappingURL=SanitizedParachainValidationData.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SanitizedParachainValidationData.js","sourceRoot":"","sources":["../../../../src/types/responses/SanitizedParachainValidationData.ts"],"names":[],"mappings":";AAAA,oDAAoD;AACpD,8CAA8C;AAC9C,EAAE;AACF,gFAAgF;AAChF,uEAAuE;AACvE,oEAAoE;AACpE,sCAAsC;AACtC,EAAE;AACF,kEAAkE;AAClE,iEAAiE;AACjE,gEAAgE;AAChE,+CAA+C;AAC/C,EAAE;AACF,oEAAoE;AACpE,wEAAwE"}
@@ -0,0 +1,10 @@
1
+ import { IBlockRaw } from './BlockRaw';
2
+ import { ISanitizedBackedCandidate } from './SanitizedBackedCandidate';
3
+ import { ISanitizedBitfield } from './SanitizedBitfield';
4
+ import { ISanitizedDisputeStatementSet } from './SanitizediDisputeStatementSet';
5
+ export interface ISanitizedParentInherentData {
6
+ bitfields: ISanitizedBitfield[];
7
+ backedCandidates: ISanitizedBackedCandidate[];
8
+ disputes: ISanitizedDisputeStatementSet[];
9
+ parentHeader: IBlockRaw;
10
+ }
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ // Copyright 2017-2023 Parity Technologies (UK) Ltd.
3
+ // This file is part of Substrate API Sidecar.
4
+ //
5
+ // Substrate API Sidecar is free software: you can redistribute it and/or modify
6
+ // it under the terms of the GNU General Public License as published by
7
+ // the Free Software Foundation, either version 3 of the License, or
8
+ // (at your option) any later version.
9
+ //
10
+ // This program is distributed in the hope that it will be useful,
11
+ // but WITHOUT ANY WARRANTY; without even the implied warranty of
12
+ // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
+ // GNU General Public License for more details.
14
+ //
15
+ // You should have received a copy of the GNU General Public License
16
+ // along with this program. If not, see <http://www.gnu.org/licenses/>.
17
+ Object.defineProperty(exports, "__esModule", { value: true });
18
+ //# sourceMappingURL=SanitizedParentInherentData.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SanitizedParentInherentData.js","sourceRoot":"","sources":["../../../../src/types/responses/SanitizedParentInherentData.ts"],"names":[],"mappings":";AAAA,oDAAoD;AACpD,8CAA8C;AAC9C,EAAE;AACF,gFAAgF;AAChF,uEAAuE;AACvE,oEAAoE;AACpE,sCAAsC;AACtC,EAAE;AACF,kEAAkE;AAClE,iEAAiE;AACjE,gEAAgE;AAChE,+CAA+C;AAC/C,EAAE;AACF,oEAAoE;AACpE,wEAAwE"}
@@ -0,0 +1,5 @@
1
+ export interface ISanitizedDisputeStatementSet {
2
+ candidateHash: `0x${string}`;
3
+ session: string;
4
+ statements: string[][];
5
+ }
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ // Copyright 2017-2023 Parity Technologies (UK) Ltd.
3
+ // This file is part of Substrate API Sidecar.
4
+ //
5
+ // Substrate API Sidecar is free software: you can redistribute it and/or modify
6
+ // it under the terms of the GNU General Public License as published by
7
+ // the Free Software Foundation, either version 3 of the License, or
8
+ // (at your option) any later version.
9
+ //
10
+ // This program is distributed in the hope that it will be useful,
11
+ // but WITHOUT ANY WARRANTY; without even the implied warranty of
12
+ // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
+ // GNU General Public License for more details.
14
+ //
15
+ // You should have received a copy of the GNU General Public License
16
+ // along with this program. If not, see <http://www.gnu.org/licenses/>.
17
+ Object.defineProperty(exports, "__esModule", { value: true });
18
+ //# sourceMappingURL=SanitizediDisputeStatementSet.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SanitizediDisputeStatementSet.js","sourceRoot":"","sources":["../../../../src/types/responses/SanitizediDisputeStatementSet.ts"],"names":[],"mappings":";AAAA,oDAAoD;AACpD,8CAA8C;AAC9C,EAAE;AACF,gFAAgF;AAChF,uEAAuE;AACvE,oEAAoE;AACpE,sCAAsC;AACtC,EAAE;AACF,kEAAkE;AAClE,iEAAiE;AACjE,gEAAgE;AAChE,+CAA+C;AAC/C,EAAE;AACF,oEAAoE;AACpE,wEAAwE"}
@@ -9,6 +9,7 @@ export * from './Assets';
9
9
  export * from './At';
10
10
  export * from './Block';
11
11
  export * from './BlockRaw';
12
+ export * from './BlockXCMMessages';
12
13
  export * from './EraPayouts';
13
14
  export * from './Extrinsic';
14
15
  export * from './ForeignAssets';
@@ -40,6 +40,7 @@ __exportStar(require("./Assets"), exports);
40
40
  __exportStar(require("./At"), exports);
41
41
  __exportStar(require("./Block"), exports);
42
42
  __exportStar(require("./BlockRaw"), exports);
43
+ __exportStar(require("./BlockXCMMessages"), exports);
43
44
  __exportStar(require("./EraPayouts"), exports);
44
45
  __exportStar(require("./Extrinsic"), exports);
45
46
  __exportStar(require("./ForeignAssets"), exports);
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/types/responses/index.ts"],"names":[],"mappings":";AAAA,oDAAoD;AACpD,8CAA8C;AAC9C,EAAE;AACF,gFAAgF;AAChF,uEAAuE;AACvE,oEAAoE;AACpE,sCAAsC;AACtC,EAAE;AACF,kEAAkE;AAClE,iEAAiE;AACjE,gEAAgE;AAChE,+CAA+C;AAC/C,EAAE;AACF,oEAAoE;AACpE,wEAAwE;;;;;;;;;;;;;;;;AAExE,kDAAgC;AAChC,uDAAqC;AACrC,mDAAiC;AACjC,sDAAoC;AACpC,uDAAqC;AACrC,0DAAwC;AACxC,uDAAqC;AACrC,2CAAyB;AACzB,uCAAqB;AACrB,0CAAwB;AACxB,6CAA2B;AAC3B,+CAA6B;AAC7B,8CAA4B;AAC5B,kDAAgC;AAChC,gDAA8B;AAC9B,iDAA+B;AAC/B,gDAA8B;AAC9B,wDAAsC;AACtC,gDAA8B;AAC9B,2CAAyB;AACzB,0DAAwC;AACxC,oDAAkC;AAClC,wDAAsC;AACtC,wDAAsC;AACtC,4DAA0C;AAC1C,iDAA+B;AAC/B,qDAAmC;AACnC,iDAA+B;AAC/B,qDAAmC;AACnC,0DAAwC;AACxC,0DAAwC;AACxC,4DAA0C;AAC1C,kDAAgC;AAChC,sDAAoC;AACpC,0CAAwB;AACxB,2CAAyB;AACzB,+CAA6B;AAC7B,gDAA8B;AAC9B,kDAAgC;AAChC,kDAAgC;AAChC,+DAA6C;AAC7C,mDAAiC;AACjC,+DAA6C;AAC7C,iEAA+C;AAC/C,sDAAoC;AACpC,wDAAsC;AACtC,oDAAkC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/types/responses/index.ts"],"names":[],"mappings":";AAAA,oDAAoD;AACpD,8CAA8C;AAC9C,EAAE;AACF,gFAAgF;AAChF,uEAAuE;AACvE,oEAAoE;AACpE,sCAAsC;AACtC,EAAE;AACF,kEAAkE;AAClE,iEAAiE;AACjE,gEAAgE;AAChE,+CAA+C;AAC/C,EAAE;AACF,oEAAoE;AACpE,wEAAwE;;;;;;;;;;;;;;;;AAExE,kDAAgC;AAChC,uDAAqC;AACrC,mDAAiC;AACjC,sDAAoC;AACpC,uDAAqC;AACrC,0DAAwC;AACxC,uDAAqC;AACrC,2CAAyB;AACzB,uCAAqB;AACrB,0CAAwB;AACxB,6CAA2B;AAC3B,qDAAmC;AACnC,+CAA6B;AAC7B,8CAA4B;AAC5B,kDAAgC;AAChC,gDAA8B;AAC9B,iDAA+B;AAC/B,gDAA8B;AAC9B,wDAAsC;AACtC,gDAA8B;AAC9B,2CAAyB;AACzB,0DAAwC;AACxC,oDAAkC;AAClC,wDAAsC;AACtC,wDAAsC;AACtC,4DAA0C;AAC1C,iDAA+B;AAC/B,qDAAmC;AACnC,iDAA+B;AAC/B,qDAAmC;AACnC,0DAAwC;AACxC,0DAAwC;AACxC,4DAA0C;AAC1C,kDAAgC;AAChC,sDAAoC;AACpC,0CAAwB;AACxB,2CAAyB;AACzB,+CAA6B;AAC7B,gDAA8B;AAC9B,kDAAgC;AAChC,kDAAgC;AAChC,+DAA6C;AAC7C,mDAAiC;AACjC,+DAA6C;AAC7C,iEAA+C;AAC/C,sDAAoC;AACpC,wDAAsC;AACtC,oDAAkC"}
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "17.3.4",
2
+ "version": "17.4.0",
3
3
  "name": "@substrate/api-sidecar",
4
4
  "description": "REST service that makes it easy to interact with blockchain nodes built using Substrate's FRAME framework.",
5
5
  "homepage": "https://github.com/paritytech/substrate-api-sidecar#readme",