sablier 1.0.0-beta.1 → 1.0.0-beta.2

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 +22 -10
  2. package/package.json +7 -5
package/README.md CHANGED
@@ -1,7 +1,14 @@
1
- # Sablier Deployments 🚀
1
+ # Sablier Lockup [![Github Actions][gha-badge]][gha] [![Discord][discord-badge]][discord] [![Twitter][twitter-badge]][twitter]
2
2
 
3
- Deployment data for the [Sablier Protocol](https://sablier.com), the token distribution protocol for Ethereum and
4
- EVM-compatible chains.
3
+ [gha]: https://github.com/sablier-labs/sdk/actions
4
+ [gha-badge]: https://github.com/sablier-labs/sdk/actions/workflows/ci.yml/badge.svg
5
+ [discord]: https://discord.gg/bSwRCwWRsT
6
+ [discord-badge]: https://img.shields.io/discord/659709894315868191
7
+ [twitter-badge]: https://img.shields.io/twitter/follow/Sablier
8
+ [twitter]: https://x.com/Sablier
9
+
10
+ Contract addresses, chain data, and deployment information for [Sablier](https://sablier.com), the token distribution
11
+ protocol for Ethereum and EVM-compatible chains.
5
12
 
6
13
  This package provides:
7
14
 
@@ -13,11 +20,13 @@ This package provides:
13
20
  ## Installation 📦
14
21
 
15
22
  ```bash
23
+ bun add sablier
24
+ # or
16
25
  npm install sablier
17
26
  # or
18
- yarn add sablier
27
+ pnpm add sablier
19
28
  # or
20
- bun add sablier
29
+ yarn add sablier
21
30
  ```
22
31
 
23
32
  ## Protocol Overview 🎯
@@ -115,7 +124,7 @@ interface Release {
115
124
  ### Deployment Broadcasts
116
125
 
117
126
  The deployment broadcasts (generated with [Foundry](https://book.getfoundry.sh/reference/cheatcodes/broadcast/)) are
118
- located under the [`data`](./data) directory.
127
+ located under the [`deployments`](./deployments) directory.
119
128
 
120
129
  Each deployment is stored as JSON with a structure like this, which is generated by Foundry:
121
130
 
@@ -138,17 +147,20 @@ Each deployment is stored as JSON with a structure like this, which is generated
138
147
 
139
148
  We welcome contributions!
140
149
 
141
- - 🐛 [Bug reports](https://github.com/sablier-labs/deployments/issues/new)
142
- - 💬 [Discussions](https://github.com/sablier-labs/deployments/discussions/new)
150
+ - 🐛 [Bug reports](https://github.com/sablier-labs/sdk/issues/new)
151
+ - 💬 [Discussions](https://github.com/sablier-labs/sdk/discussions/new)
143
152
  - 💬 [Discord](https://discord.gg/bSwRCwWRsT)
144
153
 
145
154
  For guidance on how to make PRs, see the [CONTRIBUTING](./CONTRIBUTING.md) guide.
146
155
 
147
156
  ## Links 📚
148
157
 
149
- - 📖 [Protocol Docs](https://docs.sablier.com)
150
- - 🔗 [API Reference](https://docs.sablier.com/api/overview)
158
+ - 📖 [Docs](https://docs.sablier.com)
151
159
  - ⏳ [Sablier App](https://app.sablier.com)
160
+ - 🛠️ Smart Contracts
161
+ - [Airdrops](https://github.com/sablier-labs/airdrops)
162
+ - [Flow](https://github.com/sablier-labs/flow)
163
+ - [Lockup](https://github.com/sablier-labs/lockup)
152
164
 
153
165
  ## License 📄
154
166
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "sablier",
3
- "description": "Sablier SDK providing contract addresses, chain data, and deployment information for the Sablier Protocol",
4
- "version": "1.0.0-beta.1",
3
+ "description": "Contract addresses, chain data, and deployment information for the Sablier Protocol",
4
+ "version": "1.0.0-beta.2",
5
5
  "author": {
6
6
  "name": "Sablier Labs Ltd",
7
7
  "url": "https://sablier.com"
@@ -15,7 +15,6 @@
15
15
  },
16
16
  "devDependencies": {
17
17
  "@biomejs/biome": "2.0.0-beta.5",
18
- "@sablier/configs": "github:sablier-labs/configs",
19
18
  "@sablier/devkit": "github:sablier-labs/devkit#main",
20
19
  "@types/fs-extra": "^11.0",
21
20
  "@types/lodash": "^4.17",
@@ -24,7 +23,7 @@
24
23
  "axios": "^1.8",
25
24
  "commander": "^14.0.0",
26
25
  "fs-extra": "^11.3",
27
- "globby": "^14.1",
26
+ "globby": "11",
28
27
  "husky": "^9.1",
29
28
  "lint-staged": "^15.5",
30
29
  "prettier": "^3.5",
@@ -65,7 +64,10 @@
65
64
  "publishConfig": {
66
65
  "access": "public"
67
66
  },
68
- "repository": "sablier-labs/deployments",
67
+ "repository": {
68
+ "type": "git",
69
+ "url": "git+https://github.com/sablier-labs/sdk.git"
70
+ },
69
71
  "scripts": {
70
72
  "build": "bun rimraf dist && bun tsc -p tsconfig.build.json && bun tsc-alias -p tsconfig.build.json",
71
73
  "prepack": "bun install --frozen-lockfile && bun run build"