@iotexproject/kit 0.1.85 → 0.1.86

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 (2) hide show
  1. package/dist/index.d.ts +15 -1
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -4738,7 +4738,7 @@ declare class VoterEntity {
4738
4738
  declare class MarshallDao {
4739
4739
  gaugeList(args: {
4740
4740
  account?: `0x${string}`;
4741
- gauge?: `0x${string}`;
4741
+ gauges?: `0x${string}`[];
4742
4742
  }, ctx?: ConfigContext): Promise<import("@dappworks/kit/aiem").QueryReturnType<GaugeEntity, any>[] | null>;
4743
4743
  totalGaugeRewards(args: {
4744
4744
  account?: `0x${string}`;
@@ -4848,6 +4848,15 @@ declare class MarshallDao {
4848
4848
  address?: undefined;
4849
4849
  chainId?: undefined;
4850
4850
  }>;
4851
+ setOwnedWeightedNFTWeight(args: {
4852
+ gaugeAddress: `0x${string}`;
4853
+ tokenId: number;
4854
+ weight: number;
4855
+ }, ctx?: ConfigContext): Promise<{
4856
+ data: `0x${string}`;
4857
+ address: `0x${string}`;
4858
+ chainId: string;
4859
+ }>;
4851
4860
  }
4852
4861
  declare class UniswapV2LPEntity {
4853
4862
  address: `0x${string}`;
@@ -8741,6 +8750,11 @@ declare class Analyzer extends BaseDBModule {
8741
8750
  height: any;
8742
8751
  };
8743
8752
  }>;
8753
+ get_block_meta({ block_height, start_block, end_block, }?: {
8754
+ block_height?: number | string;
8755
+ start_block?: number | string;
8756
+ end_block?: number | string;
8757
+ }): Promise<postgres.Row | postgres.RowList<postgres.Row[]>>;
8744
8758
  }
8745
8759
  export interface ItemNFT {
8746
8760
  collection: string;
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@iotexproject/kit",
3
3
  "module": "index.ts",
4
4
  "type": "module",
5
- "version": "0.1.85",
5
+ "version": "0.1.86",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
8
8
  "scripts": {