@bloxchain/contracts 1.0.0-alpha.21 → 1.0.0-alpha.23
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 +5 -6
- package/package.json +6 -5
package/README.md
CHANGED
|
@@ -6,8 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
Bloxchain Protocol smart contracts – state abstraction and core components for building on the Bloxchain Protocol.
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
> This package contains experimental smart contract code. While the framework is feature-complete and tested, it is not yet audited for production use. Use at your own risk and do not deploy with real assets without proper security review.
|
|
9
|
+
The core protocol has completed an independent security audit and is being prepared for production deployment. Review release notes and pin an exact version for production integrations.
|
|
11
10
|
|
|
12
11
|
## Requirements
|
|
13
12
|
|
|
@@ -56,19 +55,19 @@ Templates (e.g. AccountBlox, CopyBlox) and example applications (SimpleVault, Si
|
|
|
56
55
|
|
|
57
56
|
This package declares:
|
|
58
57
|
|
|
59
|
-
- `@openzeppelin/contracts`:
|
|
60
|
-
- `@openzeppelin/contracts-upgradeable`:
|
|
58
|
+
- `@openzeppelin/contracts`: 5.6.1
|
|
59
|
+
- `@openzeppelin/contracts-upgradeable`: 5.6.1
|
|
61
60
|
|
|
62
61
|
Install them in your project if your tooling does not resolve transitive dependencies.
|
|
63
62
|
|
|
64
63
|
## Versioning and stability
|
|
65
64
|
|
|
66
|
-
This package follows [Semantic Versioning](https://semver.org/).
|
|
65
|
+
This package follows [Semantic Versioning](https://semver.org/). Published versions use the **alpha** channel (`1.0.0-alpha.x`) while we finalize the 1.0.0 release line. Pin the exact version in production and review release notes before upgrading.
|
|
67
66
|
|
|
68
67
|
## Security
|
|
69
68
|
|
|
70
69
|
- **Vulnerability reporting**: Do not open public GitHub issues for security vulnerabilities. See the [Security Policy](https://github.com/PracticalParticle/Bloxchain-Protocol/blob/main/SECURITY.md) for reporting instructions (e.g. security@particlecs.com).
|
|
71
|
-
- **Audit status**:
|
|
70
|
+
- **Audit status**: Core protocol smart contracts have completed an independent security audit. Follow your own deployment, upgrade, and operational review processes before production use.
|
|
72
71
|
|
|
73
72
|
## Support and links
|
|
74
73
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bloxchain/contracts",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.23",
|
|
4
4
|
"description": "Library engine for building enterprise grade decentralized permissioned applications",
|
|
5
5
|
"files": [
|
|
6
6
|
"core",
|
|
@@ -11,7 +11,8 @@
|
|
|
11
11
|
],
|
|
12
12
|
"scripts": {
|
|
13
13
|
"prepublishOnly": "node scripts/prepublish-contracts.cjs",
|
|
14
|
-
"postpublish": "node scripts/postpublish-contracts.cjs"
|
|
14
|
+
"postpublish": "node scripts/postpublish-contracts.cjs",
|
|
15
|
+
"prepare:deps": "npm install"
|
|
15
16
|
},
|
|
16
17
|
"keywords": [
|
|
17
18
|
"bloxchain",
|
|
@@ -40,10 +41,10 @@
|
|
|
40
41
|
"access": "public"
|
|
41
42
|
},
|
|
42
43
|
"dependencies": {
|
|
43
|
-
"@openzeppelin/contracts": "
|
|
44
|
-
"@openzeppelin/contracts-upgradeable": "
|
|
44
|
+
"@openzeppelin/contracts": "5.6.1",
|
|
45
|
+
"@openzeppelin/contracts-upgradeable": "5.6.1"
|
|
45
46
|
},
|
|
46
47
|
"engines": {
|
|
47
|
-
"node": ">=18.
|
|
48
|
+
"node": ">=18.20.5"
|
|
48
49
|
}
|
|
49
50
|
}
|