mirror of
https://github.com/arnaucube/hermez-node.git
synced 2026-02-07 03:16:45 +01:00
Add initial structure Coordinator Forge Sequence
This commit is contained in:
15
eth/client.go
Normal file
15
eth/client.go
Normal file
@@ -0,0 +1,15 @@
|
||||
package eth
|
||||
|
||||
import "github.com/hermeznetwork/hermez-node/common"
|
||||
|
||||
type EthClient struct {
|
||||
}
|
||||
|
||||
func NewEthClient() *EthClient {
|
||||
// TODO
|
||||
return &EthClient{}
|
||||
}
|
||||
func (ec *EthClient) ForgeCall(callData *common.CallDataForge) ([]byte, error) {
|
||||
// TODO this depends on the smart contracts, once are ready this will be updated
|
||||
return nil, nil
|
||||
}
|
||||
Reference in New Issue
Block a user