Andromeda

Learn

ADO Builder

App Builder

Assets

Embeddables

App Store

CLI

Dashboard


Andromeda App - Beta.1.1

Create

Crowdfund 2.0

Setup a new Crowdfund 2.0 designed to distribute NFTs using different funding tiers.

Publish as an App

@1.1.1-beta.1

Publishing configurations to publish the ADO as an App

The desired name of the app.

Cw721

@2.0.3-beta.1

Allows users to launch their own custom NFT projects.

Input the wallet address responsible for minting tokens. Use your own wallet address if you will retain minting rights.

Current build doesn't have this local path. Make sure you know what you are doing!

Enter the official name of the token or NFT. Use only letters for the name.

Specify a unique symbol for the token or NFT. It should contain only letters and be 3 to 12 characters long.

Crowdfund

@2.0.2-beta.1

Create a new Crowdfund ADO to manage a token sale, allowing for multiple tiers of support.

Campaign Configuration


Configure the details for your Crowdfund campaign.

Enter the URL for the banner image of the campaign.

The type of funds accepted for buying NFTs.

Denom


The type of funds accepted for buying NFTs.

Enter the address of the CW20 token to be used for purchasing NFTs.

Enter a short description about the campaign.

The maximum amount of funding to be raised by the campaign.

The maximum amount of funding to be raised by the campaign.

The minimum amount of funding to be raised for the campaign to be considered successful.

The minimum amount of funding to be raised for the campaign to be considered successful.

Enter a title for your campaign.

Maximum length for the title is 64 characters.

Enter the address of the CW721 contract whose NFTs will be sold in this campaign.

Enter the URL for the campaign's official website.

Withdrawal Recipient


The address to receive the funds from the campaign proceeds.

The recipient's address.

Enter an IBC address for fund recovery, if applicable.

Enter an IBC address for fund recovery, if applicable.

Include an optional message for the recipient.

Include an optional message for the recipient.

Tiers


Define the tiers for your campaign. For example, you could have a bronze, silver, and gold tier for your crowdfund, each having a specified price.

CW20

@2.0.3-beta.1

The CW20 Token ADO is an ADO to create a token, The contract supports modules to extend its' functionality.

Name of the token. Letters only, must be between 3 and 12 characters.

Symbol of the token. Letters only, must be between 3 and 12 characters.

The number of decimals for the token. (6 is common)

Starting Balance


A list of addresses and the amount of coin to initialize for each.

Description


A URL pointing to the project behind this token. Must begin with HTTPS.

A longer description of the token and its' utility. Designed for tooltips or short alerts.

The address (if any) who can update this data structure.

A link to the logo, or a comment that there is an on-chain logo stored.

A link to the logo, or a comment that there is an on-chain logo stored.

Logo


A link to the logo, or a comment that there is an on-chain logo stored.

Must be a valid URL beginning with HTTPS (e.g. 'HTTPS://yourlogo.com')

Cap


The address to assign as a minter.

cap is a hard cap on total supply that can be achieved by minting. Note that this refers to total_supply. If None, there is unlimited cap.

A thin wrapper around u128 that is using strings for JSON encoding/decoding, such that the full u128 range can be used for clients that convert JSON numbers to floats, like JavaScript and jq. # Examples Use `from` to create instances of this and `u128` to get the value out: ``` # use cosmwasm_std::Uint128; let a = Uint128::from(123u128); assert_eq!(a.u128(), 123); let b = Uint128::from(42u64); assert_eq!(b.u128(), 42); let c = Uint128::from(70u32); assert_eq!(c.u128(), 70); ```