@reptilianhq/launch-on-block-sdk 0.4.0 → 0.4.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/CHANGELOG.md +4 -5
- package/README.md +9 -8
- package/package.json +3 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,15 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
##
|
|
3
|
+
## 0.4.1
|
|
4
4
|
|
|
5
|
-
-
|
|
6
|
-
-
|
|
7
|
-
- Roll back the complete generated-source import if any staged replacement fails.
|
|
5
|
+
- Remove transitional cross-repository handoff metadata from the published package boundary.
|
|
6
|
+
- Pin all GitHub Actions used by CI and release-candidate workflows.
|
|
8
7
|
|
|
9
8
|
## 0.4.0
|
|
10
9
|
|
|
11
10
|
- Establish the public Launch On Block SDK in its dedicated repository.
|
|
12
11
|
- Publish runtime-neutral contract interfaces, deployment metadata, and transaction verification tools.
|
|
13
|
-
-
|
|
12
|
+
- Pin the initial reviewed ABI and deployment inputs by SHA-256 provenance.
|
|
14
13
|
- Support Node.js 22 consumers while using Node.js 24 for development and CI.
|
|
15
14
|
- Gate public npm releases through protected OIDC publishing and exact tarball verification.
|
package/README.md
CHANGED
|
@@ -94,22 +94,23 @@ npm ci
|
|
|
94
94
|
npm test
|
|
95
95
|
```
|
|
96
96
|
|
|
97
|
-
`npm test` verifies the
|
|
97
|
+
`npm test` verifies the reviewed artifact hashes, builds the package, runs the unit suite, and packs the
|
|
98
98
|
exact public exports from a clean `dist` directory.
|
|
99
99
|
|
|
100
100
|
Do not import Foundry artifact JSON or copy ABI fragments into consumer applications. Foundry artifacts
|
|
101
101
|
contain deployment bytecode and compiler metadata that application bundles do not need, while copied
|
|
102
102
|
fragments drift independently from the SDK's compatibility checks.
|
|
103
103
|
|
|
104
|
-
## Contract
|
|
104
|
+
## Contract interface boundary
|
|
105
105
|
|
|
106
|
-
The Launch On Block
|
|
107
|
-
|
|
108
|
-
|
|
106
|
+
The private Launch On Block repository remains authoritative for deployment scripts and production
|
|
107
|
+
activation. This repository contains only the reviewed public SDK boundary: ABI subsets, deployment
|
|
108
|
+
metadata, deterministic builders, and verification helpers. It does not contain full contract source,
|
|
109
|
+
deployment tooling, credentials, or private infrastructure.
|
|
109
110
|
|
|
110
|
-
This repository never reads a sibling contract checkout during build or release.
|
|
111
|
-
committed, hash-
|
|
112
|
-
|
|
111
|
+
This repository never reads a sibling contract checkout during build or release. The initial generated
|
|
112
|
+
inputs are committed, hash-pinned, reviewed here, and published as part of the SDK release. Contract
|
|
113
|
+
sources can move here later without changing the `0.4.0` public boundary.
|
|
113
114
|
|
|
114
115
|
## License
|
|
115
116
|
|
package/package.json
CHANGED
|
@@ -1,12 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reptilianhq/launch-on-block-sdk",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.1",
|
|
4
4
|
"description": "Public TypeScript SDK, contract interfaces, ABIs, and deployment metadata for integrating with the Launch On Block protocol.",
|
|
5
|
-
"launchpadRelease": {
|
|
6
|
-
"network": "mainnet",
|
|
7
|
-
"releaseId": "gen-12",
|
|
8
|
-
"manifest": "deployments/robinhood-mainnet-gen-12.json"
|
|
9
|
-
},
|
|
10
5
|
"license": "GPL-3.0-only",
|
|
11
6
|
"repository": {
|
|
12
7
|
"type": "git",
|
|
@@ -66,16 +61,14 @@
|
|
|
66
61
|
},
|
|
67
62
|
"scripts": {
|
|
68
63
|
"clean": "rm -rf dist",
|
|
69
|
-
"check": "npm run check:artifacts && npm run
|
|
64
|
+
"check": "npm run check:artifacts && npm run build && npm run test:unit && npm run test:pack",
|
|
70
65
|
"check:artifacts": "node scripts/check-artifacts.mjs",
|
|
71
66
|
"build": "npm run clean && tsc -p tsconfig.json",
|
|
72
67
|
"prepack": "npm run build",
|
|
73
68
|
"test": "npm run check",
|
|
74
|
-
"test:handoff": "node --test scripts/import-artifacts.node-test.mjs",
|
|
75
69
|
"test:unit": "tsc -p tsconfig.test.json && vitest run",
|
|
76
70
|
"test:pack": "node scripts/pack.mjs",
|
|
77
|
-
"verify:deployment": "npm run build && node scripts/verify-deployment.mjs"
|
|
78
|
-
"artifacts:import": "node scripts/import-artifacts.mjs"
|
|
71
|
+
"verify:deployment": "npm run build && node scripts/verify-deployment.mjs"
|
|
79
72
|
},
|
|
80
73
|
"peerDependencies": {
|
|
81
74
|
"viem": ">=2.21.0 <3"
|