2018-11-07 21:50:43 +00:00
|
|
|
// VulcanizeDB
|
2019-03-12 15:46:42 +00:00
|
|
|
// Copyright © 2019 Vulcanize
|
2018-11-07 21:50:43 +00:00
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2020-08-31 15:47:06 +00:00
|
|
|
// Client is used by watchers to stream chain IPLD data from a vulcanizedb ipld-eth-server
|
2020-06-30 00:16:52 +00:00
|
|
|
package client
|
2018-07-20 16:37:46 +00:00
|
|
|
|
2018-12-12 16:01:50 +00:00
|
|
|
import (
|
|
|
|
"context"
|
2019-04-15 16:27:21 +00:00
|
|
|
|
2019-07-02 12:31:26 +00:00
|
|
|
"github.com/ethereum/go-ethereum/rpc"
|
2019-01-23 06:37:26 +00:00
|
|
|
|
2022-09-20 15:52:06 +00:00
|
|
|
"github.com/cerc-io/ipld-eth-server/v4/pkg/eth"
|
|
|
|
"github.com/cerc-io/ipld-eth-server/v4/pkg/serve"
|
2018-12-12 16:01:50 +00:00
|
|
|
)
|
2018-07-20 16:37:46 +00:00
|
|
|
|
2020-08-31 15:47:06 +00:00
|
|
|
// Client is used to subscribe to the ipld-eth-server ipld data stream
|
2020-06-30 00:16:52 +00:00
|
|
|
type Client struct {
|
|
|
|
c *rpc.Client
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewClient creates a new Client
|
|
|
|
func NewClient(c *rpc.Client) *Client {
|
|
|
|
return &Client{
|
|
|
|
c: c,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-31 15:47:06 +00:00
|
|
|
// Stream is the main loop for subscribing to iplds from an ipld-eth-server server
|
2020-09-02 19:13:51 +00:00
|
|
|
func (c *Client) Stream(payloadChan chan serve.SubscriptionPayload, params eth.SubscriptionSettings) (*rpc.ClientSubscription, error) {
|
|
|
|
return c.c.Subscribe(context.Background(), "vdb", payloadChan, "stream", params)
|
2018-07-20 16:37:46 +00:00
|
|
|
}
|