@yodlpay/tokenlists 0.9.0-alpha.4 → 0.9.0-alpha.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/dist/types.d.ts CHANGED
@@ -70,6 +70,10 @@ export interface TokenInfo {
70
70
  } | ExtensionValue;
71
71
  };
72
72
  }
73
+ export declare type TokenListSimple = {
74
+ timestamp: string;
75
+ tokens: TokenInfo[];
76
+ };
73
77
  export interface Version {
74
78
  readonly major: number;
75
79
  readonly minor: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yodlpay/tokenlists",
3
- "version": "0.9.0-alpha.4",
3
+ "version": "0.9.0-alpha.5",
4
4
  "description": "Tokenlist typings, schema and lists.",
5
5
  "main": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",
@@ -17,7 +17,8 @@
17
17
  "test": "jest",
18
18
  "typecheck": "tsc --noEmit -p ./tsconfig.json",
19
19
  "update": "tsx scripts/update.ts",
20
- "prepublishOnly": "npm run test && npm run build"
20
+ "prepublishOnly": "npm run test && npm run build",
21
+ "update-tokenlists-display-decimals": "tsx scripts/displayDecimals/index.ts"
21
22
  },
22
23
  "license": "MIT",
23
24
  "publishConfig": {