ethereum-contract-abi 0.1.3 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +13 -0
- data/ethereum_contract_abi.gemspec +1 -1
- data/lib/ethereum-contract-abi/contract/abi_types/string.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0b91b6e96e88106aba0ea4ffe8bbd2f0593d9a0da328db9c02c901e187c2883f
|
|
4
|
+
data.tar.gz: 61fbdf1b1d6b1aafd0cace78c1aca040cb362baf1ba675774cd6a3b505cae64c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5e4446485cef20a816beca498128716eef35b7d95cd618714a7176cccf1977b00f5c5b8a2145ae24fbc303009832e92aa000dfecba8a95b2725431c453210648
|
|
7
|
+
data.tar.gz: f04a1f9824e0f01da8a29440afc48dd9aaac622ead17ba55a0c947ca8027e0672d4496dfecab02adc40625aeec3a0659b10c183d0c302ff633da218690004f95
|
data/CHANGELOG.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# Change Log
|
|
2
|
+
|
|
3
|
+
### v0.1.4
|
|
4
|
+
- Fixed ArgumentError thrown when validating a valid string in String ABI type
|
|
5
|
+
|
|
6
|
+
### v0.1.3
|
|
7
|
+
- Correctly set gem dependency for keccak256
|
|
8
|
+
|
|
9
|
+
### v0.1.1
|
|
10
|
+
- Switched https://github.com/evtaylor/sha3-pure-ruby.git github repo dependency to keccak256 gem
|
|
11
|
+
|
|
12
|
+
### v0.1.0
|
|
13
|
+
- Initial release as a gem
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'ethereum-contract-abi'
|
|
3
|
-
s.version = '0.1.
|
|
3
|
+
s.version = '0.1.4'
|
|
4
4
|
s.summary = "Ethereum contract ABI encoder and decoder"
|
|
5
5
|
s.description = "A library for interacting with Ethereum smart contracts via the Contract Application Binary Interface (ABI)"
|
|
6
6
|
s.authors = ["Evan Taylor"]
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ethereum-contract-abi
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Evan Taylor
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-06-
|
|
11
|
+
date: 2021-06-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: keccak256
|
|
@@ -34,6 +34,7 @@ files:
|
|
|
34
34
|
- ".gitignore"
|
|
35
35
|
- ".rspec"
|
|
36
36
|
- '3.0'
|
|
37
|
+
- CHANGELOG.md
|
|
37
38
|
- Gemfile
|
|
38
39
|
- Gemfile.lock
|
|
39
40
|
- LICENSE
|