Abstract-SDK

This crate provides a set of modular APIs for developers to use in their CosmWasm smart-contracts.

Getting started

To get started with the Abstract SDK you first need to understand the basic features that we provide and how you can use those features to create composable smart-contract APIs.

Features

Abstract features are traits that can be implemented on a struct. Depending on the use-case that struct can represent a smart-contract or it can be a simple struct that just implements a single feature. Each feature unlocks a function on the object which allows you to retrieve some information. By composing these features it is possible to write advanced APIs that are automatically implemented on objects that support its required features.

APIs

The Abstract APIs are objects that can only be retrieved if a contract or feature-object implements the required features/api traits. If the trait constraints for the Adapter is met it is automatically implemented on the object and allows you to retrieve the Adapter object.

Example

The Bank Adapter allows developers to transfer assets from and to the Account through their module object. We now want to use this Adapter to create a Splitter API that splits the transfer of some amount of funds between a set of receivers.

```rust,norun use abstractsdk::{TransferInterface,AbstractSdkResult, Execution, AccountAction}; use abstractcore::objects::AnsAsset; use cosmwasmstd::{Addr, CosmosMsg, Deps, StdResult, Uint128};

// Trait to retrieve the Splitter object // Depends on the ability to transfer funds pub trait SplitterInterface: TransferInterface { fn splitter<'a>(&'a self, deps: Deps<'a>) -> Splitter { Splitter { base: self, deps } } }

// Implement for every object that can transfer funds impl SplitterInterface for T where T: TransferInterface {}

[derive(Clone)]

pub struct Splitter<'a, T: SplitterInterface> { base: &'a T, deps: Deps<'a>, }

impl<'a, T: SplitterInterface> Splitter<'a, T> { /// Split an asset to multiple users pub fn split(&self, asset: AnsAsset, receivers: &[Addr]) -> AbstractSdkResult { // split the asset between all receivers let receiveseach = AnsAsset { amount: asset .amount .multiplyratio(Uint128::one(), Uint128::from(receivers.len() as u128)), ..asset };

    // Retrieve the bank API
    let bank = self.base.bank(self.deps);
    receivers
        .iter()
        .map(|receiver| {
            // Construct the transfer message
            bank.transfer(vec![&receives_each], receiver)
        })
        .try_fold(AccountAction::new(), |mut acc, v| match v {
            Ok(action) => {
                acc.merge(action);
                Ok(acc)
            }
            Err(e) => Err(e),
        })
}

} ```

The API can then be used by any contract that implements its required traits, in this case the TransferInterface.

```rust,norun # use abstractsdk::features::{AccountIdentification, AbstractNameService, ModuleIdentification}; # use cosmwasmstd::{StdResult, Deps, MessageInfo, CosmosMsg, Addr}; # use abstractsdk::featureobjects::AnsHost; # use abstractsdk::{AbstractSdkResult, AccountAction}; # pub struct MyContract { #
# } # impl AccountIdentification for MyContract { # fn proxyaddress(&self, _deps: Deps) -> AbstractSdkResult { # Ok(Addr::unchecked("justanexample")) # } # } # impl ModuleIdentification for MyContract { # fn moduleid(&self) -> &'static str { "mycontract" } # } # impl AbstractNameService for MyContract { # fn anshost(&self, deps: Deps) -> AbstractSdkResult { # Ok(AnsHost{address: Addr::unchecked("justanexample")}) # } # } use abstractsdk::TransferInterface;

fn forwarddeposit(deps: Deps, mycontract: MyContract, messageinfo: MessageInfo) -> AbstractSdkResult { let forwarddepositmsg = mycontract.bank(deps).deposit(message_info.funds)?;

  Ok(forward_deposit_msg)

} ```

Abstract Base

To use an API either construct a feature object or use an Abstract base contract as the starting-point of your application.
The available base contracts are:

| Kind | Migratable | Installable | |--------------------------------------------------------|------------|-------------| | App | ✅ | ✅ | | Adapter | ❌ | ✅ | | IBC-host | ✅ | ❌ |

Each base supports a set of endpoints that can accept custom handlers. These handlers can be added to the base using a static builder pattern. All the available endpoints are discussed here.

Usage

Add abstract-sdk to your Cargo.toml by running:

bash cargo add abstract-sdk