@ref-finance/ref-sdk 1.3.2 → 1.3.4
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/README.md +1 -1
- package/dist/constant.d.ts +1 -1
- package/dist/indexer.d.ts +1 -0
- package/dist/ref-sdk.cjs.development.js +76 -18
- package/dist/ref-sdk.cjs.development.js.map +1 -1
- package/dist/ref-sdk.cjs.production.min.js +1 -1
- package/dist/ref-sdk.cjs.production.min.js.map +1 -1
- package/dist/ref-sdk.esm.js +76 -18
- package/dist/ref-sdk.esm.js.map +1 -1
- package/dist/ref-sdk.umd.development.js +76 -18
- package/dist/ref-sdk.umd.development.js.map +1 -1
- package/dist/ref-sdk.umd.production.min.js +1 -1
- package/dist/ref-sdk.umd.production.min.js.map +1 -1
- package/dist/ref.d.ts +1 -1
- package/dist/swap-widget/constant.d.ts +1 -0
- package/package.json +1 -1
package/dist/ref.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { TokenMetadata, FTStorageBalance, RefFiViewFunctionOptions } from './types';
|
|
2
2
|
import { Transaction } from './types';
|
|
3
3
|
export declare const REPLACE_TOKENS: string[];
|
|
4
|
-
export declare const init_env: (env: string) => {
|
|
4
|
+
export declare const init_env: (env: string, indexerUrl?: string | undefined) => {
|
|
5
5
|
config: {
|
|
6
6
|
networkId: string;
|
|
7
7
|
nodeUrl: string;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export declare const REF_WIDGET_STAR_TOKEN_LIST_KEY = "REF_WIDGET_STAR_TOKEN_LIST_VALUE";
|
|
2
2
|
export declare const REF_WIDGET_ALL_TOKENS_LIST_KEY = "REF_WIDGET_ALL_TOKENS_LIST_VALUE";
|
|
3
|
+
export declare const REF_WIDGET_ALL_LIGHT_TOKENS_LIST_KEY = "REF_WIDGET_ALL_LIGHT_TOKENS_LIST_VALUE";
|
|
3
4
|
export declare const REF_WIDGET_SWAP_IN_KEY = "REF_WIDGET_SWAP_IN_VALUE";
|
|
4
5
|
export declare const REF_WIDGET_SWAP_OUT_KEY = "REF_WIDGET_SWAP_OUT_VALUE";
|
|
5
6
|
export declare const REF_WIDGET_SWAP_DETAIL_KEY = "REF_WIDGET_SWAP_DETAIL_VALUE";
|
package/package.json
CHANGED