Struct GovernorSettings

Source
pub struct GovernorSettings<M>(/* private fields */);

Implementations§

Source§

impl<M: Middleware> GovernorSettings<M>

Source

pub fn new<T: Into<Address>>(address: T, client: Arc<M>) -> Self

Creates a new contract instance with the specified ethers client at address. The contract derefs to a ethers::Contract object.

Source

pub fn ballot_typehash(&self) -> ContractCall<M, [u8; 32]>

Calls the contract’s BALLOT_TYPEHASH (0xdeaaa7cc) function

Source

pub fn clock_mode(&self) -> ContractCall<M, String>

Calls the contract’s CLOCK_MODE (0x4bf5d7e9) function

Source

pub fn counting_mode(&self) -> ContractCall<M, String>

Calls the contract’s COUNTING_MODE (0xdd4e2ba5) function

Source

pub fn extended_ballot_typehash(&self) -> ContractCall<M, [u8; 32]>

Calls the contract’s EXTENDED_BALLOT_TYPEHASH (0x2fe3e261) function

Source

pub fn cancel( &self, targets: Vec<Address>, values: Vec<U256>, calldatas: Vec<Bytes>, description_hash: [u8; 32], ) -> ContractCall<M, U256>

Calls the contract’s cancel (0x452115d6) function

Source

pub fn cast_vote(&self, proposal_id: U256, support: u8) -> ContractCall<M, U256>

Calls the contract’s castVote (0x56781388) function

Source

pub fn cast_vote_by_sig( &self, proposal_id: U256, support: u8, v: u8, r: [u8; 32], s: [u8; 32], ) -> ContractCall<M, U256>

Calls the contract’s castVoteBySig (0x3bccf4fd) function

Source

pub fn cast_vote_with_reason( &self, proposal_id: U256, support: u8, reason: String, ) -> ContractCall<M, U256>

Calls the contract’s castVoteWithReason (0x7b3c71d3) function

Source

pub fn cast_vote_with_reason_and_params( &self, proposal_id: U256, support: u8, reason: String, params: Bytes, ) -> ContractCall<M, U256>

Calls the contract’s castVoteWithReasonAndParams (0x5f398a14) function

Source

pub fn cast_vote_with_reason_and_params_by_sig( &self, proposal_id: U256, support: u8, reason: String, params: Bytes, v: u8, r: [u8; 32], s: [u8; 32], ) -> ContractCall<M, U256>

Calls the contract’s castVoteWithReasonAndParamsBySig (0x03420181) function

Source

pub fn clock(&self) -> ContractCall<M, u64>

Calls the contract’s clock (0x91ddadf4) function

Source

pub fn eip_712_domain( &self, ) -> ContractCall<M, ([u8; 1], String, String, U256, Address, [u8; 32], Vec<U256>)>

Calls the contract’s eip712Domain (0x84b0196e) function

Source

pub fn execute( &self, targets: Vec<Address>, values: Vec<U256>, calldatas: Vec<Bytes>, description_hash: [u8; 32], ) -> ContractCall<M, U256>

Calls the contract’s execute (0x2656227d) function

Source

pub fn get_votes( &self, account: Address, timepoint: U256, ) -> ContractCall<M, U256>

Calls the contract’s getVotes (0xeb9019d4) function

Source

pub fn get_votes_with_params( &self, account: Address, timepoint: U256, params: Bytes, ) -> ContractCall<M, U256>

Calls the contract’s getVotesWithParams (0x9a802a6d) function

Source

pub fn has_voted( &self, proposal_id: U256, account: Address, ) -> ContractCall<M, bool>

Calls the contract’s hasVoted (0x43859632) function

Source

pub fn hash_proposal( &self, targets: Vec<Address>, values: Vec<U256>, calldatas: Vec<Bytes>, description_hash: [u8; 32], ) -> ContractCall<M, U256>

Calls the contract’s hashProposal (0xc59057e4) function

Source

pub fn name(&self) -> ContractCall<M, String>

Calls the contract’s name (0x06fdde03) function

Source

pub fn on_erc1155_batch_received( &self, p0: Address, p1: Address, p2: Vec<U256>, p3: Vec<U256>, p4: Bytes, ) -> ContractCall<M, [u8; 4]>

Calls the contract’s onERC1155BatchReceived (0xbc197c81) function

Source

pub fn on_erc1155_received( &self, p0: Address, p1: Address, p2: U256, p3: U256, p4: Bytes, ) -> ContractCall<M, [u8; 4]>

Calls the contract’s onERC1155Received (0xf23a6e61) function

Source

pub fn on_erc721_received( &self, p0: Address, p1: Address, p2: U256, p3: Bytes, ) -> ContractCall<M, [u8; 4]>

Calls the contract’s onERC721Received (0x150b7a02) function

Source

pub fn proposal_deadline(&self, proposal_id: U256) -> ContractCall<M, U256>

Calls the contract’s proposalDeadline (0xc01f9e37) function

Source

pub fn proposal_proposer(&self, proposal_id: U256) -> ContractCall<M, Address>

Calls the contract’s proposalProposer (0x143489d0) function

Source

pub fn proposal_snapshot(&self, proposal_id: U256) -> ContractCall<M, U256>

Calls the contract’s proposalSnapshot (0x2d63f693) function

Source

pub fn proposal_threshold(&self) -> ContractCall<M, U256>

Calls the contract’s proposalThreshold (0xb58131b0) function

Source

pub fn propose( &self, targets: Vec<Address>, values: Vec<U256>, calldatas: Vec<Bytes>, description: String, ) -> ContractCall<M, U256>

Calls the contract’s propose (0x7d5e81e2) function

Source

pub fn quorum(&self, timepoint: U256) -> ContractCall<M, U256>

Calls the contract’s quorum (0xf8ce560a) function

Source

pub fn relay( &self, target: Address, value: U256, data: Bytes, ) -> ContractCall<M, ()>

Calls the contract’s relay (0xc28bc2fa) function

Source

pub fn set_proposal_threshold( &self, new_proposal_threshold: U256, ) -> ContractCall<M, ()>

Calls the contract’s setProposalThreshold (0xece40cc1) function

Source

pub fn set_voting_delay(&self, new_voting_delay: U256) -> ContractCall<M, ()>

Calls the contract’s setVotingDelay (0x70b0f660) function

Source

pub fn set_voting_period(&self, new_voting_period: U256) -> ContractCall<M, ()>

Calls the contract’s setVotingPeriod (0xea0217cf) function

Source

pub fn state(&self, proposal_id: U256) -> ContractCall<M, u8>

Calls the contract’s state (0x3e4f49e6) function

Source

pub fn supports_interface(&self, interface_id: [u8; 4]) -> ContractCall<M, bool>

Calls the contract’s supportsInterface (0x01ffc9a7) function

Source

pub fn version(&self) -> ContractCall<M, String>

Calls the contract’s version (0x54fd4d50) function

Source

pub fn voting_delay(&self) -> ContractCall<M, U256>

Calls the contract’s votingDelay (0x3932abb1) function

Source

pub fn voting_period(&self) -> ContractCall<M, U256>

Calls the contract’s votingPeriod (0x02a251a3) function

Source

pub fn eip712_domain_changed_filter( &self, ) -> Event<Arc<M>, M, Eip712DomainChangedFilter>

Gets the contract’s EIP712DomainChanged event

Source

pub fn proposal_canceled_filter( &self, ) -> Event<Arc<M>, M, ProposalCanceledFilter>

Gets the contract’s ProposalCanceled event

Source

pub fn proposal_created_filter(&self) -> Event<Arc<M>, M, ProposalCreatedFilter>

Gets the contract’s ProposalCreated event

Source

pub fn proposal_executed_filter( &self, ) -> Event<Arc<M>, M, ProposalExecutedFilter>

Gets the contract’s ProposalExecuted event

Source

pub fn proposal_threshold_set_filter( &self, ) -> Event<Arc<M>, M, ProposalThresholdSetFilter>

Gets the contract’s ProposalThresholdSet event

Source

pub fn vote_cast_filter(&self) -> Event<Arc<M>, M, VoteCastFilter>

Gets the contract’s VoteCast event

Source

pub fn vote_cast_with_params_filter( &self, ) -> Event<Arc<M>, M, VoteCastWithParamsFilter>

Gets the contract’s VoteCastWithParams event

Source

pub fn voting_delay_set_filter(&self) -> Event<Arc<M>, M, VotingDelaySetFilter>

Gets the contract’s VotingDelaySet event

Source

pub fn voting_period_set_filter( &self, ) -> Event<Arc<M>, M, VotingPeriodSetFilter>

Gets the contract’s VotingPeriodSet event

Source

pub fn events(&self) -> Event<Arc<M>, M, GovernorSettingsEvents>

Returns an Event builder for all the events of this contract.

Methods from Deref<Target = Contract<M>>§

Source

pub fn address(&self) -> H160

Returns the contract’s address

Source

pub fn abi(&self) -> &Contract

Returns a reference to the contract’s ABI.

Source

pub fn client(&self) -> B
where B: Clone,

Returns a pointer to the contract’s client.

Source

pub fn client_ref(&self) -> &M

Returns a reference to the contract’s client.

Source

pub fn connect<N>(&self, client: Arc<N>) -> ContractInstance<Arc<N>, N>
where N: Middleware,

Returns a new contract instance using the provided client

Clones self internally

Source

pub fn connect_with<C, N>(&self, client: C) -> ContractInstance<C, N>
where C: Borrow<N>,

Returns a new contract instance using the provided client

Clones self internally

Source

pub fn event_with_filter<D>(&self, filter: Filter) -> Event<B, M, D>

Returns an Event builder with the provided filter.

Source

pub fn event<D>(&self) -> Event<B, M, D>
where D: EthEvent,

Returns an Event builder for the provided event.

Source

pub fn event_for_name<D>(&self, name: &str) -> Result<Event<B, M, D>, Error>

Returns an Event builder with the provided name.

Source

pub fn method_hash<T, D>( &self, signature: [u8; 4], args: T, ) -> Result<FunctionCall<B, M, D>, AbiError>
where T: Tokenize, D: Detokenize,

Returns a transaction builder for the selected function signature. This should be preferred if there are overloaded functions in your smart contract

Source

pub fn method<T, D>( &self, name: &str, args: T, ) -> Result<FunctionCall<B, M, D>, AbiError>
where T: Tokenize, D: Detokenize,

Returns a transaction builder for the provided function name. If there are multiple functions with the same name due to overloading, consider using the method_hash method instead, since this will use the first match.

Source

pub fn at<T>(&self, address: T) -> ContractInstance<B, M>
where T: Into<H160>,

Returns a new contract instance at address.

Clones self internally

Methods from Deref<Target = BaseContract>§

Source

pub fn encode<T>(&self, name: &str, args: T) -> Result<Bytes, AbiError>
where T: Tokenize,

Returns the ABI encoded data for the provided function and arguments

If the function exists multiple times and you want to use one of the overloaded versions, consider using encode_with_selector

Source

pub fn encode_with_selector<T>( &self, signature: [u8; 4], args: T, ) -> Result<Bytes, AbiError>
where T: Tokenize,

Returns the ABI encoded data for the provided function selector and arguments

Source

pub fn decode<D, T>(&self, name: &str, bytes: T) -> Result<D, AbiError>
where D: Detokenize, T: AsRef<[u8]>,

Decodes the provided ABI encoded function arguments with the selected function name.

If the function exists multiple times and you want to use one of the overloaded versions, consider using decode_with_selector

Source

pub fn decode_raw<T>( &self, name: &str, bytes: T, ) -> Result<Vec<Token>, AbiError>
where T: AsRef<[u8]>,

Decodes the provided ABI encoded function arguments with the selected function name.

If the function exists multiple times and you want to use one of the overloaded versions, consider using decode_with_selector

Returns a Token vector, which lets you decode function arguments dynamically without knowing the return type.

Source

pub fn decode_output<D, T>(&self, name: &str, bytes: T) -> Result<D, AbiError>
where D: Detokenize, T: AsRef<[u8]>,

Decodes the provided ABI encoded function output with the selected function name.

If the function exists multiple times and you want to use one of the overloaded versions, consider using decode_with_selector

Source

pub fn decode_output_raw<T>( &self, name: &str, bytes: T, ) -> Result<Vec<Token>, AbiError>
where T: AsRef<[u8]>,

Decodes the provided ABI encoded function output with the selected function name.

If the function exists multiple times and you want to use one of the overloaded versions, consider using decode_with_selector

Returns a Token vector, which lets you decode function arguments dynamically without knowing the return type.

Source

pub fn decode_event<D>( &self, name: &str, topics: Vec<H256>, data: Bytes, ) -> Result<D, AbiError>
where D: Detokenize,

Decodes for a given event name, given the log.topics and log.data fields from the transaction receipt

Source

pub fn decode_event_raw( &self, name: &str, topics: Vec<H256>, data: Bytes, ) -> Result<Vec<Token>, AbiError>

Decodes for a given event name, given the log.topics and log.data fields from the transaction receipt

Returns a Token vector, which lets you decode function arguments dynamically without knowing the return type.

Source

pub fn decode_with_selector_raw<T>( &self, signature: [u8; 4], bytes: T, ) -> Result<Vec<Token>, AbiError>
where T: AsRef<[u8]>,

Decodes the provided ABI encoded bytes with the selected function selector

Returns a Token vector, which lets you decode function arguments dynamically without knowing the return type.

Source

pub fn decode_with_selector<D, T>( &self, signature: [u8; 4], bytes: T, ) -> Result<D, AbiError>
where D: Detokenize, T: AsRef<[u8]>,

Decodes the provided ABI encoded bytes with the selected function selector

Source

pub fn decode_input_raw<T>(&self, bytes: T) -> Result<Vec<Token>, AbiError>
where T: AsRef<[u8]>,

Decodes the provided ABI encoded input bytes

Returns a Token vector, which lets you decode function arguments dynamically without knowing the return type.

Source

pub fn decode_input<D, T>(&self, bytes: T) -> Result<D, AbiError>
where D: Detokenize, T: AsRef<[u8]>,

Decodes the provided ABI encoded input bytes

Source

pub fn decode_output_with_selector<D, T>( &self, signature: [u8; 4], bytes: T, ) -> Result<D, AbiError>
where D: Detokenize, T: AsRef<[u8]>,

Decode the provided ABI encoded bytes as the output of the provided function selector

Source

pub fn decode_output_with_selector_raw<T>( &self, signature: [u8; 4], bytes: T, ) -> Result<Vec<Token>, AbiError>
where T: AsRef<[u8]>,

Decodes the provided ABI encoded bytes with the selected function selector

Returns a Token vector, which lets you decode function arguments dynamically without knowing the return type.

Source

pub fn abi(&self) -> &Contract

Returns a reference to the contract’s ABI

Trait Implementations§

Source§

impl<M> Clone for GovernorSettings<M>

Source§

fn clone(&self) -> Self

Returns a duplicate of the value. Read more
1.0.0 · Source§

const fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<M> Debug for GovernorSettings<M>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<M> Deref for GovernorSettings<M>

Source§

type Target = ContractInstance<Arc<M>, M>

The resulting type after dereferencing.
Source§

fn deref(&self) -> &Self::Target

Dereferences the value.
Source§

impl<M> DerefMut for GovernorSettings<M>

Source§

fn deref_mut(&mut self) -> &mut Self::Target

Mutably dereferences the value.
Source§

impl<M: Middleware> From<ContractInstance<Arc<M>, M>> for GovernorSettings<M>

Source§

fn from(contract: Contract<M>) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

§

impl<M> Freeze for GovernorSettings<M>

§

impl<M> RefUnwindSafe for GovernorSettings<M>
where M: RefUnwindSafe,

§

impl<M> Send for GovernorSettings<M>
where M: Sync + Send,

§

impl<M> Sync for GovernorSettings<M>
where M: Sync + Send,

§

impl<M> Unpin for GovernorSettings<M>
where M: Unpin,

§

impl<M> UnwindSafe for GovernorSettings<M>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<P, T> Receiver for P
where P: Deref<Target = T> + ?Sized, T: ?Sized,

Source§

type Target = T

🔬This is a nightly-only experimental API. (arbitrary_self_types)
The target type on which the method may be called.
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> ErasedDestructor for T
where T: 'static,

Source§

impl<T> JsonSchemaMaybe for T