cic-dw/pkg/cicnet/cicnet.go
Mohammed Sohail e6651fc911
add: cicnet package
- query cicnet contracts
2022-04-29 11:09:25 +03:00

28 lines
456 B
Go

package cicnet
import (
"github.com/ethereum/go-ethereum/common"
"github.com/lmittmann/w3"
)
type CicNet struct {
ethClient *w3.Client
tokenIndex common.Address
}
func NewCicNet(rpcEndpoint string, tokenIndex common.Address) (*CicNet, error) {
ethClient, err := w3.Dial(rpcEndpoint)
if err != nil {
return &CicNet{}, err
}
return &CicNet{
ethClient: ethClient,
tokenIndex: tokenIndex,
}, nil
}
func (c *CicNet) Close() {
c.Close()
}