@multiversx/sdk-dapp-liquidity 0.2.0-alpha.1 → 1.0.0
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/index.js +1 -0
- package/index.mjs +1 -0
- package/package.json +1 -2
- package/reactjs/index.d.ts +1 -0
- package/reactjs/index.js +1 -0
- package/reactjs/index.mjs +1 -0
- package/style.css +2192 -0
package/index.js
CHANGED
|
@@ -18,6 +18,7 @@ const helpers_getMvxApiURL = require("./helpers/getMvxApiURL.js");
|
|
|
18
18
|
const helpers_getMvxChainId = require("./helpers/getMvxChainId.js");
|
|
19
19
|
const helpers_getMvxExplorerAddress = require("./helpers/getMvxExplorerAddress.js");
|
|
20
20
|
const helpers_serializeTransaction = require("./helpers/serializeTransaction.js");
|
|
21
|
+
;/* empty css */
|
|
21
22
|
const reactjs_components_AccountAddress_AccountAddress = require("./reactjs/components/AccountAddress/AccountAddress.js");
|
|
22
23
|
const reactjs_components_AmountCard_AmountCard = require("./reactjs/components/AmountCard/AmountCard.js");
|
|
23
24
|
const reactjs_components_AmountInput_AmountInput = require("./reactjs/components/AmountInput/AmountInput.js");
|
package/index.mjs
CHANGED
|
@@ -15,6 +15,7 @@ import { getMvxApiURL } from "./helpers/getMvxApiURL.mjs";
|
|
|
15
15
|
import { getMvxChainId } from "./helpers/getMvxChainId.mjs";
|
|
16
16
|
import { getMvxExplorerAddress } from "./helpers/getMvxExplorerAddress.mjs";
|
|
17
17
|
import { serializeTransaction } from "./helpers/serializeTransaction.mjs";
|
|
18
|
+
/* empty css */
|
|
18
19
|
import { AccountAddress } from "./reactjs/components/AccountAddress/AccountAddress.mjs";
|
|
19
20
|
import { AmountCard } from "./reactjs/components/AmountCard/AmountCard.mjs";
|
|
20
21
|
import { AmountInput } from "./reactjs/components/AmountInput/AmountInput.mjs";
|
package/package.json
CHANGED
|
@@ -3,13 +3,12 @@
|
|
|
3
3
|
"author": "MultiversX",
|
|
4
4
|
"description": "Generic SDK for multi-chain wallet connection",
|
|
5
5
|
"license": "MIT",
|
|
6
|
-
"version": "0.
|
|
6
|
+
"version": "1.0.0",
|
|
7
7
|
"main": "index.js",
|
|
8
8
|
"module": "index.mjs",
|
|
9
9
|
"types": "index.d.ts",
|
|
10
10
|
"scripts": {
|
|
11
11
|
"build": "rimraf dist && vite build && cp package.json dist && cp README.md dist",
|
|
12
|
-
"build-dev": "yarn build && sh copy-dist.sh",
|
|
13
12
|
"build:watch": "tsc && vite build --watch",
|
|
14
13
|
"publish-package": "yarn build && cd dist && npm publish",
|
|
15
14
|
"publish-package-next": "yarn build && cd dist && npm publish --tag next",
|
package/reactjs/index.d.ts
CHANGED
package/reactjs/index.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
"use strict";
|
|
3
3
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
4
|
+
;/* empty css */
|
|
4
5
|
const reactjs_components_AccountAddress_AccountAddress = require("./components/AccountAddress/AccountAddress.js");
|
|
5
6
|
const reactjs_components_AmountCard_AmountCard = require("./components/AmountCard/AmountCard.js");
|
|
6
7
|
const reactjs_components_AmountInput_AmountInput = require("./components/AmountInput/AmountInput.js");
|
package/reactjs/index.mjs
CHANGED