ADO Database
Introduction
The Database ADO (ADODB) is a smart contract that is primarily used to store the code Ids for Andromeda ADOs. These code Ids are used to instantiate these ADOs in Andromeda Apps. The code Ids are stored within a key value pair where the key is the ADO type and the value is the ADO code Id.
The ADODB is also responsible for managing the economic engine of the Andromeda ecosystem, allowing ADO publishers to set custom fees to be paid when interacting with one of their published ADOs. These fees can be set as native or a CW20 token.
Currently all published ADOs have been done by and through the Andromeda team. This does not mean that ADOs developed by Andromeda are the only ones that can be published to the ADODB. On the contrary, we encourage developers to create new and exciting ADOs to be published that can be submitted to our team to be reviewed. If the quality of the ADO is found to be to standard, the developer is given permission to publish it into the existing library of ADOs. It is important to note that although this process is done currently by the Andromeda team, the process of accepting and publishing ADOs will eventually be handed to the Andromeda DAO to make the process as decentralized as possible.
ADOs instantiated by code Ids found in the ADODB are eligible to communicate with the AMP layer as it ensures that the ADO was created by one of the Andromeda contracts.
Ado_type: adodb
InstantiateMsg
kernel_address
String
owner
Option<String>
Optional address to specify as the owner of the ADO being created. Defaults to the sender if not specified.
ExecuteMsg
Publish
Publishes an ADO to the ADODB by saving the provided code_id
under the specified ado_type
.
The new version needs to be greater than the old one if using an already published ado_type.
Only available to the ADO owner.
The fee can be either a native or a CW20 asset.
code_id
u64
The code id to be used to instantiate the specified ado_type
.
ado_type
String
The type/name of the ADO to publish.
action_fees
Optional set of fees to be enforced when perfroming some action on an ADO of this type.
version
String
publisher
Option<String>
The address to receive the fees.
ActionFee
Ensure asset is in the format "cw20:address" or "native:denom
action
String
The action to add the fees on when called. This could be instantiation or one of the execute messages of the ADO.
asset
String
The funds used to pay the fee. Can be either a native fund specified as "native:uandr" or a CW20 token contract address specified as "cw20:andr1....".
amount
String
The amount of the specified funds to pay as fees when performing the action.
receiver
Option<Addr>
An optional address to receive the fees. If not specified, then the specified publisher receives the fees.
Unpublish
Unpublishes a previously published ADO.
Only available to the contract owner.
Once unpublished, the code_id will be removed from the ADODB.
Unplubish is for a specific version of an ADO.
An Unpublished ADO can never be published again.
UpdateActionFees
Update the fees implemented on the specified ado_type.
Only availabe to the contract owner.
Will return an error if the ADO type does not exist.
ado_type
String
The ado_type
to update the action fees for.
action_fees
The new fees to implement on the ADOs with the specified ADO type .
RemoveActionFees
Removes the specified Action Fees for the specified ado_type.
Only available to the contract owner.
Will return an error if the ADO type does not exist.
ado_type
String
The ado_type
to remove the fees from.
action_fees
Vec<String>
A vector of Actions to remove the fees from.
UpdatePublisher
Assigns a new address as the publisher of an ADO.
Only availabe to the contract owner.
ado_type
String
The ado type to update the publisher for.
publisher
String
The address of the new publsiher.
Ownership
The set of ownerhsip messages. These messages are the same as the ones found in the ADO base section.
QueryMsg
CodeId
Query the code_id
of the specified key.
key
String
The type of ADO we want to get the code Id for.
Returns a u64 which represents the code_id
.
IsUnpublishedCodeId
Checks the if the code_id
specified has been unpublished.
code_id
u64
The code Id to check whether it has been unpublished or not.
Returns true if the code Id has been unpublished and false otherwise.
ADOType
Queries the ADO type and version linked to the specified code_id
.
code_id
u64
The code Id to return the ADO type for.
Returns the ADO type in a string. The type will contain the ADO name along with the version. For example: "[email protected]"
AllADOTypes
Queries all the ADO types available with their latest versions.
start_after
Option<String>
Optional ADO to start from. The ADOs are listed alphabetically. If specified, the query will only fetch ADOs after the specified start_after.
limit
Option<u32>
Optional limit to the number of the ADO types returned by the query. If not specified, the default limit will be 100. The maximum limit that can be set is 200.
The query will return each ADO type along with its latest version.
ADOVersions
Queries the available versions of the specified ADO type.
ado_type
String
The type of ADO to get the versions for.
start_after
Option<String>
Optional version to start from. If specified, the query will only fetch versions greater than the start_after version.
limit
Option<u32>
Optional limit to the number of the versions returned by the query. If not specified, the default limit will be 100. The maximum limit that can be set is 200.
Returns a Vec<String> containing all the requested ADO versions.
ADOMetadata
Queries all the metadata related to the specified ADO type.
ado_type
String
The ADO type to get the metadata for.
ADOMetadata
The struct returned containing the ADO metadata.
publisher
String
The publisher of the specified ADO type.
latest_version
String
The published version of the ADO type.
ActionFee
Queries the fees implemented on the specified Action for the specified ADO type.
ado_type
String
The ADO type that has the action to query fees for.
action
String
The action of the ADO type to query the fees for.
Returns the ActionFee struct with the fee information if found.
ActionFeeByCodeId
Queries the fees implemented on the specified Action for the specified code_id ADO.
ado_type
String
The ADO type that has the action to query fees for.
action
String
The action of the ADO type to query the fees for.
Returns the ActionFee struct with the fee information if found.
Version
Queries the version of the ADO.
VersionResponse
version
String
The version of the ADO.
Owner
Queries the owner of the contract.
ContractOwnerResponse
Type
Queries the ADO type.
TypeResponse
ado_type
String
The type of the ado.
KernelAddress
Queries the kernel address of the chain the ADO is deployed on.
Returns a String containing the contract address of the Kernel.
Last updated