Expand description

Abstract API Base

abstract_os::api implements shared functionality that’s useful for creating new Abstract APIs.

Description

An Abstract API contract is a contract that is allowed to perform actions on a proxy contract. It is not migratable and its functionality is shared between users, meaning that all users call the same contract address to perform operations on the OS. The API structure is well-suited for implementing standard interfaces to external services like dexes, lending platforms, etc.

Structs

Used by Abstract to instantiate the contract The contract is then registered on the version control contract using crate::version_control::ExecuteMsg::AddApi.

An API request. If proxy is None, then the sender must be an OS manager and the proxy address is extrapolated from the OS id.

Enums

Configuration message for the API

Query API message

Interface to the API.