@taquito/contracts-library 23.0.1 → 23.0.3

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.
@@ -336,5 +336,15 @@ class RpcWrapperContractsLibrary {
336
336
  return this.rpc.getPendingOperations(args);
337
337
  });
338
338
  }
339
+ getActiveStakingParameters(delegate_1) {
340
+ return __awaiter(this, arguments, void 0, function* (delegate, { block } = rpc_1.defaultRPCOptions) {
341
+ return this.rpc.getActiveStakingParameters(delegate, { block });
342
+ });
343
+ }
344
+ getPendingStakingParameters(delegate_1) {
345
+ return __awaiter(this, arguments, void 0, function* (delegate, { block } = rpc_1.defaultRPCOptions) {
346
+ return this.rpc.getPendingStakingParameters(delegate, { block });
347
+ });
348
+ }
339
349
  }
340
350
  exports.RpcWrapperContractsLibrary = RpcWrapperContractsLibrary;
@@ -3,6 +3,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.VERSION = void 0;
4
4
  // IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT OR CHECKIN!
5
5
  exports.VERSION = {
6
- "commitHash": "c26a3d67ae3694c157f4f56fb5bf85ca3c495a9b",
7
- "version": "23.0.1"
6
+ "commitHash": "42048d039f6d4345fc59d04b03650bcb8e27bb62",
7
+ "version": "23.0.3"
8
8
  };
@@ -1,5 +1,5 @@
1
1
  import { BigNumber } from 'bignumber.js';
2
- import { BakingRightsQueryArguments, BakingRightsResponse, BalanceResponse, UnstakeRequestsResponse, BallotListResponse, BallotsResponse, BigMapKey, BigMapResponse, BlockHeaderResponse, BlockMetadata, BlockResponse, ConstantsResponse, ContractResponse, CurrentProposalResponse, DelegateResponse, DelegatesResponse, VotingInfoResponse, AttestationRightsQueryArguments, AttestationRightsResponse, EntrypointsResponse, ForgeOperationsParams, ManagerKeyResponse, MichelsonV1Expression, PackDataParams, PreapplyParams, PreapplyResponse, ProposalsResponse, ProtocolsResponse, RpcClientInterface, RPCOptions, RPCRunCodeParam, RPCRunOperationParam, RPCRunScriptViewParam, RPCRunViewParam, RunCodeResult, RunScriptViewResult, RunViewResult, SaplingDiffResponse, ScriptResponse, UnparsingMode, VotesListingsResponse, VotingPeriodBlockResult, TicketTokenParams, AllTicketBalances, PendingOperationsV2, PendingOperationsQueryArguments, RPCSimulateOperationParam, AILaunchCycleResponse, AllDelegatesQueryArguments, ProtocolActivationsResponse } from '@taquito/rpc';
2
+ import { BakingRightsQueryArguments, BakingRightsResponse, BalanceResponse, UnstakeRequestsResponse, BallotListResponse, BallotsResponse, BigMapKey, BigMapResponse, BlockHeaderResponse, BlockMetadata, BlockResponse, ConstantsResponse, ContractResponse, CurrentProposalResponse, DelegateResponse, DelegatesResponse, VotingInfoResponse, AttestationRightsQueryArguments, AttestationRightsResponse, EntrypointsResponse, ForgeOperationsParams, ManagerKeyResponse, MichelsonV1Expression, PackDataParams, PreapplyParams, PreapplyResponse, ProposalsResponse, ProtocolsResponse, RpcClientInterface, RPCOptions, RPCRunCodeParam, RPCRunOperationParam, RPCRunScriptViewParam, RPCRunViewParam, RunCodeResult, RunScriptViewResult, RunViewResult, SaplingDiffResponse, ScriptResponse, UnparsingMode, VotesListingsResponse, VotingPeriodBlockResult, TicketTokenParams, AllTicketBalances, PendingOperationsV2, PendingOperationsQueryArguments, RPCSimulateOperationParam, AILaunchCycleResponse, AllDelegatesQueryArguments, ProtocolActivationsResponse, ActiveStakingParametersResponse, PendingStakingParametersResponse } from '@taquito/rpc';
3
3
  import { ContractsLibrary } from './taquito-contracts-library';
4
4
  /**
5
5
  * @deprecated RpcWrapperContractsLibrary has been deprecated in favor of ReadWrapperContractsLibrary
@@ -70,4 +70,6 @@ export declare class RpcWrapperContractsLibrary implements RpcClientInterface {
70
70
  getAllTicketBalances(contract: string, { block }?: RPCOptions): Promise<AllTicketBalances>;
71
71
  getAdaptiveIssuanceLaunchCycle({ block, }?: RPCOptions): Promise<AILaunchCycleResponse>;
72
72
  getPendingOperations(args: PendingOperationsQueryArguments): Promise<PendingOperationsV2>;
73
+ getActiveStakingParameters(delegate: string, { block }?: RPCOptions): Promise<ActiveStakingParametersResponse>;
74
+ getPendingStakingParameters(delegate: string, { block }?: RPCOptions): Promise<PendingStakingParametersResponse>;
73
75
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@taquito/contracts-library",
3
- "version": "23.0.1",
3
+ "version": "23.0.3",
4
4
  "description": "Can be used as an extension on the TezosToolkit to provide contracts data",
5
5
  "keywords": [
6
6
  "tezos"
@@ -67,10 +67,10 @@
67
67
  ]
68
68
  },
69
69
  "dependencies": {
70
- "@taquito/core": "^23.0.1",
71
- "@taquito/rpc": "^23.0.1",
72
- "@taquito/taquito": "^23.0.1",
73
- "@taquito/utils": "^23.0.1",
70
+ "@taquito/core": "^23.0.3",
71
+ "@taquito/rpc": "^23.0.3",
72
+ "@taquito/taquito": "^23.0.3",
73
+ "@taquito/utils": "^23.0.3",
74
74
  "bignumber.js": "^9.1.2"
75
75
  },
76
76
  "devDependencies": {
@@ -101,5 +101,5 @@
101
101
  "ts-toolbelt": "^9.6.0",
102
102
  "typescript": "~5.5.4"
103
103
  },
104
- "gitHead": "d67244a8188ee3a62390f32b75ba1acf599a782f"
104
+ "gitHead": "2abf349e97af45f11210b3121078b9d96699d5da"
105
105
  }