-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cardano: Add vote delegation to node api #89
Cardano: Add vote delegation to node api #89
Conversation
22aaf65
to
abcd7f4
Compare
src/wasm/types.rs
Outdated
| { | ||
voteDelegation: { | ||
keypath: Keypath | ||
type: number |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
number
is a bit too generic, wouldn't it be possible to narrow the values down with some enum? That would potentially allow for making this a union of different object shapes, making it clear when is drep hash required and when it isn't
Moreover, if possible, instead of null, I'd consider making the drepCredHash
optional, at least from a typescript perspective it would feel more "natural"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I agree, this type should be something like
CardanoDRepType = 'keyHash' | 'scriptHash' | 'alwaysAbstain' | 'alwaysNoConfidence'
if it doesn't work out of the box like this, check other enums (e.g. in btc.proto/btc.rs) and scripts/build-protos.rs for reference,
src/wasm/types.rs
Outdated
| { | ||
voteDelegation: { | ||
keypath: Keypath | ||
type: number |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I agree, this type should be something like
CardanoDRepType = 'keyHash' | 'scriptHash' | 'alwaysAbstain' | 'alwaysNoConfidence'
if it doesn't work out of the box like this, check other enums (e.g. in btc.proto/btc.rs) and scripts/build-protos.rs for reference,
src/wasm/types.rs
Outdated
voteDelegation: { | ||
keypath: Keypath | ||
type: number | ||
drepCredhash: Uint8Array | undefined | null |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why undefined or null? Seems like drepCredhash?: Uint8Array
should be enough.
in scripts/build-protos.rs, you could rename this to drepCredHash
(proper camelCase)
sandbox/src/Cardano.tsx
Outdated
} | ||
|
||
export function Cardano({ bb02 } : Props) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please keep the same style (spaces, indent level, ...)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please also add a CHANGELOG in CHANGELOG-npm.md under 0.7.0
If you rebase, the failing nightly CI item should disappear.
00d5d6a
to
eb4173a
Compare
scripts/build-protos.rs
Outdated
( | ||
"shiftcrypto.bitbox02.CardanoSignTransactionRequest.Certificate.VoteDelegation.CardanoDRepType.KEY_HASH", | ||
"serde(rename = \"keyHash\")", | ||
), | ||
( | ||
"shiftcrypto.bitbox02.CardanoSignTransactionRequest.Certificate.VoteDelegation.CardanoDRepType.SCRIPT_HASH", | ||
"serde(rename = \"scriptHash\")", | ||
), | ||
( | ||
"shiftcrypto.bitbox02.CardanoSignTransactionRequest.Certificate.VoteDelegation.CardanoDRepType.ALWAYS_ABSTAIN", | ||
"serde(rename = \"alwaysAbstain\")", | ||
), | ||
( | ||
"shiftcrypto.bitbox02.CardanoSignTransactionRequest.Certificate.VoteDelegation.CardanoDRepType.ALWAYS_NO_CONFIDENCE", | ||
"serde(rename = \"alwaysNoConfidence\")", | ||
), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These are not needed because camelCase
is the default - the dRepType enum has this attribute already:
#[cfg_attr(feature = "wasm", serde(rename_all = "camelCase"))]
Could you remove these?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think you missed make build-protos
afterwards, as these tags are still in the generated protobuf file. Please run make build-protos
again.
src/wasm/types.rs
Outdated
voteDelegation: { | ||
keypath: Keypath | ||
type: CardanoDrepType | ||
drepCredHash?: Uint8Array |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you changed the name here but the deserialization still uses drepCredhash
, so if you tried to use drepCredHash
, it would not actually show the hash and error after confirmation.
@@ -151,6 +150,7 @@ function CardanoSignTransaction({ bb02 }: Props) { | |||
['zero-ttl', 'Transaction with TTL=0'], | |||
['tokens', 'Transaction sending tokens'], | |||
['delegate', 'Delegate staking to a pool'], | |||
['vote-delegation', 'Delegate vote to a dRep'], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please add another one that delegates to a keyHash or scriptHash, or add a dropdown to the existing one to switch the mode so all of them can be tested in the sandbox. The hash ones don't work right now (see other comment).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also please add an entry to CHANGELOG-npm.md
In the meantime we released v0.7.0 to npmjs. Please rebase and change NPM_VERSION to 0.8.0. Thanks. |
f211ed6
to
18b8237
Compare
@@ -2,6 +2,9 @@ | |||
|
|||
## Unreleased | |||
|
|||
## 0.8.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please also change NPM_VERSION - https://github.com/BitBoxSwiss/bitbox-api-rs/blob/master/NPM_VERSION
scripts/build-protos.rs
Outdated
( | ||
"shiftcrypto.bitbox02.CardanoSignTransactionRequest.Certificate.VoteDelegation.CardanoDRepType.KEY_HASH", | ||
"serde(rename = \"keyHash\")", | ||
), | ||
( | ||
"shiftcrypto.bitbox02.CardanoSignTransactionRequest.Certificate.VoteDelegation.CardanoDRepType.SCRIPT_HASH", | ||
"serde(rename = \"scriptHash\")", | ||
), | ||
( | ||
"shiftcrypto.bitbox02.CardanoSignTransactionRequest.Certificate.VoteDelegation.CardanoDRepType.ALWAYS_ABSTAIN", | ||
"serde(rename = \"alwaysAbstain\")", | ||
), | ||
( | ||
"shiftcrypto.bitbox02.CardanoSignTransactionRequest.Certificate.VoteDelegation.CardanoDRepType.ALWAYS_NO_CONFIDENCE", | ||
"serde(rename = \"alwaysNoConfidence\")", | ||
), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think you missed make build-protos
afterwards, as these tags are still in the generated protobuf file. Please run make build-protos
again.
Added vote delegation to node api and wasm generation. Signed-off-by: RostarMarek <[email protected]>
18b8237
to
afe26fd
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks 🎉
Added vote delegation to node api and wasm generation.
I still have the issue where I can't build that I mentioned here so I wasn't able to load firmware to my dev device to properly test it out.