2020-12-31 19:08:12 +00:00
|
|
|
use crate::{base::decode_event, stream::EventStream, ContractError};
|
2020-05-27 08:46:16 +00:00
|
|
|
|
2020-05-31 16:01:34 +00:00
|
|
|
use ethers_core::{
|
2021-03-17 18:33:36 +00:00
|
|
|
abi::{Detokenize, Event as AbiEvent, RawLog},
|
2020-06-21 22:08:40 +00:00
|
|
|
types::{BlockNumber, Filter, Log, TxHash, ValueOrArray, H256, U64},
|
2020-05-28 09:04:12 +00:00
|
|
|
};
|
2020-11-30 09:33:06 +00:00
|
|
|
use ethers_providers::{FilterWatcher, Middleware, PubsubClient, SubscriptionStream};
|
2021-03-15 11:59:52 +00:00
|
|
|
use std::borrow::Cow;
|
2020-06-21 22:08:40 +00:00
|
|
|
use std::marker::PhantomData;
|
2020-05-27 08:46:16 +00:00
|
|
|
|
2021-03-15 11:59:52 +00:00
|
|
|
/// A trait for implementing event bindings
|
|
|
|
pub trait EthEvent: Detokenize {
|
|
|
|
/// The name of the event this type represents
|
2021-03-16 19:37:19 +00:00
|
|
|
fn name() -> Cow<'static, str>;
|
2021-03-15 11:59:52 +00:00
|
|
|
|
|
|
|
/// Retrieves the signature for the event this data corresponds to.
|
|
|
|
/// This signature is the Keccak-256 hash of the ABI signature of
|
|
|
|
/// this event.
|
|
|
|
fn signature() -> H256;
|
|
|
|
|
|
|
|
/// Retrieves the ABI signature for the event this data corresponds
|
|
|
|
/// to.
|
|
|
|
fn abi_signature() -> Cow<'static, str>;
|
2021-03-17 18:33:36 +00:00
|
|
|
|
|
|
|
/// Decodes an Ethereum `RawLog` into an instance of the type.
|
|
|
|
fn decode_log(log: RawLog) -> Result<Self, ethers_core::abi::Error>
|
|
|
|
where
|
|
|
|
Self: Sized;
|
2021-03-15 11:59:52 +00:00
|
|
|
}
|
|
|
|
|
2020-06-10 18:20:47 +00:00
|
|
|
/// Helper for managing the event filter before querying or streaming its logs
|
2020-06-21 22:08:40 +00:00
|
|
|
#[derive(Debug)]
|
2020-06-17 06:38:04 +00:00
|
|
|
#[must_use = "event filters do nothing unless you `query` or `stream` them"]
|
2020-09-24 21:33:09 +00:00
|
|
|
pub struct Event<'a: 'b, 'b, M, D> {
|
2020-06-10 18:20:47 +00:00
|
|
|
/// The event filter's state
|
2020-05-27 08:46:16 +00:00
|
|
|
pub filter: Filter,
|
2020-06-10 18:20:47 +00:00
|
|
|
/// The ABI of the event which is being filtered
|
|
|
|
pub event: &'b AbiEvent,
|
2020-09-24 21:33:09 +00:00
|
|
|
pub(crate) provider: &'a M,
|
2020-05-27 08:46:16 +00:00
|
|
|
pub(crate) datatype: PhantomData<D>,
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: Improve these functions
|
2020-09-24 21:33:09 +00:00
|
|
|
impl<M, D: Detokenize> Event<'_, '_, M, D> {
|
2020-06-10 18:20:47 +00:00
|
|
|
/// Sets the filter's `from` block
|
2020-05-27 08:46:16 +00:00
|
|
|
#[allow(clippy::wrong_self_convention)]
|
|
|
|
pub fn from_block<T: Into<BlockNumber>>(mut self, block: T) -> Self {
|
2021-03-16 19:46:07 +00:00
|
|
|
self.filter = self.filter.from_block(block);
|
2020-05-27 08:46:16 +00:00
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2020-06-10 18:20:47 +00:00
|
|
|
/// Sets the filter's `to` block
|
2020-05-27 08:46:16 +00:00
|
|
|
#[allow(clippy::wrong_self_convention)]
|
|
|
|
pub fn to_block<T: Into<BlockNumber>>(mut self, block: T) -> Self {
|
2021-03-16 19:46:07 +00:00
|
|
|
self.filter = self.filter.to_block(block);
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Sets the filter's `blockHash`. Setting this will override previously
|
|
|
|
/// set `from_block` and `to_block` fields.
|
|
|
|
#[allow(clippy::wrong_self_convention)]
|
|
|
|
pub fn at_block_hash<T: Into<H256>>(mut self, hash: T) -> Self {
|
|
|
|
self.filter = self.filter.at_block_hash(hash);
|
2020-05-27 08:46:16 +00:00
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2020-06-10 18:20:47 +00:00
|
|
|
/// Sets the filter's 0th topic (typically the event name for non-anonymous events)
|
2020-05-27 08:46:16 +00:00
|
|
|
pub fn topic0<T: Into<ValueOrArray<H256>>>(mut self, topic: T) -> Self {
|
2020-05-30 14:11:51 +00:00
|
|
|
self.filter.topics[0] = Some(topic.into());
|
2020-05-27 08:46:16 +00:00
|
|
|
self
|
|
|
|
}
|
2020-05-31 21:17:50 +00:00
|
|
|
|
2020-06-10 18:20:47 +00:00
|
|
|
/// Sets the filter's 1st topic
|
2020-05-31 21:17:50 +00:00
|
|
|
pub fn topic1<T: Into<ValueOrArray<H256>>>(mut self, topic: T) -> Self {
|
|
|
|
self.filter.topics[1] = Some(topic.into());
|
|
|
|
self
|
|
|
|
}
|
2020-06-02 11:33:21 +00:00
|
|
|
|
2020-06-10 18:20:47 +00:00
|
|
|
/// Sets the filter's 2nd topic
|
2020-06-02 11:33:21 +00:00
|
|
|
pub fn topic2<T: Into<ValueOrArray<H256>>>(mut self, topic: T) -> Self {
|
|
|
|
self.filter.topics[2] = Some(topic.into());
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2020-06-10 18:20:47 +00:00
|
|
|
/// Sets the filter's 3rd topic
|
2020-06-02 11:33:21 +00:00
|
|
|
pub fn topic3<T: Into<ValueOrArray<H256>>>(mut self, topic: T) -> Self {
|
|
|
|
self.filter.topics[3] = Some(topic.into());
|
|
|
|
self
|
|
|
|
}
|
2020-05-27 08:46:16 +00:00
|
|
|
}
|
|
|
|
|
2020-09-24 21:33:09 +00:00
|
|
|
impl<'a, 'b, M, D> Event<'a, 'b, M, D>
|
2020-06-15 08:46:07 +00:00
|
|
|
where
|
2020-09-24 21:33:09 +00:00
|
|
|
M: Middleware,
|
2020-06-15 08:46:07 +00:00
|
|
|
D: 'b + Detokenize + Clone,
|
|
|
|
{
|
|
|
|
/// Returns a stream for the event
|
|
|
|
pub async fn stream(
|
2020-11-30 09:33:06 +00:00
|
|
|
&'a self,
|
|
|
|
) -> Result<
|
|
|
|
// Wraps the FilterWatcher with a mapping to the event
|
|
|
|
EventStream<'a, FilterWatcher<'a, M::Provider, Log>, D, ContractError<M>>,
|
|
|
|
ContractError<M>,
|
|
|
|
> {
|
2020-09-24 21:33:09 +00:00
|
|
|
let filter = self
|
|
|
|
.provider
|
|
|
|
.watch(&self.filter)
|
|
|
|
.await
|
|
|
|
.map_err(ContractError::MiddlewareError)?;
|
2020-11-30 09:33:06 +00:00
|
|
|
Ok(EventStream::new(
|
|
|
|
filter.id,
|
|
|
|
filter,
|
|
|
|
Box::new(move |log| self.parse_log(log)),
|
|
|
|
))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a, 'b, M, D> Event<'a, 'b, M, D>
|
|
|
|
where
|
|
|
|
M: Middleware,
|
|
|
|
<M as Middleware>::Provider: PubsubClient,
|
|
|
|
D: 'b + Detokenize + Clone,
|
|
|
|
{
|
|
|
|
/// Returns a subscription for the event
|
|
|
|
pub async fn subscribe(
|
|
|
|
&'a self,
|
|
|
|
) -> Result<
|
|
|
|
// Wraps the SubscriptionStream with a mapping to the event
|
|
|
|
EventStream<'a, SubscriptionStream<'a, M::Provider, Log>, D, ContractError<M>>,
|
|
|
|
ContractError<M>,
|
|
|
|
> {
|
|
|
|
let filter = self
|
|
|
|
.provider
|
|
|
|
.subscribe_logs(&self.filter)
|
|
|
|
.await
|
|
|
|
.map_err(ContractError::MiddlewareError)?;
|
|
|
|
Ok(EventStream::new(
|
|
|
|
filter.id,
|
|
|
|
filter,
|
|
|
|
Box::new(move |log| self.parse_log(log)),
|
|
|
|
))
|
2020-06-15 08:46:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-24 21:33:09 +00:00
|
|
|
impl<M, D> Event<'_, '_, M, D>
|
2020-05-27 08:46:16 +00:00
|
|
|
where
|
2020-09-24 21:33:09 +00:00
|
|
|
M: Middleware,
|
2020-06-01 23:15:33 +00:00
|
|
|
D: Detokenize + Clone,
|
2020-05-27 08:46:16 +00:00
|
|
|
{
|
|
|
|
/// Queries the blockchain for the selected filter and returns a vector of matching
|
|
|
|
/// event logs
|
2020-09-24 21:33:09 +00:00
|
|
|
pub async fn query(&self) -> Result<Vec<D>, ContractError<M>> {
|
|
|
|
let logs = self
|
|
|
|
.provider
|
|
|
|
.get_logs(&self.filter)
|
|
|
|
.await
|
|
|
|
.map_err(ContractError::MiddlewareError)?;
|
2020-06-02 11:33:21 +00:00
|
|
|
let events = logs
|
|
|
|
.into_iter()
|
|
|
|
.map(|log| self.parse_log(log))
|
2020-09-24 21:33:09 +00:00
|
|
|
.collect::<Result<Vec<_>, ContractError<M>>>()?;
|
2020-06-02 11:33:21 +00:00
|
|
|
Ok(events)
|
2020-05-31 21:17:50 +00:00
|
|
|
}
|
|
|
|
|
2020-06-21 22:08:40 +00:00
|
|
|
/// Queries the blockchain for the selected filter and returns a vector of logs
|
|
|
|
/// along with their metadata
|
2020-09-24 21:33:09 +00:00
|
|
|
pub async fn query_with_meta(&self) -> Result<Vec<(D, LogMeta)>, ContractError<M>> {
|
|
|
|
let logs = self
|
|
|
|
.provider
|
|
|
|
.get_logs(&self.filter)
|
|
|
|
.await
|
|
|
|
.map_err(ContractError::MiddlewareError)?;
|
2020-05-27 08:46:16 +00:00
|
|
|
let events = logs
|
|
|
|
.into_iter()
|
|
|
|
.map(|log| {
|
2020-06-21 22:08:40 +00:00
|
|
|
let meta = LogMeta::from(&log);
|
2020-06-02 11:33:21 +00:00
|
|
|
let event = self.parse_log(log)?;
|
2020-06-21 22:08:40 +00:00
|
|
|
Ok((event, meta))
|
2020-05-27 08:46:16 +00:00
|
|
|
})
|
2020-09-24 21:33:09 +00:00
|
|
|
.collect::<Result<_, ContractError<M>>>()?;
|
2020-05-27 08:46:16 +00:00
|
|
|
Ok(events)
|
|
|
|
}
|
|
|
|
|
2020-09-24 21:33:09 +00:00
|
|
|
fn parse_log(&self, log: Log) -> Result<D, ContractError<M>> {
|
2020-10-29 07:48:24 +00:00
|
|
|
Ok(decode_event(self.event, log.topics, log.data)?)
|
2020-06-02 11:33:21 +00:00
|
|
|
}
|
2020-05-27 08:46:16 +00:00
|
|
|
}
|
2020-06-21 22:08:40 +00:00
|
|
|
|
|
|
|
/// Metadata inside a log
|
|
|
|
#[derive(Clone, Debug, PartialEq)]
|
|
|
|
pub struct LogMeta {
|
|
|
|
/// The block in which the log was emitted
|
|
|
|
pub block_number: U64,
|
|
|
|
|
|
|
|
/// The transaction hash in which the log was emitted
|
|
|
|
pub transaction_hash: TxHash,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<&Log> for LogMeta {
|
|
|
|
fn from(src: &Log) -> Self {
|
|
|
|
LogMeta {
|
|
|
|
block_number: src.block_number.expect("should have a block number"),
|
|
|
|
transaction_hash: src.transaction_hash.expect("should have a tx hash"),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|