Andromeda
ADO LibraryBuild AppsDevelop ADOsCLIWeb Application Docs
Andromeda Archives
Andromeda Archives
  • Platform and Framework
    • Introduction to AndromedaOS
    • ADO Classes
    • Andromeda Messaging Protocol
      • Kernel
      • ADO Database
      • Economics Engine
      • Virtual File System
    • ADO Base
      • AndromedaMsg V1.0.0
      • AndromedaQuery V1.0.0
    • Common Types
    • Deployed Contracts
  • Andromeda Digital Objects
    • Introduction to ADOs
    • Auction V1.0.0
    • App V1.0.1
    • Crowdfund V1.0.0
    • CW20 V1.0.0
    • CW20 Staking V1.0.0
    • CW721 V1.0.0
    • CW20 Exchange V1.0.0
    • Lockdrop V1.0.0
    • Marketplace V1.0.0
    • Merkle-Airdrop V1.0.0
    • Rate Limiting Withdrawals V1.0.0
    • Splitter V1.0.0
    • Timelock V1.0.0
  • Andromeda Apps
    • Introduction to Apps
    • Crowdfunding App
    • Auctioning App
    • Cw20 Staking App
    • Marketplace App
  • Developing an ADO
    • Getting Started
      • Instantiation
      • Execution
      • Queries
      • Testing
    • ADO Example
    • ADO Submissions
  • Andromeda CLI
    • Introduction
    • Help and Shortcuts
    • ADO
    • Bank
    • Chain
    • Env
    • Gql
    • Tx
    • OS
    • Wallet
    • Wasm
    • Clearing CLI Data
    • Clear and Exit
  • Chain
    • Running a Node
    • Staking and Rewards
  • Andromeda Dashboard
    • Tokenomics Dashboard
    • Dashboard API
  • Additional Resources
    • GitHub
    • Website
    • White Paper
Powered by GitBook

Additional Resources

  • Github
  • Website

Community

  • Discord
  • Telegram

Socials

  • Twitter
  • Medium
  • Youtube
On this page
  • Coin
  • Definition
  • Expiration
  • Definition
  • Milliseconds
  • Recipient
  • AndrAddr

Was this helpful?

  1. Platform and Framework

Common Types

Defining recurring structs used by our ADOs.

This section contains the definitions of structures used by many of our ADOs. To avoid redefining them every time, they will be placed in this section and referenced.

Coin

Definition

A struct used to store the denom and amount of funds.

pub struct Coin {
    pub denom: String,
    pub amount: Uint128,
}
{
"denom":"uandr",
"amount":"1000000"
}

Name

Type

Description

denom

String

The denomination of the funds.

amount

Uint128

The amount of funds.

Expiration

Definition

Expiration represents a point in time when some event happens. It can compare with a BlockInfo and will return is_expired() == true once the condition is hit (and for every block in the future).

pub enum Expiration {
    AtHeight(u64),
    AtTime(Timestamp),
    Never {},
}

AtHeight: AtHeight will expire when env.block.height >= height.

AtTime: AtTime will expire when env.block.time >= time.

Never: Never will never expire. Used to express the empty variant.

Timestamp

A point in time in nanosecond precision.

pub struct Timestamp(Uint64)

JSON Implementation

{
"expiration":{
  "at_height": 500
  }

or

{
"expiration":{
  "at_time":"1246593483949835832"
}

Milliseconds

Struct that represents time in milliseconds in u64. We have two types that use Milliseconds:

The two type were created to make the usage of the Milliseconds clearer in the different usage cases.

  • MillisecondsDuration: Used for instances that specify a duration in milliseconds.

  • MillisecondsExpiration: Used for instances that spceify a timestamp in milliseconds.

#[cw_serde]
#[derive(Default, Eq, PartialOrd, Copy)]
pub struct Milliseconds(pub u64);
pub type MillisecondsDuration = Milliseconds;
pub type MillisecondsExpiration = Milliseconds;

Recipient

A simple struct used for inter-contract communication:

pub struct Recipient {
    pub address: AndrAddr,
    pub msg: Option<Binary>,
    pub ibc_recovery_address: Option<AndrAddr>,
}

The struct can be used in two ways:

1. Simply just providing an AndrAddr which will treat the communication as a transfer of any related funds.

2. Providing an AndrAddr and a Binary message which will be sent to the contract at the resolved address. The Binary message can be any message that the contract at the resolved address can handle.

The ibc_recovery_address is an address to receive funds in case the IBC message failed. IBC messages are currently disabled and will be enabled soon.

AndrAddr

An address or path that can be used within the Andromeda ecosystem to reference ADOs and users.

pub struct AndrAddr(String);

The address can be one of the following:

  • A valid human readable address e.g. "andr14pmn28jyqgphd5wv0z28ppxe5ryeraqqgqfr2v"

PreviousAndromedaQuery V1.0.0NextDeployed Contracts

Last updated 1 year ago

Was this helpful?

A valid Andromeda (VFS) path e.g. "/home/user/app1/component3"

A valid local path used in Apps e.g. "./<component-name>"

Virtual File System
VFS