@ant-design/web3-ton 1.0.12 → 1.1.1
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/CHANGELOG.md +22 -0
- package/dist/esm/wallets/myTonWallet.js +9 -2
- package/dist/esm/wallets/okxTonWallet.js +10 -1
- package/dist/esm/wallets/openmask.js +9 -2
- package/dist/esm/wallets/tonkeeper.js +9 -2
- package/dist/lib/wallets/myTonWallet.js +8 -1
- package/dist/lib/wallets/okxTonWallet.js +10 -1
- package/dist/lib/wallets/openmask.js +8 -1
- package/dist/lib/wallets/tonkeeper.js +8 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# @ant-design/web3-ton
|
|
2
2
|
|
|
3
|
+
## 1.1.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [98dc8ef]
|
|
8
|
+
- Updated dependencies [b309635]
|
|
9
|
+
- Updated dependencies [d9629ed]
|
|
10
|
+
- @ant-design/web3-assets@1.13.0
|
|
11
|
+
- @ant-design/web3-common@1.20.0
|
|
12
|
+
|
|
13
|
+
## 1.1.0
|
|
14
|
+
|
|
15
|
+
### Minor Changes
|
|
16
|
+
|
|
17
|
+
- 09565b3: feat: update wallet extension info
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies [0f83657]
|
|
22
|
+
- @ant-design/web3-common@1.19.0
|
|
23
|
+
- @ant-design/web3-assets@1.12.1
|
|
24
|
+
|
|
3
25
|
## 1.0.12
|
|
4
26
|
|
|
5
27
|
### Patch Changes
|
|
@@ -1,6 +1,13 @@
|
|
|
1
|
-
import { MytonWalletCircleColorful } from '@ant-design/web3-icons';
|
|
1
|
+
import { ChromeCircleColorful, MytonWalletCircleColorful } from '@ant-design/web3-icons';
|
|
2
2
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
3
|
export const myTonWallet = {
|
|
4
4
|
key: 'mytonwallet',
|
|
5
|
-
icon: /*#__PURE__*/_jsx(MytonWalletCircleColorful, {})
|
|
5
|
+
icon: /*#__PURE__*/_jsx(MytonWalletCircleColorful, {}),
|
|
6
|
+
extensions: [{
|
|
7
|
+
key: 'Chrome',
|
|
8
|
+
browserIcon: /*#__PURE__*/_jsx(ChromeCircleColorful, {}),
|
|
9
|
+
browserName: 'Chrome',
|
|
10
|
+
link: 'https://chromewebstore.google.com/detail/fldfpgipfncgndfolcbkdeeknbbbnhcc',
|
|
11
|
+
description: 'The most feature-rich TON extension – with support of multi-accounts, tokens, NFT, TON DNS, TON Sites, TON Proxy, and TON Magic.'
|
|
12
|
+
}]
|
|
6
13
|
};
|
|
@@ -1,6 +1,15 @@
|
|
|
1
1
|
import { metadata_OkxWallet } from '@ant-design/web3-assets';
|
|
2
|
+
import { ChromeCircleColorful } from '@ant-design/web3-icons';
|
|
3
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
4
|
export const okxTonWallet = {
|
|
3
5
|
...metadata_OkxWallet,
|
|
4
6
|
key: 'okxTonWallet',
|
|
5
|
-
group: 'Popular'
|
|
7
|
+
group: 'Popular',
|
|
8
|
+
extensions: [{
|
|
9
|
+
key: 'Chrome',
|
|
10
|
+
browserIcon: /*#__PURE__*/_jsx(ChromeCircleColorful, {}),
|
|
11
|
+
browserName: 'Chrome',
|
|
12
|
+
link: 'https://chromewebstore.google.com/detail/mcohilncbfahbmgdjkbpemcciiolgcge',
|
|
13
|
+
description: 'Access your wallet right from your favorite web browser.'
|
|
14
|
+
}]
|
|
6
15
|
};
|
|
@@ -1,6 +1,13 @@
|
|
|
1
|
-
import { OpenmaskCircleColorful } from '@ant-design/web3-icons';
|
|
1
|
+
import { ChromeCircleColorful, OpenmaskCircleColorful } from '@ant-design/web3-icons';
|
|
2
2
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
3
|
export const openmask = {
|
|
4
4
|
key: 'openmask',
|
|
5
|
-
icon: /*#__PURE__*/_jsx(OpenmaskCircleColorful, {})
|
|
5
|
+
icon: /*#__PURE__*/_jsx(OpenmaskCircleColorful, {}),
|
|
6
|
+
extensions: [{
|
|
7
|
+
key: 'Chrome',
|
|
8
|
+
browserIcon: /*#__PURE__*/_jsx(ChromeCircleColorful, {}),
|
|
9
|
+
browserName: 'Chrome',
|
|
10
|
+
link: 'https://chromewebstore.google.com/detail/penjlddjkjgpnkllboccdgccekpkcbin',
|
|
11
|
+
description: 'OpenMask is an extension for accessing TON enabled decentralized applications, or "dApps" in your browser! MetaMask analog for The Open Network.'
|
|
12
|
+
}]
|
|
6
13
|
};
|
|
@@ -1,7 +1,14 @@
|
|
|
1
|
-
import { TonkeeperColorful } from '@ant-design/web3-icons';
|
|
1
|
+
import { ChromeCircleColorful, TonkeeperColorful } from '@ant-design/web3-icons';
|
|
2
2
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
3
|
export const tonkeeper = {
|
|
4
4
|
key: 'tonkeeper',
|
|
5
5
|
icon: /*#__PURE__*/_jsx(TonkeeperColorful, {}),
|
|
6
|
-
group: 'Popular'
|
|
6
|
+
group: 'Popular',
|
|
7
|
+
extensions: [{
|
|
8
|
+
key: 'Chrome',
|
|
9
|
+
browserIcon: /*#__PURE__*/_jsx(ChromeCircleColorful, {}),
|
|
10
|
+
browserName: 'Chrome',
|
|
11
|
+
link: 'https://chromewebstore.google.com/detail/omaabbefbmiijedngplfjmnooppbclkk',
|
|
12
|
+
description: 'Tonkeeper is the easiest way to store, send, and receive Toncoin on The Open Network'
|
|
13
|
+
}]
|
|
7
14
|
};
|
|
@@ -8,5 +8,12 @@ var _web3Icons = require("@ant-design/web3-icons");
|
|
|
8
8
|
var _jsxRuntime = require("react/jsx-runtime");
|
|
9
9
|
const myTonWallet = exports.myTonWallet = {
|
|
10
10
|
key: 'mytonwallet',
|
|
11
|
-
icon: /*#__PURE__*/(0, _jsxRuntime.jsx)(_web3Icons.MytonWalletCircleColorful, {})
|
|
11
|
+
icon: /*#__PURE__*/(0, _jsxRuntime.jsx)(_web3Icons.MytonWalletCircleColorful, {}),
|
|
12
|
+
extensions: [{
|
|
13
|
+
key: 'Chrome',
|
|
14
|
+
browserIcon: /*#__PURE__*/(0, _jsxRuntime.jsx)(_web3Icons.ChromeCircleColorful, {}),
|
|
15
|
+
browserName: 'Chrome',
|
|
16
|
+
link: 'https://chromewebstore.google.com/detail/fldfpgipfncgndfolcbkdeeknbbbnhcc',
|
|
17
|
+
description: 'The most feature-rich TON extension – with support of multi-accounts, tokens, NFT, TON DNS, TON Sites, TON Proxy, and TON Magic.'
|
|
18
|
+
}]
|
|
12
19
|
};
|
|
@@ -5,8 +5,17 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
5
5
|
});
|
|
6
6
|
exports.okxTonWallet = void 0;
|
|
7
7
|
var _web3Assets = require("@ant-design/web3-assets");
|
|
8
|
+
var _web3Icons = require("@ant-design/web3-icons");
|
|
9
|
+
var _jsxRuntime = require("react/jsx-runtime");
|
|
8
10
|
const okxTonWallet = exports.okxTonWallet = {
|
|
9
11
|
..._web3Assets.metadata_OkxWallet,
|
|
10
12
|
key: 'okxTonWallet',
|
|
11
|
-
group: 'Popular'
|
|
13
|
+
group: 'Popular',
|
|
14
|
+
extensions: [{
|
|
15
|
+
key: 'Chrome',
|
|
16
|
+
browserIcon: /*#__PURE__*/(0, _jsxRuntime.jsx)(_web3Icons.ChromeCircleColorful, {}),
|
|
17
|
+
browserName: 'Chrome',
|
|
18
|
+
link: 'https://chromewebstore.google.com/detail/mcohilncbfahbmgdjkbpemcciiolgcge',
|
|
19
|
+
description: 'Access your wallet right from your favorite web browser.'
|
|
20
|
+
}]
|
|
12
21
|
};
|
|
@@ -8,5 +8,12 @@ var _web3Icons = require("@ant-design/web3-icons");
|
|
|
8
8
|
var _jsxRuntime = require("react/jsx-runtime");
|
|
9
9
|
const openmask = exports.openmask = {
|
|
10
10
|
key: 'openmask',
|
|
11
|
-
icon: /*#__PURE__*/(0, _jsxRuntime.jsx)(_web3Icons.OpenmaskCircleColorful, {})
|
|
11
|
+
icon: /*#__PURE__*/(0, _jsxRuntime.jsx)(_web3Icons.OpenmaskCircleColorful, {}),
|
|
12
|
+
extensions: [{
|
|
13
|
+
key: 'Chrome',
|
|
14
|
+
browserIcon: /*#__PURE__*/(0, _jsxRuntime.jsx)(_web3Icons.ChromeCircleColorful, {}),
|
|
15
|
+
browserName: 'Chrome',
|
|
16
|
+
link: 'https://chromewebstore.google.com/detail/penjlddjkjgpnkllboccdgccekpkcbin',
|
|
17
|
+
description: 'OpenMask is an extension for accessing TON enabled decentralized applications, or "dApps" in your browser! MetaMask analog for The Open Network.'
|
|
18
|
+
}]
|
|
12
19
|
};
|
|
@@ -9,5 +9,12 @@ var _jsxRuntime = require("react/jsx-runtime");
|
|
|
9
9
|
const tonkeeper = exports.tonkeeper = {
|
|
10
10
|
key: 'tonkeeper',
|
|
11
11
|
icon: /*#__PURE__*/(0, _jsxRuntime.jsx)(_web3Icons.TonkeeperColorful, {}),
|
|
12
|
-
group: 'Popular'
|
|
12
|
+
group: 'Popular',
|
|
13
|
+
extensions: [{
|
|
14
|
+
key: 'Chrome',
|
|
15
|
+
browserIcon: /*#__PURE__*/(0, _jsxRuntime.jsx)(_web3Icons.ChromeCircleColorful, {}),
|
|
16
|
+
browserName: 'Chrome',
|
|
17
|
+
link: 'https://chromewebstore.google.com/detail/omaabbefbmiijedngplfjmnooppbclkk',
|
|
18
|
+
description: 'Tonkeeper is the easiest way to store, send, and receive Toncoin on The Open Network'
|
|
19
|
+
}]
|
|
13
20
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ant-design/web3-ton",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"main": "dist/lib/index.js",
|
|
5
5
|
"module": "dist/esm/index.js",
|
|
6
6
|
"typings": "dist/esm/index.d.ts",
|
|
@@ -38,8 +38,8 @@
|
|
|
38
38
|
"url": "https://github.com/ant-design/ant-design-web3"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@ant-design/web3-assets": "1.
|
|
42
|
-
"@ant-design/web3-common": "1.
|
|
41
|
+
"@ant-design/web3-assets": "1.13.0",
|
|
42
|
+
"@ant-design/web3-common": "1.20.0"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"father": "^4.4.4",
|