@mictonode/widget 0.3.9 → 0.3.10
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/{main-172a6585.js → main-6c522871.js} +224 -334
- package/dist/ping-widget.js +1 -1
- package/dist/ping-widget.umd.cjs +15 -15
- package/dist/{query.lcd-2adf1c0c.js → query.lcd-9a3cf20a.js} +1 -1
- package/dist/{query.rpc.Query-b53908e7.js → query.rpc.Query-8a76af8f.js} +1 -1
- package/dist/{tx.rpc.msg-d234ff40.js → tx.rpc.msg-0b409bfd.js} +1 -1
- package/dist/{tx.rpc.msg-f7a80a78.js → tx.rpc.msg-0cec9d01.js} +1 -1
- package/lib/wallet/Wallet.ts +0 -4
- package/package.json +1 -6
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { _ as e, s as n } from "./main-
|
|
1
|
+
import { _ as e, s as n } from "./main-6c522871.js";
|
|
2
2
|
import "@initia/initia.proto/ibc/applications/fetchprice/v1/tx";
|
|
3
3
|
import "@initia/initia.proto/ibc/applications/fetchprice/v1/types";
|
|
4
4
|
import "@initia/initia.proto/slinky/marketmap/v1/tx";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { C as a, m as r, T as I, t as be, f as Me, L as s, D as u, a as J, P as l, b as c, A, c as K, d as V, e as Q, g as z, h as H, i as Ue, _ as Se } from "./main-
|
|
1
|
+
import { C as a, m as r, T as I, t as be, f as Me, L as s, D as u, a as J, P as l, b as c, A, c as K, d as V, e as Q, g as z, h as H, i as Ue, _ as Se } from "./main-6c522871.js";
|
|
2
2
|
import "@initia/initia.proto/ibc/applications/fetchprice/v1/tx";
|
|
3
3
|
import "@initia/initia.proto/ibc/applications/fetchprice/v1/types";
|
|
4
4
|
import "@initia/initia.proto/slinky/marketmap/v1/tx";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { _ as n, k as r, l as d, m as i, n as c, o as a, p, q as h, r as l, u as m, v as w, w as P } from "./main-
|
|
1
|
+
import { _ as n, k as r, l as d, m as i, n as c, o as a, p, q as h, r as l, u as m, v as w, w as P } from "./main-6c522871.js";
|
|
2
2
|
import "@initia/initia.proto/ibc/applications/fetchprice/v1/tx";
|
|
3
3
|
import "@initia/initia.proto/ibc/applications/fetchprice/v1/types";
|
|
4
4
|
import "@initia/initia.proto/slinky/marketmap/v1/tx";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { _ as r, M as i, j as n, m as s } from "./main-
|
|
1
|
+
import { _ as r, M as i, j as n, m as s } from "./main-6c522871.js";
|
|
2
2
|
import "@initia/initia.proto/ibc/applications/fetchprice/v1/tx";
|
|
3
3
|
import "@initia/initia.proto/ibc/applications/fetchprice/v1/types";
|
|
4
4
|
import "@initia/initia.proto/slinky/marketmap/v1/tx";
|
package/lib/wallet/Wallet.ts
CHANGED
|
@@ -8,13 +8,11 @@ import { MetamaskSnapWallet } from './wallets/MetamaskSnapWallet';
|
|
|
8
8
|
import { LeapWallet } from './wallets/LeapWallet';
|
|
9
9
|
import { OKXWallet } from "./wallets/OKXWallet";
|
|
10
10
|
import { UnisatWallet } from "./wallets/UnisatWallet";
|
|
11
|
-
import { InitiaWallet } from './wallets/InitiaWallet';
|
|
12
11
|
|
|
13
12
|
|
|
14
13
|
|
|
15
14
|
export enum WalletName {
|
|
16
15
|
Keplr = "Keplr",
|
|
17
|
-
Initia = "Initia Wallet",
|
|
18
16
|
Ledger = "LedgerUSB",
|
|
19
17
|
LedgerBLE = "LedgerBLE",
|
|
20
18
|
Metamask = "Metamask",
|
|
@@ -121,8 +119,6 @@ export function createWallet(name: WalletName, arg: WalletArgument, registry?: R
|
|
|
121
119
|
return new UnisatWallet(arg, <IChain>chain, reg);
|
|
122
120
|
case WalletName.Keplr:
|
|
123
121
|
return new KeplerWallet(arg, reg)
|
|
124
|
-
case WalletName.Initia:
|
|
125
|
-
return new InitiaWallet(arg, <IChain>chain, reg)
|
|
126
122
|
case WalletName.Ledger:
|
|
127
123
|
return new LedgerWallet(arg, reg)
|
|
128
124
|
case WalletName.Leap:
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mictonode/widget",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.3.
|
|
4
|
+
"version": "0.3.10",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/ping-widget.js",
|
|
7
7
|
"author": {
|
|
@@ -41,11 +41,6 @@
|
|
|
41
41
|
"@cosmjs/stargate": "^0.32.3",
|
|
42
42
|
"@ethersproject/hash": "5.7.0",
|
|
43
43
|
"@ethersproject/signing-key": "5.7.0",
|
|
44
|
-
"@initia/initia-registry-types": "^0.0.17",
|
|
45
|
-
"@initia/initia.js": "0.2.7",
|
|
46
|
-
"@initia/initia.proto": "^0.2.0",
|
|
47
|
-
"@initia/opinit.proto": "^0.0.8",
|
|
48
|
-
"@initia/utils": "0.69.0",
|
|
49
44
|
"@leapwallet/cosmos-snap-provider": "^0.1.21",
|
|
50
45
|
"@ledgerhq/hw-transport-web-ble": "^6.27.13",
|
|
51
46
|
"@ledgerhq/hw-transport-webusb": "^6.27.14",
|