-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
82 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [Unreleased] | ||
|
||
## [0.1.0] - 2024-07-03 | ||
|
||
### Added | ||
|
||
- Re-export | ||
- `dusk-bls12_381::BlsScalar` | ||
- `dusk-jubjub::{ | ||
JubJubAffine, | ||
JubJubExtended, | ||
JubJubScalar, | ||
GENERATOR_EXTENDED, | ||
GENERATOR_NUMS_EXTENDED | ||
}` | ||
- `bls12_381_bls::{ | ||
Error as BlsSigError, | ||
PublicKey as BlsPublicKey, | ||
SecretKey as BlsSecretKey, | ||
Signature as BlsSignature, | ||
APK as BlsAggPublicKey | ||
}` | ||
- `jubjub_schnorr::{ | ||
PublicKey as SchnorrPublicKey, | ||
SecretKey as SchnorrSecretKey, | ||
Signature as SchnorrSignature, | ||
SignatureDouble as SchnorrSignatureDouble | ||
}` | ||
- `phoenix_core::{ | ||
value_commitment, | ||
Error as PhoenixError, | ||
Note, | ||
PublicKey, | ||
SecretKey, | ||
Sender, | ||
StealthAddress, | ||
TxSkeleton, | ||
ViewKey, | ||
NOTE_VAL_ENC_SIZE, | ||
OUTPUT_NOTES | ||
}` | ||
- Add type-alias: | ||
- `pub type StakeSecretKey = BlsSecretKey` | ||
- `pub type StakePublicKey = BlsPublicKey` | ||
- `pub type StakeSignature = BlsSignature` | ||
- `pub type StakeAggPublicKey = BlsAggPublicKey` | ||
- `pub type NoteSecretKey = SchnorrSecretKey` | ||
- `pub type NotePublicKey = SchnorrPublicKey` | ||
- `pub type NoteSignature = SchnorrSignature` | ||
- Add modules, types and functionality: | ||
- `transfer::{ | ||
ContractId, | ||
TRANSFER_TREE_DEPTH, | ||
TreeLeaf, | ||
Mint, | ||
ContractCall, | ||
Fee, | ||
SenderAccount, | ||
Payload, | ||
Transaction, | ||
}` | ||
- `stake::{ | ||
EPOCH, | ||
STAKE_WARNINGS, | ||
next_epoch, | ||
Stake, | ||
Unstake, | ||
Withdraw, | ||
StakingEvent, | ||
StakeData, | ||
}` | ||
|
||
|
||
[Unreleased]: https://github.com/dusk-network/rusk/compare/execution-core-0.1.0...HEAD | ||
[0.1.0]: https://github.com/dusk-network/dusk-abi/releases/tag/execution-core-0.1.0 |