@fastnear/wallet-adapter 0.9.2 → 0.9.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 +9 -0
- package/dist/cjs/index.cjs +2 -2
- package/dist/esm/index.js +2 -2
- package/dist/umd/browser.global.js +2 -2
- package/package.json +9 -1
package/README.md
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# wallet adapter
|
|
2
|
+
|
|
3
|
+
The lion's share of focus has been on MyNEARWallet, since achieving that allows us to work backwards and ensure the rest work. I suspect I've missed a lot in the wallet side of this monorepo at the time of this writing. Good to keep in mind, and not worry that you're "doing something wrong" if you see an issue. ;)
|
|
4
|
+
|
|
5
|
+
## alpha version
|
|
6
|
+
|
|
7
|
+
The focus thus far has been of a highly technical nature, and after releasing this alpha version the devs will let their minds gestate. then this file will fill out with more meaningful info and snippets. 🙏🏼
|
|
8
|
+
|
|
9
|
+
Make sure to visit the [project-level README](https://github.com/fastnear/js-monorepo#global-near-js)
|
package/dist/cjs/index.cjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
/* ⋈ 🏃🏻💨 FastNEAR Wallet Adapter - CJS (@fastnear/wallet-adapter version 0.9.
|
|
2
|
-
/* https://www.npmjs.com/package/@fastnear/wallet-adapter/v/0.9.
|
|
1
|
+
/* ⋈ 🏃🏻💨 FastNEAR Wallet Adapter - CJS (@fastnear/wallet-adapter version 0.9.4) */
|
|
2
|
+
/* https://www.npmjs.com/package/@fastnear/wallet-adapter/v/0.9.4 */
|
|
3
3
|
"use strict";
|
|
4
4
|
var __defProp = Object.defineProperty;
|
|
5
5
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
package/dist/esm/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
/* ⋈ 🏃🏻💨 FastNEAR Wallet Adapter - ESM (@fastnear/wallet-adapter version 0.9.
|
|
2
|
-
/* https://www.npmjs.com/package/@fastnear/wallet-adapter/v/0.9.
|
|
1
|
+
/* ⋈ 🏃🏻💨 FastNEAR Wallet Adapter - ESM (@fastnear/wallet-adapter version 0.9.4) */
|
|
2
|
+
/* https://www.npmjs.com/package/@fastnear/wallet-adapter/v/0.9.4 */
|
|
3
3
|
var __defProp = Object.defineProperty;
|
|
4
4
|
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
|
5
5
|
class WalletAdapter {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
/* ⋈ 🏃🏻💨 FastNEAR Wallet Adapter - IIFE/UMD (@fastnear/wallet-adapter version 0.9.
|
|
2
|
-
/* https://www.npmjs.com/package/@fastnear/wallet-adapter/v/0.9.
|
|
1
|
+
/* ⋈ 🏃🏻💨 FastNEAR Wallet Adapter - IIFE/UMD (@fastnear/wallet-adapter version 0.9.4) */
|
|
2
|
+
/* https://www.npmjs.com/package/@fastnear/wallet-adapter/v/0.9.4 */
|
|
3
3
|
"use strict";
|
|
4
4
|
var NearWalletAdapter = (() => {
|
|
5
5
|
var __defProp = Object.defineProperty;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fastnear/wallet-adapter",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.4",
|
|
4
4
|
"description": "Optimized interfaces for a NEAR Protocol wallet adapter",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "./dist/esm/index.d.ts",
|
|
@@ -14,8 +14,16 @@
|
|
|
14
14
|
"type-check": "tsc --noEmit"
|
|
15
15
|
},
|
|
16
16
|
"author": "FastNEAR",
|
|
17
|
+
"homepage": "https://js.fastnear.com",
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "git+https://github.com/fastnear/js-monorepo.git"
|
|
21
|
+
},
|
|
17
22
|
"keywords": [
|
|
18
23
|
"near-protocol",
|
|
24
|
+
"near-wallet",
|
|
25
|
+
"web3",
|
|
26
|
+
"web3-wallet",
|
|
19
27
|
"blockchain",
|
|
20
28
|
"fastnear"
|
|
21
29
|
],
|