ethjs-contract icon indicating copy to clipboard operation
ethjs-contract copied to clipboard

A simple contract object for the Ethereum RPC layer.

Results 12 ethjs-contract issues
Sort by recently updated
recently updated
newest added

I recognize if an abi file for a contract contains two functions with the same name (function overloading) the first function can't be called. `eth-js` throws an error because it...

I think web3.js is providing this feature, instead of ```js mycontract.call(arg1, arg2, arg3, txObject); ``` allow to pass values using an object: ```js mycontract.call({ arg1: 'value1', arg2: 'value2', arg3: 'value3'...

# ethjs-contract ## Issue Type - [ ] Bug (https://github.com/ethjs/ethjs-contract/blob/master/.github/CONTRIBUTING.md#bug-reports) - [x] Feature (https://github.com/ethjs/ethjs-contract/blob/master/.github/CONTRIBUTING.md#feature-requests) ## Description The current implementation decides whether to make a gas-free call or execute a transaction...

## Issue Type - [X] Bug (https://github.com/ethjs/ethjs-contract/blob/master/.github/CONTRIBUTING.md#bug-reports) ## Description The method called [here](https://github.com/ethjs/ethjs-contract/blob/master/src/index.js#L87) returns a promise, but that promise is then dropped on the floor. When a failure occurs in...

## Issue Type - [x] Feature ## Description Are you considering make a web interface(create contract, invoke contract..) and connecting for this?

# ethjs-contract ## Issue Type - [ ] Feature ## Description With web3 I make use of the getData functionality to get the data to be sent as part of...

## Issue Type - [x] Feature ## Description Outputs are currently in the object format: ``` await someMethod() : { 0: ..., 1: ..., } ``` For single output returns...

# ethjs-contract - [ ] Feature ## Description For my use case I like to call eth_getLogs to gather past events that match the filter parameter in one go (basically...

## Issue Type - [x] Feature ## Description We want to be able to grab logs like web3. Just a getLogs kind of method, but with topic filtering: Currently one...

enhancement
help wanted

## Issue Type - [ ] Bug (https://github.com/ethjs/ethjs-contract/blob/master/.github/CONTRIBUTING.md#bug-reports) - [x] Feature (https://github.com/ethjs/ethjs-contract/blob/master/.github/CONTRIBUTING.md#feature-requests) ## Description In pursuit of #2, I've begun writing a module that imports this one and wraps it...