Steve Ellis

Results 15 comments of Steve Ellis

Just ran into this. The [code](https://github.com/smartcontractkit/chainlink/blob/15f23c7db3c415c7d401d2a30c4e2760cc85216c/contracts/src/v0.6/FluxAggregator.sol#L263) has been unchanged for years. The [tests](https://github.com/smartcontractkit/chainlink/blob/15f23c7db3c415c7d401d2a30c4e2760cc85216c/contracts/test/v0.6/FluxAggregator.test.ts#L1864) have gone through some tooling changes over the years, but are mostly unchanged. Started failing when we...

Is there anything preventing this from being merged? We were running into this error when decoding `bytes`, and can confirm that it indeed fixes the error.

fixes: ``` 2) Contract: Args #add has the type: Error: Number can only safely store up to 53 bits at assert (node_modules/bn.js/lib/bn.js:6:21) at BN.toNumber (node_modules/bn.js/lib/bn.js:506:7) at decodeSingle (node_modules/ethereumjs-abi/lib/index.js:234:52) at Function.ABI.rawDecode...

Looks like a problem with the underlying [ruby-eth](https://github.com/se3000/ruby-eth) gem, so I think the change would be more appropriate there as there isn't any good ruby alternative to that gem and...

@mobeale the current implementation is [locked to 2.3.1](https://github.com/smartcontractkit/chainlink/blob/master/.ruby-version), but it should be ok to run against 2.3.* and back to 2.0.0. As noted in the SO question, there are a...

Unfortunately the `sha3` gem is not a simple drop in to replace for `digest-sha3`. Specifically, `sha3` is FIPS-202 compliant, but Ethereum uses a non FIPS-202 compliant version, which `digest-sha3` also...

@sgarciafer are you trying to build this for development? If you just want to run a node, it should still work using Docker.

Hi Ethan, check out the [whitepaper](https://link.smartcontract.com/whitepaper) for the roadmap, we lay out the stages of development there. We're currently working on a Go implementation of what's described there. The new...

Also, if there is a use case you'd like to see, you can start building adapters against the [current API](https://chainlink-docs.smartcontract.com/#external-adapters) today.

@Jrho19 using the [eth](https://github.com/se3000/ruby-eth) and [ethereum.rb](https://github.com/EthWorks/ethereum.rb) it is easy to connect a rails app to any Ethereum node(geth, parity...).