@pancakeswap/token-lists 0.0.16 → 0.0.17

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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @pancakeswap/token-lists@0.0.16 build /home/runner/work/pancake-frontend/pancake-frontend/packages/token-lists
2
+ > @pancakeswap/token-lists@0.0.17 build /home/runner/work/pancake-frontend/pancake-frontend/packages/token-lists
3
3
  > tsup
4
4
 
5
5
  CLI Building entry: {"index":"./src/index.ts","react":"./react/index.ts"}
@@ -9,16 +9,16 @@ CLI Using tsup config: /home/runner/work/pancake-frontend/pancake-frontend/packa
9
9
  CLI Target: es6
10
10
  ESM Build start
11
11
  CJS Build start
12
- ESM dist/index.mjs 129.00 B
13
- ESM dist/chunk-DC45HQOL.mjs 4.05 KB
14
- ESM dist/react.mjs 23.29 KB
15
- ESM ⚡️ Build success in 1305ms
16
12
  CJS dist/index.js 783.00 B
17
13
  CJS dist/chunk-YOAEDKQH.js 4.28 KB
18
14
  CJS dist/react.js 24.16 KB
19
- CJS ⚡️ Build success in 1305ms
15
+ CJS ⚡️ Build success in 1283ms
16
+ ESM dist/chunk-DC45HQOL.mjs 4.05 KB
17
+ ESM dist/react.mjs 23.29 KB
18
+ ESM dist/index.mjs 129.00 B
19
+ ESM ⚡️ Build success in 1284ms
20
20
  DTS Build start
21
- DTS ⚡️ Build success in 13852ms
21
+ DTS ⚡️ Build success in 13650ms
22
22
  DTS dist/index.d.ts 1.68 KB
23
23
  DTS dist/react.d.ts 3.50 KB
24
- DTS dist/types-d6730d17.d.ts 1.03 KB
24
+ DTS dist/types-92a8b029.d.ts 1.06 KB
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # @pancakeswap/token-lists
2
2
 
3
+ ## 0.0.17
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [edc65d4]
8
+ - @pancakeswap/swap-sdk-core@1.5.1
9
+
3
10
  ## 0.0.16
4
11
 
5
12
  ### Patch Changes
package/dist/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import { SerializedToken, Token } from '@pancakeswap/swap-sdk-core';
2
- import { T as TokenInfo, a as TokenList, V as Version } from './types-d6730d17.js';
3
- export { b as Tags } from './types-d6730d17.js';
2
+ import { T as TokenInfo, a as TokenList, V as Version } from './types-92a8b029.js';
3
+ export { b as Tags } from './types-92a8b029.js';
4
4
 
5
5
  interface SerializedWrappedToken extends SerializedToken {
6
6
  chainId: number;
package/dist/react.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import * as _reduxjs_toolkit from '@reduxjs/toolkit';
2
2
  import { ActionCreatorWithPayload } from '@reduxjs/toolkit';
3
- import { a as TokenList, V as Version } from './types-d6730d17.js';
3
+ import { a as TokenList, V as Version } from './types-92a8b029.js';
4
4
  import * as jotai_vanilla_utils_atomFamily from 'jotai/vanilla/utils/atomFamily';
5
5
  import * as jotai from 'jotai';
6
6
  import * as src from 'src';
@@ -6,6 +6,7 @@ interface TokenInfo {
6
6
  readonly decimals: number;
7
7
  readonly symbol: string;
8
8
  readonly logoURI?: string;
9
+ readonly programId?: string;
9
10
  readonly tags?: string[];
10
11
  readonly extensions?: {
11
12
  readonly [key: string]: {
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@pancakeswap/token-lists",
3
- "version": "0.0.16",
3
+ "version": "0.0.17",
4
4
  "main": "./dist/index.js",
5
5
  "module": "./dist/index.mjs",
6
6
  "types": "./dist/index.d.ts",
7
7
  "dependencies": {
8
8
  "ajv": "^6.12.3",
9
9
  "lodash": "^4.17.21",
10
- "@pancakeswap/swap-sdk-core": "1.5.0"
10
+ "@pancakeswap/swap-sdk-core": "1.5.1"
11
11
  },
12
12
  "peerDependencies": {
13
13
  "@reduxjs/toolkit": "^1.9.1",
@@ -22,7 +22,7 @@
22
22
  "localforage": "^1.10.0",
23
23
  "react": "^18.2.0",
24
24
  "tsup": "^6.7.0",
25
- "@pancakeswap/utils": "8.0.0"
25
+ "@pancakeswap/utils": "8.0.1"
26
26
  },
27
27
  "exports": {
28
28
  ".": {
package/src/types.ts CHANGED
@@ -7,6 +7,7 @@ export interface TokenInfo {
7
7
  readonly decimals: number
8
8
  readonly symbol: string
9
9
  readonly logoURI?: string
10
+ readonly programId?: string
10
11
  readonly tags?: string[]
11
12
  readonly extensions?: {
12
13
  readonly [key: string]: