@meshsdk/common 1.9.0-beta.102 → 1.9.0-beta.103

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/dist/index.d.cts CHANGED
@@ -1833,6 +1833,7 @@ interface IFetcher {
1833
1833
  next?: string | number | null;
1834
1834
  }>;
1835
1835
  fetchProtocolParameters(epoch: number): Promise<Protocol>;
1836
+ fetchCostModels(epoch?: number): Promise<number[][]>;
1836
1837
  fetchTxInfo(hash: string): Promise<TransactionInfo>;
1837
1838
  fetchUTxOs(hash: string, index?: number): Promise<UTxO[]>;
1838
1839
  fetchGovernanceProposal(txHash: string, certIndex: number): Promise<GovernanceProposalInfo>;
package/dist/index.d.ts CHANGED
@@ -1833,6 +1833,7 @@ interface IFetcher {
1833
1833
  next?: string | number | null;
1834
1834
  }>;
1835
1835
  fetchProtocolParameters(epoch: number): Promise<Protocol>;
1836
+ fetchCostModels(epoch?: number): Promise<number[][]>;
1836
1837
  fetchTxInfo(hash: string): Promise<TransactionInfo>;
1837
1838
  fetchUTxOs(hash: string, index?: number): Promise<UTxO[]>;
1838
1839
  fetchGovernanceProposal(txHash: string, certIndex: number): Promise<GovernanceProposalInfo>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meshsdk/common",
3
- "version": "1.9.0-beta.102",
3
+ "version": "1.9.0-beta.103",
4
4
  "description": "Contains constants, types and interfaces used across the SDK and different serialization libraries",
5
5
  "main": "./dist/index.cjs",
6
6
  "browser": "./dist/index.js",