@exponent-labs/generic-sy-idl 0.1.8 → 0.9.1

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
@@ -863,6 +863,20 @@
863
863
  },
864
864
  {
865
865
  "name": "Ore"
866
+ },
867
+ {
868
+ "name": "Chainlink",
869
+ "fields": [
870
+ {
871
+ "name": "_padding",
872
+ "type": {
873
+ "array": [
874
+ "u8",
875
+ 128
876
+ ]
877
+ }
878
+ }
879
+ ]
866
880
  }
867
881
  ]
868
882
  }
package/build/index.js CHANGED
@@ -15,13 +15,23 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
15
15
  }) : function(o, v) {
16
16
  o["default"] = v;
17
17
  });
18
- var __importStar = (this && this.__importStar) || function (mod) {
19
- if (mod && mod.__esModule) return mod;
20
- var result = {};
21
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
- __setModuleDefault(result, mod);
23
- return result;
24
- };
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
25
35
  Object.defineProperty(exports, "__esModule", { value: true });
26
36
  exports.PROGRAM_ID = exports.IDL = void 0;
27
37
  const idl = __importStar(require("./idl.json"));
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AACA,gDAAiC;AAEpB,QAAA,GAAG,GAAI,GAAsB,CAAC;AAC9B,QAAA,UAAU,GAAG,GAAG,CAAC,OAAO,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AACA,gDAAiC;AAEpB,QAAA,GAAG,GAAI,GAAsB,CAAC;AAC9B,QAAA,UAAU,GAAG,GAAG,CAAC,OAAO,CAAC"}
package/build/type.d.ts CHANGED
@@ -869,6 +869,20 @@ export type GenericStandard = {
869
869
  },
870
870
  {
871
871
  "name": "ore";
872
+ },
873
+ {
874
+ "name": "chainlink";
875
+ "fields": [
876
+ {
877
+ "name": "padding";
878
+ "type": {
879
+ "array": [
880
+ "u8",
881
+ 128
882
+ ];
883
+ };
884
+ }
885
+ ];
872
886
  }
873
887
  ];
874
888
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exponent-labs/generic-sy-idl",
3
- "version": "0.1.8",
3
+ "version": "0.9.1",
4
4
  "main": "build/index.js",
5
5
  "types": "build/index.d.ts",
6
6
  "license": "AGPL-3.0",
package/src/idl.json CHANGED
@@ -863,6 +863,20 @@
863
863
  },
864
864
  {
865
865
  "name": "Ore"
866
+ },
867
+ {
868
+ "name": "Chainlink",
869
+ "fields": [
870
+ {
871
+ "name": "_padding",
872
+ "type": {
873
+ "array": [
874
+ "u8",
875
+ 128
876
+ ]
877
+ }
878
+ }
879
+ ]
866
880
  }
867
881
  ]
868
882
  }
package/src/type.ts CHANGED
@@ -869,6 +869,20 @@ export type GenericStandard = {
869
869
  },
870
870
  {
871
871
  "name": "ore"
872
+ },
873
+ {
874
+ "name": "chainlink",
875
+ "fields": [
876
+ {
877
+ "name": "padding",
878
+ "type": {
879
+ "array": [
880
+ "u8",
881
+ 128
882
+ ]
883
+ }
884
+ }
885
+ ]
872
886
  }
873
887
  ]
874
888
  }