Crates.io | vip-712 |
lib.rs | vip-712 |
version | 0.1.1 |
source | src |
created_at | 2021-02-28 19:39:49.662979 |
updated_at | 2021-02-28 19:39:49.662979 |
description | vip-712 encoding |
homepage | https://github.com/openvapory/tetsy-vapory |
repository | https://github.com/openvapory/tetsy-vapory |
max_upload_size | |
id | 361967 |
size | 42,044 |
use vip_712::{VIP712, hash_structured_data};
use serde_json::from_str;
use rustc_hex::ToHex;
fn main() {
let json = r#"{
"primaryType": "Mail",
"domain": {
"name": "Vapor Mail",
"version": "1",
"chainId": "0x1",
"verifyingContract": "0xCcCCccccCCCCcCCCCCCcCcCccCcCCCcCcccccccC"
},
"message": {
"from": {
"name": "Cow",
"wallet": "0xCD2a3d9F938E13CD947Ec05AbC7FE734Df8DD826"
},
"to": {
"name": "Bob",
"wallet": "0xbBbBBBBbbBBBbbbBbbBbbbbBBbBbbbbBbBbbBBbB"
},
"contents": "Hello, Bob!"
},
"types": {
"VIP712Domain": [
{ "name": "name", "type": "string" },
{ "name": "version", "type": "string" },
{ "name": "chainId", "type": "uint256" },
{ "name": "verifyingContract", "type": "address" }
],
"Person": [
{ "name": "name", "type": "string" },
{ "name": "wallet", "type": "address" }
],
"Mail": [
{ "name": "from", "type": "Person" },
{ "name": "to", "type": "Person" },
{ "name": "contents", "type": "string" }
]
}
}"#;
let typed_data = from_str::<VIP712>(json).unwrap();
assert_eq!(
hash_structured_data(typed_data).unwrap().to_hex::<String>(),
"be609aee343fb3c4b28e1df9e632fca64fcfaede20f02e86244efddf30957bd2"
)
}
This crate is distributed under the terms of GNU GENERAL PUBLIC LICENSE version 3.0.
See LICENSE for details.