#proxy #spark #fuel #orderbook #sdk

spark-proxy-sdk

SDK for interacting with the Spark Proxy

1 unstable release

0.0.2 Nov 6, 2024

#8 in #spark

Download history 122/week @ 2024-11-04 8/week @ 2024-11-11

130 downloads per month
Used in spark-cli

Apache-2.0

9KB
132 lines

Spark PROXY Contract Rust SDK

The Spark Proxy Contract SDK designed for Spark Market contract communication.

SparkProxyContract Type

The sdk object as contract instance wrapper.

pub struct SparkProxyContract {
    instance: SparkProxy<WalletUnlocked>,
}

Transactional SparkProxyContract Common Methods

Proxy Deploy

pub async fn deploy(target: ContractId, owner: WalletUnlocked) -> anyhow::Result<Self>

Deploys proxy with market target.

target The SparkMarketContract instance owner The Wallet object

Returns a SparkProxyContract instance

Set Proxy Target

pub async fn set_proxy_target(
        &self,
        new_target: ContractId,
    ) -> anyhow::Result<CallResponse<()>>

Sets a new target(implementation) for proxy. Only proxy owner can call.

self The SparkProxyContract instance new_target The SparkMarketContract instance

Returns a call result

Get Proxy Target

async fn proxy_target(&self) -> anyhow::Result<CallResponse<Option<ContractId>>>

Withdraws assets from market caller account.

self The SparkProxyContract instance

Returns an optional market contract id

Set Proxy Owner

pub async fn set_proxy_owner(
        &self,
        new_proxy_owner: State,
    ) -> anyhow::Result<CallResponse<()>>

Sets a new proxy owner. Ony proxy owner can call.

self The SparkProxyContract instance new_proxy_owner A new proxy owner

Returns a call result

Get Proxy Owner

pub async fn proxy_owner(&self) -> anyhow::Result<CallResponse<State>>

Retrieves a proxy owner.

self The SparkProxyContract instance

Returns a proxy owner

Dependencies

~78–115MB
~2M SLoC