@0xobelisk/sui-client 1.1.4 → 1.1.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@0xobelisk/sui-client",
3
- "version": "1.1.4",
3
+ "version": "1.1.5",
4
4
  "description": "Tookit for interacting with move eps framework",
5
5
  "keywords": [
6
6
  "sui",
package/src/dubhe.ts CHANGED
@@ -1136,13 +1136,23 @@ export class Dubhe {
1136
1136
  async getEvents({
1137
1137
  first,
1138
1138
  after,
1139
+ name,
1140
+ checkpoint,
1139
1141
  orderBy,
1140
1142
  }: {
1141
1143
  first?: number;
1142
1144
  after?: string;
1145
+ name?: string;
1146
+ checkpoint?: string;
1143
1147
  orderBy?: string[];
1144
1148
  }): Promise<ConnectionResponse<IndexerEvent>> {
1145
- return await this.suiIndexerClient.getEvents({ first, after, orderBy });
1149
+ return await this.suiIndexerClient.getEvents({
1150
+ first,
1151
+ after,
1152
+ name,
1153
+ checkpoint,
1154
+ orderBy,
1155
+ });
1146
1156
  }
1147
1157
 
1148
1158
  async getSchemas({