@yodlpay/tokenlists 0.8.20 → 0.8.22

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
- import { VersionUpgrade } from "./getVersionUpgrade";
2
- import { TokenInfo } from "./types";
1
+ import { VersionUpgrade } from './getVersionUpgrade';
2
+ import { TokenInfo } from './types';
3
3
  /**
4
4
  * Returns the minimum version bump for the given list
5
5
  * @param baseList the base list of tokens
@@ -1,5 +1,5 @@
1
- import { VersionUpgrade } from "./getVersionUpgrade";
2
- import { Version } from "./types";
1
+ import { VersionUpgrade } from './getVersionUpgrade';
2
+ import { Version } from './types';
3
3
  /**
4
4
  * Returns the next version of the list given a base version and the upgrade type
5
5
  * @param base current version
@@ -0,0 +1,14 @@
1
+ import { RouterInfo } from 'types';
2
+ declare type RouterList = {
3
+ name: string;
4
+ logoUri: string;
5
+ keywords: string[];
6
+ version: {
7
+ major: number;
8
+ minor: number;
9
+ patch: number;
10
+ };
11
+ routers: RouterInfo[];
12
+ };
13
+ export declare const routerlist: RouterList;
14
+ export {};