abstract_std

Module adapter

Source
Expand description

§Abstract Api Base

abstract_std::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 account 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§

Enums§

Traits§

  • Trait indicates that the type is used as an app message in the ExecuteMsg enum. Enables Into<ExecuteMsg> for BOOT fn-generation support.
  • Trait indicates that the type is used as an api message in the QueryMsg enum. Enables Into<QueryMsg> for BOOT fn-generation support.
  • Automatically derived trait that allows you to call the variants of the message directly without the need to construct the struct yourself.
  • Automatically derived trait that allows you to call the variants of the message directly without the need to construct the struct yourself.

Type Aliases§