-
Notifications
You must be signed in to change notification settings - Fork 469
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
Use ethereum-types library for uints and hashes #76
Merged
Changes from 4 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
c18ab82
Use bigint library for types.
tomusdrw 42bf95d
Merge branch 'master' into td-bigint
tomusdrw 9851dc7
In progress.
tomusdrw 9c41c19
Use ethereum-types
tomusdrw 49fd783
Update dependencies.
tomusdrw 415f83c
Merge branch 'master' into td-bigint
tomusdrw 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
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
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
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
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
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
use arrayvec::ArrayVec; | ||
use ethabi::Token; | ||
use contract::error::{Error, ErrorKind}; | ||
use types::{self, Address, H256, U256, U64}; | ||
use types::{Address, H256, U256, U128}; | ||
|
||
/// Output type possible to deserialize from Contract ABI | ||
pub trait Detokenize { | ||
|
@@ -132,7 +132,7 @@ impl Tokenizable for H256 { | |
for (idx, val) in s.drain(..).enumerate() { | ||
data[idx] = val; | ||
} | ||
Ok(H256(data)) | ||
Ok(data.into()) | ||
}, | ||
other => Err(ErrorKind::InvalidOutputType(format!("Expected `H256`, got {:?}", other)).into()), | ||
} | ||
|
@@ -147,13 +147,13 @@ impl Tokenizable for H256 { | |
impl Tokenizable for Address { | ||
fn from_token(token: Token) -> Result<Self, Error> { | ||
match token { | ||
Token::Address(data) => Ok(types::H160(data)), | ||
Token::Address(data) => Ok(data.into()), | ||
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. in |
||
other => Err(ErrorKind::InvalidOutputType(format!("Expected `Address`, got {:?}", other)).into()), | ||
} | ||
} | ||
|
||
fn into_token(self) -> Token { | ||
Token::Address(self.0) | ||
Token::Address(self.into()) | ||
} | ||
} | ||
|
||
|
@@ -168,15 +168,17 @@ macro_rules! uint_tokenizable { | |
} | ||
|
||
fn into_token(self) -> Token { | ||
let u = U256::from(self.0.as_ref()); | ||
Token::Uint(u.0) | ||
let mut arr = [0; 32]; | ||
self.to_big_endian(&mut arr); | ||
let u = U256::from(&arr); | ||
Token::Uint(u.into()) | ||
} | ||
} | ||
} | ||
} | ||
|
||
uint_tokenizable!(U256, "U256"); | ||
uint_tokenizable!(U64, "U64"); | ||
uint_tokenizable!(U128, "U128"); | ||
|
||
impl Tokenizable for u64 { | ||
fn from_token(token: Token) -> Result<Self, Error> { | ||
|
@@ -188,7 +190,7 @@ impl Tokenizable for u64 { | |
|
||
fn into_token(self) -> Token { | ||
let u = U256::from(self); | ||
Token::Uint(u.0) | ||
Token::Uint(u.into()) | ||
} | ||
} | ||
|
||
|
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
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
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
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
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
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.
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 bump
ethabi
to5.1