Skip to main content

OutcomeTokenInstance

Struct OutcomeTokenInstance 

Source
pub struct OutcomeTokenInstance<P, N = Ethereum> { /* private fields */ }
Expand description

A OutcomeToken instance.

Contains type-safe methods for interacting with an on-chain instance of the OutcomeToken contract located at a given address, using a given provider P.

If the contract bytecode is available (see the sol! documentation on how to provide it), the deploy and deploy_builder methods can be used to deploy a new instance of the contract.

See the module-level documentation for all the available methods.

Implementations§

Source§

impl<P: Provider<N>, N: Network> OutcomeTokenInstance<P, N>

Instantiation and getters/setters.

Source

pub const fn new(address: Address, __provider: P) -> Self

Creates a new wrapper around an on-chain OutcomeToken contract instance.

See the wrapper’s documentation for more details.

Source

pub const fn address(&self) -> &Address

Returns a reference to the address.

Source

pub fn set_address(&mut self, address: Address)

Sets the address.

Source

pub fn at(self, address: Address) -> Self

Sets the address and returns self.

Source

pub const fn provider(&self) -> &P

Returns a reference to the provider.

Source§

impl<P: Clone, N> OutcomeTokenInstance<&P, N>

Source

pub fn with_cloned_provider(self) -> OutcomeTokenInstance<P, N>

Clones the provider and returns a new instance with the cloned provider.

Source§

impl<P: Provider<N>, N: Network> OutcomeTokenInstance<P, N>

Function calls.

Source

pub fn call_builder<C: SolCall>(&self, call: &C) -> SolCallBuilder<&P, C, N>

Creates a new call builder using this contract instance’s provider and address.

Note that the call can be any function call, not just those defined in this contract. Prefer using the other methods for building type-safe contract calls.

Source

pub fn DEFAULT_ADMIN_ROLE( &self, ) -> SolCallBuilder<&P, DEFAULT_ADMIN_ROLECall, N>

Creates a new call builder for the [DEFAULT_ADMIN_ROLE] function.

Source

pub fn ESCROW_ROLE(&self) -> SolCallBuilder<&P, ESCROW_ROLECall, N>

Creates a new call builder for the [ESCROW_ROLE] function.

Source

pub fn MINTER_ROLE(&self) -> SolCallBuilder<&P, MINTER_ROLECall, N>

Creates a new call builder for the [MINTER_ROLE] function.

Source

pub fn balanceOf( &self, account: Address, id: U256, ) -> SolCallBuilder<&P, balanceOfCall, N>

Creates a new call builder for the [balanceOf] function.

Source

pub fn balanceOfBatch( &self, accounts: Vec<Address>, ids: Vec<U256>, ) -> SolCallBuilder<&P, balanceOfBatchCall, N>

Creates a new call builder for the [balanceOfBatch] function.

Source

pub fn burnEscrow( &self, from: Address, tokenId: U256, amount: U256, ) -> SolCallBuilder<&P, burnEscrowCall, N>

Creates a new call builder for the [burnEscrow] function.

Source

pub fn burnPair( &self, from: Address, marketId: U256, amount: U256, ) -> SolCallBuilder<&P, burnPairCall, N>

Creates a new call builder for the [burnPair] function.

Source

pub fn getRoleAdmin( &self, role: FixedBytes<32>, ) -> SolCallBuilder<&P, getRoleAdminCall, N>

Creates a new call builder for the [getRoleAdmin] function.

Source

pub fn grantRole( &self, role: FixedBytes<32>, account: Address, ) -> SolCallBuilder<&P, grantRoleCall, N>

Creates a new call builder for the [grantRole] function.

Source

pub fn hasRole( &self, role: FixedBytes<32>, account: Address, ) -> SolCallBuilder<&P, hasRoleCall, N>

Creates a new call builder for the [hasRole] function.

Source

pub fn isApprovedForAll( &self, account: Address, operator: Address, ) -> SolCallBuilder<&P, isApprovedForAllCall, N>

Creates a new call builder for the [isApprovedForAll] function.

Source

pub fn mintPair( &self, to: Address, marketId: U256, amount: U256, ) -> SolCallBuilder<&P, mintPairCall, N>

Creates a new call builder for the [mintPair] function.

Source

pub fn mintSingle( &self, to: Address, marketId: U256, amount: U256, isYes: bool, ) -> SolCallBuilder<&P, mintSingleCall, N>

Creates a new call builder for the [mintSingle] function.

Source

pub fn noTokenId(&self, marketId: U256) -> SolCallBuilder<&P, noTokenIdCall, N>

Creates a new call builder for the [noTokenId] function.

Source

pub fn redeem( &self, from: Address, marketId: U256, amount: U256, winningOutcome: bool, ) -> SolCallBuilder<&P, redeemCall, N>

Creates a new call builder for the [redeem] function.

Source

pub fn renounceRole( &self, role: FixedBytes<32>, callerConfirmation: Address, ) -> SolCallBuilder<&P, renounceRoleCall, N>

Creates a new call builder for the [renounceRole] function.

Source

pub fn revokeRole( &self, role: FixedBytes<32>, account: Address, ) -> SolCallBuilder<&P, revokeRoleCall, N>

Creates a new call builder for the [revokeRole] function.

Source

pub fn safeBatchTransferFrom( &self, from: Address, to: Address, ids: Vec<U256>, values: Vec<U256>, data: Bytes, ) -> SolCallBuilder<&P, safeBatchTransferFromCall, N>

Creates a new call builder for the [safeBatchTransferFrom] function.

Source

pub fn safeTransferFrom( &self, from: Address, to: Address, id: U256, value: U256, data: Bytes, ) -> SolCallBuilder<&P, safeTransferFromCall, N>

Creates a new call builder for the [safeTransferFrom] function.

Source

pub fn setApprovalForAll( &self, operator: Address, approved: bool, ) -> SolCallBuilder<&P, setApprovalForAllCall, N>

Creates a new call builder for the [setApprovalForAll] function.

Source

pub fn supportsInterface( &self, interfaceId: FixedBytes<4>, ) -> SolCallBuilder<&P, supportsInterfaceCall, N>

Creates a new call builder for the [supportsInterface] function.

Source

pub fn uri(&self, _0: U256) -> SolCallBuilder<&P, uriCall, N>

Creates a new call builder for the [uri] function.

Source

pub fn yesTokenId( &self, marketId: U256, ) -> SolCallBuilder<&P, yesTokenIdCall, N>

Creates a new call builder for the [yesTokenId] function.

Source§

impl<P: Provider<N>, N: Network> OutcomeTokenInstance<P, N>

Event filters.

Source

pub fn event_filter<E: SolEvent>(&self) -> Event<&P, E, N>

Creates a new event filter using this contract instance’s provider and address.

Note that the type can be any event, not just those defined in this contract. Prefer using the other methods for building type-safe event filters.

Source

pub fn ApprovalForAll_filter(&self) -> Event<&P, ApprovalForAll, N>

Creates a new event filter for the ApprovalForAll event.

Source

pub fn PairBurned_filter(&self) -> Event<&P, PairBurned, N>

Creates a new event filter for the PairBurned event.

Source

pub fn PairMinted_filter(&self) -> Event<&P, PairMinted, N>

Creates a new event filter for the PairMinted event.

Source

pub fn Redeemed_filter(&self) -> Event<&P, Redeemed, N>

Creates a new event filter for the Redeemed event.

Source

pub fn RoleAdminChanged_filter(&self) -> Event<&P, RoleAdminChanged, N>

Creates a new event filter for the RoleAdminChanged event.

Source

pub fn RoleGranted_filter(&self) -> Event<&P, RoleGranted, N>

Creates a new event filter for the RoleGranted event.

Source

pub fn RoleRevoked_filter(&self) -> Event<&P, RoleRevoked, N>

Creates a new event filter for the RoleRevoked event.

Source

pub fn TransferBatch_filter(&self) -> Event<&P, TransferBatch, N>

Creates a new event filter for the TransferBatch event.

Source

pub fn TransferSingle_filter(&self) -> Event<&P, TransferSingle, N>

Creates a new event filter for the TransferSingle event.

Source

pub fn URI_filter(&self) -> Event<&P, URI, N>

Creates a new event filter for the URI event.

Trait Implementations§

Source§

impl<P: Clone, N: Clone> Clone for OutcomeTokenInstance<P, N>

Source§

fn clone(&self) -> OutcomeTokenInstance<P, N>

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

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

Performs copy-assignment from source. Read more
Source§

impl<P, N> Debug for OutcomeTokenInstance<P, N>

Source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<P, N> Freeze for OutcomeTokenInstance<P, N>
where P: Freeze,

§

impl<P, N> RefUnwindSafe for OutcomeTokenInstance<P, N>

§

impl<P, N> Send for OutcomeTokenInstance<P, N>
where P: Send, N: Send,

§

impl<P, N> Sync for OutcomeTokenInstance<P, N>
where P: Sync, N: Sync,

§

impl<P, N> Unpin for OutcomeTokenInstance<P, N>
where P: Unpin, N: Unpin,

§

impl<P, N> UnsafeUnpin for OutcomeTokenInstance<P, N>
where P: UnsafeUnpin,

§

impl<P, N> UnwindSafe for OutcomeTokenInstance<P, N>
where P: UnwindSafe, N: UnwindSafe,

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, 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<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

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

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
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> TryClone for T
where T: Clone,

Source§

fn try_clone(&self) -> Result<T, Error>

Clones self, possibly returning an error.
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