You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
341 B

  1. package eth
  2. import "github.com/hermeznetwork/hermez-node/common"
  3. type EthClient struct {
  4. }
  5. func NewEthClient() *EthClient {
  6. // TODO
  7. return &EthClient{}
  8. }
  9. func (ec *EthClient) ForgeCall(callData *common.CallDataForge) ([]byte, error) {
  10. // TODO this depends on the smart contracts, once are ready this will be updated
  11. return nil, nil
  12. }