This repository was archived by the owner on Nov 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Merged
EIP-712 implementation #9631
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
216c6b3
EIP-712 impl
seunlanlege 9a0ce45
added more tests
seunlanlege 17dad47
removed size parsing unwrap
seunlanlege 9fe6fee
corrected TYPE_REGEX to disallow zero sized fixed length arrays, repl…
seunlanlege 838e4e2
use Option<u64> instead of u64 for Type::Array::Length
seunlanlege 7a74b6f
replace `.iter()` with `.values()`
tomusdrw b4b9eca
tabify eip712.rs
bc43cd4
use proper comments for docs
d30ec32
Cargo.lock: revert unrelated changes
701e970
tabify encode.rs
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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,23 @@ | ||
[package] | ||
name = "eip712" | ||
version = "0.1.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
|
||
[dependencies] | ||
serde_derive = "1.0" | ||
serde = "1.0" | ||
serde_json = "1.0" | ||
ethabi = "6.0" | ||
keccak-hash = "0.1" | ||
ethereum-types = "0.4" | ||
failure = "0.1" | ||
itertools = "0.7" | ||
failure_derive = "0.1" | ||
lazy_static = "1.1" | ||
toolshed = "0.4" | ||
regex = "1.0" | ||
validator = "0.8" | ||
validator_derive = "0.8" | ||
lunarity-lexer = "0.1" | ||
rustc-hex = "2.0" | ||
indexmap = "1.0.2" |
This file contains hidden or 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,177 @@ | ||
// Copyright 2015-2018 Parity Technologies (UK) Ltd. | ||
// This file is part of Parity. | ||
|
||
// Parity is free software: you can redistribute it and/or modify | ||
// it under the terms of the GNU General Public License as published by | ||
// the Free Software Foundation, either version 3 of the License, or | ||
// (at your option) any later version. | ||
|
||
// Parity is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
// GNU General Public License for more details. | ||
|
||
// You should have received a copy of the GNU General Public License | ||
// along with Parity. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
//! EIP712 structs | ||
use serde_json::{Value}; | ||
use std::collections::HashMap; | ||
use ethereum_types::{U256, H256, Address}; | ||
use regex::Regex; | ||
use validator::Validate; | ||
use validator::ValidationErrors; | ||
|
||
pub(crate) type MessageTypes = HashMap<String, Vec<FieldType>>; | ||
|
||
lazy_static! { | ||
// match solidity identifier with the addition of '[(\d)*]*' | ||
static ref TYPE_REGEX: Regex = Regex::new(r"^[a-zA-Z_$][a-zA-Z_$0-9]*(\[([1-9]\d*)*\])*$").unwrap(); | ||
static ref IDENT_REGEX: Regex = Regex::new(r"^[a-zA-Z_$][a-zA-Z_$0-9]*$").unwrap(); | ||
} | ||
|
||
#[serde(rename_all = "camelCase")] | ||
#[serde(deny_unknown_fields)] | ||
#[derive(Deserialize, Serialize, Validate, Debug, Clone)] | ||
pub(crate) struct EIP712Domain { | ||
pub(crate) name: String, | ||
pub(crate) version: String, | ||
pub(crate) chain_id: U256, | ||
pub(crate) verifying_contract: Address, | ||
#[serde(skip_serializing_if="Option::is_none")] | ||
pub(crate) salt: Option<H256>, | ||
} | ||
/// EIP-712 struct | ||
#[serde(rename_all = "camelCase")] | ||
#[serde(deny_unknown_fields)] | ||
#[derive(Deserialize, Debug, Clone)] | ||
pub struct EIP712 { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Document public types |
||
pub(crate) types: MessageTypes, | ||
pub(crate) primary_type: String, | ||
pub(crate) message: Value, | ||
pub(crate) domain: EIP712Domain, | ||
} | ||
|
||
impl Validate for EIP712 { | ||
fn validate(&self) -> Result<(), ValidationErrors> { | ||
for field_types in self.types.values() { | ||
for field_type in field_types { | ||
field_type.validate()?; | ||
} | ||
} | ||
Ok(()) | ||
} | ||
} | ||
|
||
#[derive(Serialize, Deserialize, Validate, Debug, Clone)] | ||
pub(crate) struct FieldType { | ||
#[validate(regex = "IDENT_REGEX")] | ||
pub name: String, | ||
ordian marked this conversation as resolved.
Show resolved
Hide resolved
|
||
#[serde(rename = "type")] | ||
#[validate(regex = "TYPE_REGEX")] | ||
pub type_: String, | ||
} | ||
|
||
#[cfg(test)] | ||
mod tests { | ||
use super::*; | ||
use serde_json::from_str; | ||
|
||
#[test] | ||
fn test_regex() { | ||
let test_cases = vec!["unint bytes32", "Seun\\[]", "byte[]uint", "byte[7[]uint][]", "Person[0]"]; | ||
for case in test_cases { | ||
assert_eq!(TYPE_REGEX.is_match(case), false) | ||
} | ||
|
||
let test_cases = vec!["bytes32", "Foo[]", "bytes1", "bytes32[][]", "byte[9]", "contents"]; | ||
for case in test_cases { | ||
assert_eq!(TYPE_REGEX.is_match(case), true) | ||
} | ||
} | ||
|
||
#[test] | ||
fn test_deserialization() { | ||
let string = r#"{ | ||
"primaryType": "Mail", | ||
"domain": { | ||
"name": "Ether Mail", | ||
"version": "1", | ||
"chainId": "0x1", | ||
"verifyingContract": "0xCcCCccccCCCCcCCCCCCcCcCccCcCCCcCcccccccC" | ||
}, | ||
"message": { | ||
"from": { | ||
"name": "Cow", | ||
"wallet": "0xCD2a3d9F938E13CD947Ec05AbC7FE734Df8DD826" | ||
}, | ||
"to": { | ||
"name": "Bob", | ||
"wallet": "0xbBbBBBBbbBBBbbbBbbBbbbbBBbBbbbbBbBbbBBbB" | ||
}, | ||
"contents": "Hello, Bob!" | ||
}, | ||
"types": { | ||
"EIP712Domain": [ | ||
{ "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 _ = from_str::<EIP712>(string).unwrap(); | ||
} | ||
|
||
#[test] | ||
fn test_failing_deserialization() { | ||
let string = r#"{ | ||
"primaryType": "Mail", | ||
"domain": { | ||
"name": "Ether Mail", | ||
"version": "1", | ||
"chainId": "0x1", | ||
"verifyingContract": "0xCcCCccccCCCCcCCCCCCcCcCccCcCCCcCcccccccC" | ||
}, | ||
"message": { | ||
"from": { | ||
"name": "Cow", | ||
"wallet": "0xCD2a3d9F938E13CD947Ec05AbC7FE734Df8DD826" | ||
}, | ||
"to": { | ||
"name": "Bob", | ||
"wallet": "0xbBbBBBBbbBBBbbbBbbBbbbbBBbBbbbbBbBbbBBbB" | ||
}, | ||
"contents": "Hello, Bob!" | ||
}, | ||
"types": { | ||
"EIP712Domain": [ | ||
{ "name": "name", "type": "string" }, | ||
{ "name": "version", "type": "string" }, | ||
{ "name": "chainId", "type": "7uint256[x] Seun" }, | ||
{ "name": "verifyingContract", "type": "address" } | ||
], | ||
"Person": [ | ||
{ "name": "name", "type": "string" }, | ||
{ "name": "wallet amen", "type": "address" } | ||
], | ||
"Mail": [ | ||
{ "name": "from", "type": "Person" }, | ||
{ "name": "to", "type": "Person" }, | ||
{ "name": "contents", "type": "string" } | ||
] | ||
} | ||
}"#; | ||
let data = from_str::<EIP712>(string).unwrap(); | ||
assert_eq!(data.validate().is_err(), true); | ||
} | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.