@veilswapapp/sdk 0.0.2 → 0.0.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.
Files changed (2) hide show
  1. package/README.md +70 -0
  2. package/package.json +18 -1
package/README.md ADDED
@@ -0,0 +1,70 @@
1
+ # VeilSwap SDK
2
+
3
+ Privacy-first, ZK-powered swap infrastructure.
4
+
5
+ VeilSwap enables non-custodial, anonymous asset swaps with zero traces and no logs.
6
+ Built for developers who value privacy, security, and simplicity.
7
+
8
+ ---
9
+
10
+ ## Installation
11
+
12
+ Install the SDK using your preferred package manager:
13
+
14
+ npm install @veilswapapp/sdk
15
+
16
+ or
17
+
18
+ pnpm add @veilswapapp/sdk
19
+
20
+ or
21
+
22
+ yarn add @veilswapapp/sdk
23
+
24
+ ---
25
+
26
+ ## Quick Start
27
+
28
+ import { veilSwapInfo } from "@veilswapapp/sdk";
29
+
30
+ console.log(veilSwapInfo());
31
+
32
+ ---
33
+
34
+ ## Features
35
+
36
+ - Privacy-first architecture
37
+ - Zero logs, zero traces
38
+ - ZK-powered design
39
+ - Non-custodial by default
40
+ - Developer-friendly SDK
41
+
42
+ ---
43
+
44
+ ## About VeilSwap
45
+
46
+ VeilSwap is a privacy-focused swap protocol designed for users who value anonymity and full control over their funds.
47
+
48
+ No tracking. No custody. No compromises.
49
+
50
+ Your funds. Your control. Privacy, engineered.
51
+
52
+ ---
53
+
54
+ ## Status
55
+
56
+ This SDK is in active development.
57
+ APIs may expand as new features are released.
58
+
59
+ ---
60
+
61
+ ## Links
62
+
63
+ Website: //veilswap.app
64
+ Documentation:https: //www.veilswap.app/docs
65
+
66
+ ---
67
+
68
+ ## License
69
+
70
+ MIT License © VeilSwap
package/package.json CHANGED
@@ -1,12 +1,29 @@
1
1
  {
2
2
  "name": "@veilswapapp/sdk",
3
- "version": "0.0.2",
3
+ "version": "0.0.4",
4
4
  "description": "VeilSwap SDK",
5
5
  "license": "MIT",
6
6
  "type": "module",
7
7
  "main": "dist/index.cjs",
8
8
  "module": "dist/index.mjs",
9
9
  "types": "dist/index.d.ts",
10
+ "homepage": "https://veilswap.app",
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "https://github.com/veilswap/VeilSwap"
14
+ },
15
+ "keywords": [
16
+ "veilswap",
17
+ "privacy",
18
+ "zk",
19
+ "zero-knowledge",
20
+ "defi",
21
+ "swap",
22
+ "web3",
23
+ "crypto",
24
+ "anonymity",
25
+ "non-custodial"
26
+ ],
10
27
  "exports": {
11
28
  ".": {
12
29
  "types": "./dist/index.d.ts",