ADO Database
Last updated
Last updated
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
Name | Type | Description |
---|---|---|
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.
Ensure asset is in the format "cw20:address" or "native:denom
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.
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.
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.
Assigns a new address as the publisher of an ADO.
Only availabe to the contract owner.
The set of ownerhsip messages. These messages are the same as the ones found in the ADO base section.
Query the code_id
of the specified key.
Returns a u64 which represents the code_id
.
Checks the if the code_id
specified has been unpublished.
Returns true if the code Id has been unpublished and false otherwise.
Queries the ADO type and version linked to the specified code_id
.
Returns the ADO type in a string. The type will contain the ADO name along with the version. For example: "[email protected]"
Queries all the ADO types available with their latest versions.
The query will return each ADO type along with its latest version.
Queries the available versions of the specified ADO type.
Returns a Vec<String> containing all the requested ADO versions.
Queries all the metadata related to the specified ADO type.
The struct returned containing the ADO metadata.
Queries the fees implemented on the specified Action for the specified ADO type.
Returns the ActionFee struct with the fee information if found.
Queries the fees implemented on the specified Action for the specified code_id ADO.
Returns the ActionFee struct with the fee information if found.
Queries the version of the ADO.
Queries the owner of the contract.
Queries the ADO type.
Queries the kernel address of the chain the ADO is deployed on.
Returns a String containing the contract address of the Kernel.
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Descripton |
---|---|---|
Name | Type | Description |
---|---|---|
kernel_address
String
The contract address of the kernel_address. Can be found in our deployed contracts.
owner
Option<String>
Optional address to specify as the owner of the ADO being created. Defaults to the sender if not specified.
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
Option<Vec<ActionFee>>
Optional set of fees to be enforced when perfroming some action on an ADO of this type.
version
String
The version of the ADO. The version needs to conform with the semantic versioning standard.
publisher
Option<String>
The address to receive the fees.
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.
ado_type
String
The ado_type
to update the action fees for.
action_fees
Vec<ActionFee>
The new fees to implement on the ADOs with the specified ADO type .
ado_type
String
The ado_type
to remove the fees from.
action_fees
Vec<String>
A vector of Actions to remove the fees from.
ado_type
String
The ado type to update the publisher for.
publisher
String
The address of the new publsiher.
key
String
The type of ADO we want to get the code Id for.
code_id
u64
The code Id to check whether it has been unpublished or not.
code_id
u64
The code Id to return the ADO type for.
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.
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.
ado_type
String
The ADO type to get the metadata for.
publisher
String
The publisher of the specified ADO type.
latest_version
String
The published version of the 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.
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.
version
String
The version of the ADO.
ado_type
String
The type of the ado.