@veilswapapp/sdk 0.0.1 → 0.0.3
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 +70 -0
- package/package.json +4 -2
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,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veilswapapp/sdk",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"description": "VeilSwap SDK",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -14,7 +14,9 @@
|
|
|
14
14
|
"require": "./dist/index.cjs"
|
|
15
15
|
}
|
|
16
16
|
},
|
|
17
|
-
"files": [
|
|
17
|
+
"files": [
|
|
18
|
+
"dist"
|
|
19
|
+
],
|
|
18
20
|
"scripts": {
|
|
19
21
|
"build": "tsup src/index.ts --format cjs,esm --dts",
|
|
20
22
|
"prepublishOnly": "npm run build"
|