6
6
"github.com/ava-labs/avalanchego/api/admin"
7
7
"github.com/ava-labs/avalanchego/api/health"
8
8
"github.com/ava-labs/avalanchego/api/info"
9
- "github.com/ava-labs/avalanchego/api/ipcs"
10
9
"github.com/ava-labs/avalanchego/api/keystore"
11
10
"github.com/ava-labs/avalanchego/indexer"
12
11
"github.com/ava-labs/avalanchego/vms/avm"
@@ -29,7 +28,6 @@ type APIClient struct {
29
28
cChainEth EthClient
30
29
info info.Client
31
30
health health.Client
32
- ipcs ipcs.Client
33
31
keystore keystore.Client
34
32
admin admin.Client
35
33
pindex indexer.Client
@@ -50,7 +48,6 @@ func NewAPIClient(ipAddr string, port uint16) Client {
50
48
cChainEth : NewEthClient (ipAddr , uint (port )), // wrapper over ethclient.Client
51
49
info : info .NewClient (uri ),
52
50
health : health .NewClient (uri ),
53
- ipcs : ipcs .NewClient (uri ),
54
51
keystore : keystore .NewClient (uri ),
55
52
admin : admin .NewClient (uri ),
56
53
pindex : indexer .NewClient (uri + "/ext/index/P/block" ),
@@ -86,10 +83,6 @@ func (c APIClient) HealthAPI() health.Client {
86
83
return c .health
87
84
}
88
85
89
- func (c APIClient ) IpcsAPI () ipcs.Client {
90
- return c .ipcs
91
- }
92
-
93
86
func (c APIClient ) KeystoreAPI () keystore.Client {
94
87
return c .keystore
95
88
}
0 commit comments