@exponent-labs/perena-sy-idl 0.9.12 → 0.9.14

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/build/idl.json CHANGED
@@ -1109,6 +1109,24 @@
1109
1109
  }
1110
1110
  }
1111
1111
  }
1112
+ },
1113
+ {
1114
+ "name": "last_index",
1115
+ "docs": [
1116
+ "Last index of the SY token"
1117
+ ],
1118
+ "type": {
1119
+ "defined": {
1120
+ "name": "Number"
1121
+ }
1122
+ }
1123
+ },
1124
+ {
1125
+ "name": "last_slot_cached",
1126
+ "docs": [
1127
+ "Last slot where last_index was cached"
1128
+ ],
1129
+ "type": "u64"
1112
1130
  }
1113
1131
  ]
1114
1132
  }
package/build/index.d.ts CHANGED
@@ -311,12 +311,14 @@ export declare const IDL: {
311
311
  type: {
312
312
  array: (string | number)[];
313
313
  vec?: undefined;
314
+ defined?: undefined;
314
315
  };
315
316
  } | {
316
317
  name: string;
317
318
  type: {
318
319
  vec: string;
319
320
  array?: undefined;
321
+ defined?: undefined;
320
322
  };
321
323
  docs?: undefined;
322
324
  } | {
@@ -329,6 +331,17 @@ export declare const IDL: {
329
331
  };
330
332
  };
331
333
  array?: undefined;
334
+ defined?: undefined;
335
+ };
336
+ } | {
337
+ name: string;
338
+ docs: string[];
339
+ type: {
340
+ defined: {
341
+ name: string;
342
+ };
343
+ array?: undefined;
344
+ vec?: undefined;
332
345
  };
333
346
  })[];
334
347
  variants?: undefined;
package/build/type.d.ts CHANGED
@@ -1115,6 +1115,24 @@ export type PerenaStandard = {
1115
1115
  };
1116
1116
  };
1117
1117
  };
1118
+ },
1119
+ {
1120
+ "name": "lastIndex";
1121
+ "docs": [
1122
+ "Last index of the SY token"
1123
+ ];
1124
+ "type": {
1125
+ "defined": {
1126
+ "name": "number";
1127
+ };
1128
+ };
1129
+ },
1130
+ {
1131
+ "name": "lastSlotCached";
1132
+ "docs": [
1133
+ "Last slot where last_index was cached"
1134
+ ];
1135
+ "type": "u64";
1118
1136
  }
1119
1137
  ];
1120
1138
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exponent-labs/perena-sy-idl",
3
- "version": "0.9.12",
3
+ "version": "0.9.14",
4
4
  "main": "build/index.js",
5
5
  "types": "build/index.d.ts",
6
6
  "license": "AGPL-3.0",
package/src/idl.json CHANGED
@@ -1109,6 +1109,24 @@
1109
1109
  }
1110
1110
  }
1111
1111
  }
1112
+ },
1113
+ {
1114
+ "name": "last_index",
1115
+ "docs": [
1116
+ "Last index of the SY token"
1117
+ ],
1118
+ "type": {
1119
+ "defined": {
1120
+ "name": "Number"
1121
+ }
1122
+ }
1123
+ },
1124
+ {
1125
+ "name": "last_slot_cached",
1126
+ "docs": [
1127
+ "Last slot where last_index was cached"
1128
+ ],
1129
+ "type": "u64"
1112
1130
  }
1113
1131
  ]
1114
1132
  }
package/src/type.ts CHANGED
@@ -1115,6 +1115,24 @@ export type PerenaStandard = {
1115
1115
  }
1116
1116
  }
1117
1117
  }
1118
+ },
1119
+ {
1120
+ "name": "lastIndex",
1121
+ "docs": [
1122
+ "Last index of the SY token"
1123
+ ],
1124
+ "type": {
1125
+ "defined": {
1126
+ "name": "number"
1127
+ }
1128
+ }
1129
+ },
1130
+ {
1131
+ "name": "lastSlotCached",
1132
+ "docs": [
1133
+ "Last slot where last_index was cached"
1134
+ ],
1135
+ "type": "u64"
1118
1136
  }
1119
1137
  ]
1120
1138
  }