[][src]Struct ton_client_rs::TonContracts

pub struct TonContracts { /* fields omitted */ }

Contract management struct

Methods

impl TonContracts[src]

pub fn get_deploy_address(
    &self,
    code: &[u8],
    keys: &Ed25519KeyPair
) -> TonResult<TonAddress>
[src]

Get address for contract deploying

pub fn deploy(
    &self,
    abi: &str,
    code: &[u8],
    constructor_params: RunParameters,
    keys: &Ed25519KeyPair
) -> TonResult<TonAddress>
[src]

Deploy contract to TON blockchain

pub fn run(
    &self,
    address: &TonAddress,
    abi: &str,
    function_name: &str,
    input: RunParameters,
    keys: Option<&Ed25519KeyPair>
) -> TonResult<Value>
[src]

Run the contract function with given parameters

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]