@mento-protocol/mento-sdk 1.15.0 → 1.15.2
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/cjs/constants/tokens.11142220.js +83 -82
- package/dist/cjs/constants/tokens.42220.js +83 -82
- package/dist/cjs/constants/tokens.44787.js +83 -82
- package/dist/cjs/constants/tokens.d.ts +26 -2
- package/dist/cjs/constants/tokens.js +92 -62
- package/dist/cjs/mento.d.ts +1 -0
- package/dist/cjs/mento.js +4 -1
- package/dist/esm/constants/tokens.11142220.js +83 -82
- package/dist/esm/constants/tokens.42220.js +83 -82
- package/dist/esm/constants/tokens.44787.js +83 -82
- package/dist/esm/constants/tokens.d.ts +26 -2
- package/dist/esm/constants/tokens.js +91 -61
- package/dist/esm/mento.d.ts +1 -0
- package/dist/esm/mento.js +2 -0
- package/package.json +1 -1
package/dist/esm/mento.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ import { Address, TradingLimit, TradingLimitsConfig, TradingLimitsState } from '
|
|
|
4
4
|
import { Identifier } from './constants/addresses';
|
|
5
5
|
import { TokenSymbol } from './constants/tokens';
|
|
6
6
|
import { TradablePairWithSpread } from './constants/tradablePairs';
|
|
7
|
+
export { TokenSymbol } from './constants/tokens';
|
|
7
8
|
export interface Exchange {
|
|
8
9
|
providerAddr: Address;
|
|
9
10
|
id: string;
|
package/dist/esm/mento.js
CHANGED
|
@@ -16,6 +16,8 @@ import { IMentoRouter__factory } from 'mento-router-ts';
|
|
|
16
16
|
import { getAddress } from './constants/addresses';
|
|
17
17
|
import { getCachedTradablePairs, } from './constants/tradablePairs';
|
|
18
18
|
import { buildConnectivityStructures, generateAllRoutes, selectOptimalRoutes, } from './routeUtils';
|
|
19
|
+
// Re-export TokenSymbol for use in auto-generated files and consuming packages
|
|
20
|
+
export { TokenSymbol } from './constants/tokens';
|
|
19
21
|
export class Mento {
|
|
20
22
|
/**
|
|
21
23
|
* This constructor is private, use the static create or createWithParams methods
|