Module adapter

Source
Expand description

§Abstract Api Base

abstract_core::adapter implements shared functionality that’s useful for creating new Abstract adapters.

§Description

An Abstract adapter 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 Account. The adapter structure is well-suited for implementing standard interfaces to external services like dexes, lending platforms, etc.

Structs§

AdapterConfigResponse
AdapterRequestMsg
An adapter request. If proxy is None, then the sender must be an Account manager and the proxy address is extrapolated from the Account id.
AuthorizedAddressesResponse
BaseExecuteMsg
BaseInstantiateMsg
Used by Abstract to instantiate the contract The contract is then registered on the version control contract using crate::version_control::ExecuteMsg::ProposeModules.

Enums§

AdapterBaseMsg
Configuration message for the adapter
BaseQueryMsg
Query adapter message

Traits§

AdapterExecuteMsg
Trait indicates that the type is used as an app message in the ExecuteMsg enum. Enables Into<ExecuteMsg> for BOOT fn-generation support.
AdapterQueryMsg
Trait indicates that the type is used as an api message in the QueryMsg enum. Enables Into<QueryMsg> for BOOT fn-generation support.

Type Aliases§

ExecuteMsg
InstantiateMsg
QueryMsg