@swapper-finance/sdk
Version:
JavaScript SDK form Swapper
21 lines (15 loc) • 519 B
text/typescript
import { initDocument } from "@src/config/init";
import { openTransactionModal } from "@src/services";
import { createTxWidgetWC, TxWidgetWCWrapped } from "./components";
const TxWidgetWC = createTxWidgetWC();
initDocument();
export * from "@src/models";
export { openTransactionModal } from "@src/services";
export { TxWidgetWCWrapped as TxWidget } from "./components";
export { TxWidgetWC };
const SwapperSDK = {
openTransactionModal,
TxWidget: TxWidgetWCWrapped,
TxWidgetWC,
};
export default SwapperSDK;