Skip to content

Commit

Permalink
Merge pull request #228 from ethereum/strings
Browse files Browse the repository at this point in the history
abi string type, fixes #216, #218, #219
  • Loading branch information
frozeman committed Jun 25, 2015
2 parents bcd9cfb + 93c8006 commit 4a46c73
Show file tree
Hide file tree
Showing 11 changed files with 279 additions and 87 deletions.
82 changes: 64 additions & 18 deletions dist/web3-light.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 4 additions & 6 deletions dist/web3-light.min.js

Large diffs are not rendered by default.

82 changes: 64 additions & 18 deletions dist/web3.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions dist/web3.js.map

Large diffs are not rendered by default.

12 changes: 5 additions & 7 deletions dist/web3.min.js

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions lib/solidity/coder.js
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,13 @@ var coder = new SolidityCoder([
inputFormatter: f.formatInputBytes,
outputFormatter: f.formatOutputBytes
}),
new SolidityType({
name: 'string',
match: 'strict',
mode: 'bytes',
inputFormatter: f.formatInputString,
outputFormatter: f.formatOutputString
}),
new SolidityType({
name: 'real',
match: 'prefix',
Expand Down
Loading

0 comments on commit 4a46c73

Please sign in to comment.