@bcts/provenance-mark 1.0.0-alpha.9 → 1.0.0-beta.0
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/LICENSE +2 -1
- package/README.md +1 -1
- package/dist/index.cjs +1174 -584
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +489 -136
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts +489 -136
- package/dist/index.d.mts.map +1 -1
- package/dist/index.iife.js +1247 -659
- package/dist/index.iife.js.map +1 -1
- package/dist/index.mjs +1132 -563
- package/dist/index.mjs.map +1 -1
- package/package.json +22 -22
- package/src/crypto-utils.ts +9 -3
- package/src/date.ts +42 -0
- package/src/envelope.ts +122 -0
- package/src/error.ts +21 -0
- package/src/generator.ts +153 -2
- package/src/index.ts +24 -0
- package/src/mark-info.ts +38 -17
- package/src/mark.ts +399 -45
- package/src/resolution.ts +32 -9
- package/src/rng-state.ts +6 -0
- package/src/seed.ts +6 -0
- package/src/utils.ts +68 -39
- package/src/validate.ts +63 -57
- package/src/xoshiro256starstar.ts +6 -0
package/LICENSE
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
Copyright © 2024 Blockchain Commons, LLC
|
|
2
|
-
Copyright © 2025
|
|
2
|
+
Copyright © 2025-2026 Parity Technologies
|
|
3
|
+
|
|
3
4
|
|
|
4
5
|
Redistribution and use in source and binary forms, with or without modification,
|
|
5
6
|
are permitted provided that the following conditions are met:
|
package/README.md
CHANGED
|
@@ -12,4 +12,4 @@ Provenance Marks are specified in [this white paper](https://provemark.com).
|
|
|
12
12
|
|
|
13
13
|
## Rust Reference Implementation
|
|
14
14
|
|
|
15
|
-
This TypeScript implementation is based on [provenance-mark-rust](https://github.com/BlockchainCommons/provenance-mark-rust) **v0.
|
|
15
|
+
This TypeScript implementation is based on [provenance-mark-rust](https://github.com/BlockchainCommons/provenance-mark-rust) **v0.24.0** ([commit](https://github.com/BlockchainCommons/provenance-mark-rust/tree/1732c79c89a72c3bfd66d6b23537d50e79fff9b5)).
|