@mybucks.online/core 1.0.9 → 1.0.11
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 +25 -5
- package/package.json +5 -4
package/README.md
CHANGED
|
@@ -4,11 +4,30 @@ This is a core part of [mybucks.online](https://mybucks.online) crypto wallet, i
|
|
|
4
4
|
|
|
5
5
|
## mybucks.online
|
|
6
6
|
|
|
7
|
-
[Mybucks.online](https://mybucks.online) is a **
|
|
7
|
+
[Mybucks.online](https://mybucks.online) is a **seedless, disposable crypto wallet** designed for **speed and convenience**. It generates a private key from your password and passcode using an industry-standard, verified **one-way hash function**. Your private key forms your account, allowing you to transfer, receive, and hold your crypto assets instantly.
|
|
8
8
|
|
|
9
9
|
As a hash function, the **scrypt** Key Derivation Function (KDF) increases the computational effort required to crack passwords, effectively delaying **brute-force** attacks and making them impractical.
|
|
10
10
|
|
|
11
|
-
It fully runs on your **browser side** without using any storage or invoking any 3rd-party APIs for key management. It instantly generates your private key from your password input, and whenever you close or refresh, there is no footprint
|
|
11
|
+
It fully runs on your **browser side** without using any storage or invoking any 3rd-party APIs for key management. It instantly generates your private key from your password input, and whenever you close or refresh, there is **no footprint**. This absolutely protects your privacy.
|
|
12
|
+
|
|
13
|
+
### Zero Footprint
|
|
14
|
+
- No servers, no databases, no storage and no tracking.
|
|
15
|
+
- 100% browser-based.
|
|
16
|
+
- Your credentials never leave your device.
|
|
17
|
+
- Your account is generated whenever you open it. Closing or refreshing your browser erases all traces/history.
|
|
18
|
+
|
|
19
|
+
### Fast and Easy
|
|
20
|
+
- No app installs, no browser extensions, no registration and no KYC.
|
|
21
|
+
- You can create or open your wallet in seconds - all you need is your browser.
|
|
22
|
+
- Password is easier to handle and remember than seed phrases
|
|
23
|
+
|
|
24
|
+
### 1-Click Gifting
|
|
25
|
+
- Stop asking your friends for their wallet addresses.
|
|
26
|
+
- Send a wallet as a URL rather than just sending coins.
|
|
27
|
+
- The recipient clicks the URL and takes full ownership instantly.
|
|
28
|
+
- This makes **gifting or airdropping perfectly easy** and enables massive micro-gifting in seconds.
|
|
29
|
+
|
|
30
|
+
By integrating this library, you can programmatically generate thousands of unique wallet links and distribute them via your own marketing platforms, email lists, or social media campaigns.
|
|
12
31
|
|
|
13
32
|
## Quick start
|
|
14
33
|
|
|
@@ -49,7 +68,7 @@ console.log("TRON Address: ", address2);
|
|
|
49
68
|
import { generateToken } from "@mybucks.online/core";
|
|
50
69
|
const token = generateToken(password, passcode, network);
|
|
51
70
|
|
|
52
|
-
console.log("https://app.mybucks.online
|
|
71
|
+
console.log("https://app.mybucks.online/#wallet=" + token);
|
|
53
72
|
```
|
|
54
73
|
|
|
55
74
|
```javascript
|
|
@@ -74,5 +93,6 @@ Find the docs [here](https://docs.mybucks.online).
|
|
|
74
93
|
- https://app.mybucks.online
|
|
75
94
|
password: **DemoAccount5&**
|
|
76
95
|
passcode: **112324**
|
|
77
|
-
- https://app.mybucks.online
|
|
78
|
-
- https://app.mybucks.online
|
|
96
|
+
- https://app.mybucks.online/#wallet=VWnsSGRGVtb0FjY291bnQ1JgIxMTIzMjQCb3B0aW1pc20=_wNovT
|
|
97
|
+
- https://app.mybucks.online/#wallet=1jpFD8RGVtb0FjY291bnQ1JgIxMTIzMjQCYmFzZQ==fhk-GL
|
|
98
|
+
- https://codesandbox.io/p/sandbox/mybucks-online-key-generation-sandbox-lt53c3
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mybucks.online/core",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.11",
|
|
4
4
|
"description": "Core module of Mybucks.online Crypto Wallet",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -12,9 +12,11 @@
|
|
|
12
12
|
"url": "git+https://github.com/mybucks-online/core.git"
|
|
13
13
|
},
|
|
14
14
|
"keywords": [
|
|
15
|
+
"mybucks.online",
|
|
16
|
+
"seedless",
|
|
17
|
+
"disposable",
|
|
15
18
|
"wallet",
|
|
16
19
|
"crypto",
|
|
17
|
-
"password-only",
|
|
18
20
|
"multi-chain",
|
|
19
21
|
"self-custodial",
|
|
20
22
|
"browser-based",
|
|
@@ -23,8 +25,7 @@
|
|
|
23
25
|
"scrypt",
|
|
24
26
|
"keccak256",
|
|
25
27
|
"key-generation",
|
|
26
|
-
"open-source"
|
|
27
|
-
"mybucks.online"
|
|
28
|
+
"open-source"
|
|
28
29
|
],
|
|
29
30
|
"author": "koko37",
|
|
30
31
|
"license": "MIT",
|