Newest Releases

Andromeda Upgrades to v1.1 6/16/24

A changelog can be found in our repo listing the changes and their corresponding PRs.

Addition of Base Messges to the ADOs

Andromeda has introduced two new Base Messages (Messages that are found for all ADOs) to the system. These messages can be used to further customize ADOs to meet a user's needs.

Rates

By action, we are referring to a specific execute message.

The rates can be used to add a fee to be paid for performing an action. The most common use case for rates is adding taxes or royalties on NFT or CW20 sales. The rate can be added in one of two ways:

  • Locally: Rate messages have been added to the set of base execute message and can be added through the ADO itself on an action.

  • Using the new Rates ADO: A Rates ADO has been developed that can be used to set up the rates for other ADOs. In this case, the ADO implementing rates needs to reference the Rates ADO that has been set up.

Rates can only be applied on ADOs that implement the "rates" feature. This will be specified in the ADO's documentation page.

Read all about the new Rates here.

Address List

The Address List ADO can be used to set up permissioning for other ADOs. A user can set up the Address List ADO with all the permissions needed and then reference it from the ADO looking to implement these permissions.

Read all about the new permissioning here.


New ADOs Released

Primitive ADO

The new Primitive ADO is a contract designed to work similar to a database. It can be used to store key/value pairs. The primitive accepts the following types of data to be stored:

pub enum Primitive {
    Uint128(Uint128),
    Decimal(Decimal),
    Coin(Coin),
    Addr(Addr),
    String(String),
    Bool(bool),
    Binary(Binary),
}

Primitive can be set to be one of the following:

  • Private: Only the owner is allowed to set/remove values.

  • Public: Primitive is open to anyone similar to a public database.

  • Restricted: Only the user that set the value is able to modify/remove it.

Read all about the new Primitive ADO here.

Conditional Spiltter

The Conditional Splitter ADO is a new type of splitter created by Andromeda to satisfy specific use cases for our users.

It allows the owner of the ADO to specify multiple sets of recipient addresses to receive funds by the splitter. Depending on the amount sent, the splitter will automatically split the funds to the required set.

Read all about the new Conditional Splitter ADO here.

Crowdfund ADO Reworked

The Crowdfund ADO has been reworked to an improved version. The main goal of the ADO remains the same but changes were made to the logic to make the ADO better suited for crowdfunding.

The new Crowdfund ADO will be available on testnet for now until it has passed the audit process.


ADO Enhancements

Added Ability to Remove and Replace Reward Tokens in CW20 Staking ADO

The CW20 Staking ADO has two new execute messages:

Added Expiry Struct

We have introduced a new struct for setting expirations and start times allowing users to chose between two options:

pub enum Expiry {
    FromNow(Milliseconds),
    AtTime(Milliseconds),
}
  • FromNow: Defines a duration in milliseconds from the current time. For example using 600000 means the time will be reached in 10 min from now.

  • AtTime: Defines a timestamp in milliseconds.

The Expiry struct has been inserted in many of our ADOs where needed. You can read more about it here.

Added Asset Struct

A new enum for specifying the type of asset has been introduced. It is used in cases where either native or CW20 can be used:

pub enum Asset {
    Cw20Token(AndrAddr),
    NativeToken(String),
}
  • Cw20Token: Used to specify that the asset being used is a CW20 token. Specify the ADO address in this case.

  • NativeToken: Used to specify that the asset being used is a native token. Specify the micro-denomination in this case.

This enum has been placed in ADOs where needed like the auction, marketplace and many more.

Added ADOBaseVersion Query to the Base Queries

A new query has been added to the base queries. The ADOBaseVersion query is used to retrieve the version of the ADOBase.

Read more about this query here.

Audits

Two ADOs went through audit from Sherlock:

  • Vesting ADO

  • Staking ADO

CLI

Minor bug fixes and improvements were made to the Andromeda CLI:

  • CLI closing when a non valid option is inputed bug fixed

  • Added Exit option for all commands

  • Added the new integrated chain configs to the CLI

Documentation

  • New doc pages for the new ADOs were added

  • Documentation for running a node on chain was added

  • Documentation for the staking interface was added

Integrations

The aOS has been integrated into several new chains on mainnet:

Web Application and UI Updates

Schema Updates

Updates and improvements have been made to many of our ADO panels making the process clearer and more intuitive for our users.

Several other enhancements were added to the web-app:

  • Added a new refresh button in the embeddables page

  • Launch page of web-app revised

  • Fixed bug that was occuring when reloading a flex file

Asset Browser

Several updates were made making asset browser easier and clearer then ever. A rundown of the new asset explorer:

Staking Interface

Several UI updgrades were done to the staking interface for a better user experience.

The following features were introduced to the Andromeda staking interface:

  • Added the ability to delegate to validators not in the active set

  • Added redelegation option

  • Added a "Stake More" button in the user's "Delegated" tab

  • Rewards are now shown for each validator instead of just the total

  • UI improvements for a better user experience

HackerBoard Release

Andromeda has launched its own hackerboard for devs looking to build. Tasks are available for devs to apply with bounties attached to each successfull completion. Devs can also apply to develop an ADO to be added to the aOS:

Archway Hackathon

Andromeda hackathon on Archway took place with some amazing teams and develpors:

Last updated

Additional Resources

GithubWebsite