#serialization #scale #arkworks #parity #wrapped #codec #traits

no-std ark-scale

Arkworks serialization wrapped in Parity SCALE codec

7 releases

0.0.12 Dec 5, 2023
0.0.11 Sep 23, 2023
0.0.10 Aug 29, 2023
0.0.3 May 16, 2023
0.0.2 Apr 14, 2023

#914 in Magic Beans

Download history 42751/week @ 2024-01-06 56019/week @ 2024-01-13 57171/week @ 2024-01-20 53173/week @ 2024-01-27 52818/week @ 2024-02-03 56886/week @ 2024-02-10 71491/week @ 2024-02-17 64893/week @ 2024-02-24 52220/week @ 2024-03-02 57013/week @ 2024-03-09 57957/week @ 2024-03-16 56834/week @ 2024-03-23 86972/week @ 2024-03-30 87030/week @ 2024-04-06 68866/week @ 2024-04-13 56509/week @ 2024-04-20

304,195 downloads per month
Used in 9 crates

MIT/Apache

34KB
611 lines

Arkworks serialization wrapped in Parity SCALE codec

ArkScale(T) can be serialized or deserialized using parity-scale-codec, provided T can be serialized or deserialized using ark-serialize.

Arkworks serializes via the std::io::{Read,Write} traits, or its no_std fork of those traits, as do other zcash sapling derivatives. At its core, Parity SCALE codec also consists of traits {Input,Output} analogous to std::io::{Read,Write} respectively, as well as traits {Decode,Encode} also quite similar to ark-serialize::{CanonicalDeserialize,CanonicalSerialize}. We simply translate between these extremely similar traits, including wrapping and unwrapping errors appropriately.

ArkScale cannot easily implement MaxEncodedLen or ConstEncodedLen from SCALE, due to the orphan rules. You'll need these if using weights in Frame, so you should usually create wrapper types around ArkScale. As a rule, anytime you choose curves then you'll have a conditionanl ark-substrate dependence anyways, so wrapper types should not become too onerous, and they likely improve documentation, errors, etc anyways.

ArkScale panics if serialization fails because SCALE does not propogate serialization failures. As scale outputs cannot fail, and ark-scale-derive does not introduce failures, we therefore cannot trigger this panic except by some explicit impl CanonicalSerialize for T intrpducing a failure. ArkScale users should therefore be responcible for reviewing non-derived CanonicalSerialize in their dependencies. In particular, there are no fresh failures in arkworks/algebra:

git clone https://github.com/arkworks-rs/algebra
cd algebra
grep -r --include '*.rs' 'CanonicalSerialize for' -A 10 ff* ec* poly/ | less

This becomes slightly harder if Implementable trait aliases lands.

Dependencies

~6MB
~121K SLoC