@secondlayer/sdk 6.21.0 → 6.21.1
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 +1 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -19,7 +19,7 @@ const sl = new SecondLayer({
|
|
|
19
19
|
});
|
|
20
20
|
```
|
|
21
21
|
|
|
22
|
-
`sl.
|
|
22
|
+
`sl.contracts`, `sl.index`, and `sl.subgraphs` reads are anonymous
|
|
23
23
|
— no key needed (`sl.index` rejects free-tier keys — Build+ for keyed access).
|
|
24
24
|
**`sl.streams` reads require a bearer token** (`apiKey`) and resolve a per-tier tenant; a
|
|
25
25
|
publicly-known free-tier token exists but a bearer is always required. Writes
|
|
@@ -38,7 +38,6 @@ plan's tier.
|
|
|
38
38
|
|
|
39
39
|
- `sl.streams` reads raw ordered L1 events from Stacks Streams.
|
|
40
40
|
- `sl.index` reads the decoded L2 layer from Stacks Index — FT/NFT transfers, all event types (`events`), and `contractCalls`.
|
|
41
|
-
- `sl.datasets` reads the Foundation Datasets (sBTC, BNS, PoX-4, STX transfers); `listDatasets()` is the catalog.
|
|
42
41
|
- `sl.contracts` finds deployed contracts by trait (SIP-009/010/013).
|
|
43
42
|
- `sl.subgraphs` reads app-specific L3 tables from Stacks Subgraphs.
|
|
44
43
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@secondlayer/sdk",
|
|
3
|
-
"version": "6.21.
|
|
3
|
+
"version": "6.21.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
43
|
"@secondlayer/shared": "^6.30.0",
|
|
44
|
-
"@secondlayer/stacks": "^2.5.
|
|
44
|
+
"@secondlayer/stacks": "^2.5.1",
|
|
45
45
|
"@secondlayer/subgraphs": "^3.11.0"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|