| Crates.io | ree-types |
| lib.rs | ree-types |
| version | 0.10.0 |
| created_at | 2025-02-04 06:56:01.026304+00 |
| updated_at | 2025-09-01 04:41:07.303441+00 |
| description | REE exchange rust SDK. |
| homepage | https://www.omnity.network/ |
| repository | https://github.com/octopus-network/ree-exchange-sdk |
| max_upload_size | |
| id | 1541605 |
| size | 67,890 |
This repository contains the essential data type definitions for REE (Runes Exchange Environment). If you are working on develop REE exchanges, please refer to the SDK.
This crate depends the ic-cdk crate, here are the versions of ic-cdk that this crate is compatible with:
| ree-types Version | ic-cdk Version |
|---|---|
| 0.8.x(SDK) | 0.18.x |
| 0.7.x(SDK) | 0.17.x |
| 0.6.x | 0.18.x |
| 0.5.x | 0.17.x |
In REE, every exchange must implement the following six functions:
| Function Name | Parameters | Return Type | Description |
|---|---|---|---|
get_pool_list |
- | Vec<PoolBasic> |
See Get Pool List. |
get_pool_info |
GetPoolInfoArgs |
Option<PoolInfo> |
See Get Pool Info. |
execute_tx |
ExecuteTxArgs |
Result<String, String> |
See Execute Tx. |
rollback_tx |
RollbackTxArgs |
Result<(), String> |
See Rollback Tx. |
new_block |
NewBlockArgs |
Result<(), String> |
See New Block. |
Implementation Notes:
async or synchronous.get_pool_list and get_pool_info may be declared with #[ic_cdk::query] or #[ic_cdk::update] in the exchange canister. The other functions MUST be declared with #[ic_cdk::update].ree_types::exchange_interfaces module.Returns all of pools' basic information maintained by the exchange.
Return Type: Vec<PoolBasic>, where PoolBasic is defined as:
pub struct PoolBasic {
pub name: String,
pub address: String,
}
Returns detailed information about a specified pool.
Parameters:
pub struct GetPoolInfoArgs {
pub pool_address: String,
}
Return Type: Option<PoolInfo>, where PoolInfo is defined as:
pub struct PoolInfo {
pub key: Pubkey,
pub key_derivation_path: Vec<Vec<u8>>,
pub name: String,
pub address: String,
pub nonce: u64,
pub coin_reserved: Vec<CoinBalance>,
pub btc_reserved: u64,
pub utxos: Vec<Utxo>,
pub attributes: String,
}
Executes a transaction in the exchange.
Parameters:
pub struct ExecuteTxArgs {
pub psbt_hex: String,
pub txid: Txid,
pub intention_set: IntentionSet,
pub intention_index: u32,
pub zero_confirmed_tx_queue_length: u32,
}
Return Type:
Ok(String): The signed PSBT data in hex format. The exchange can add corresponding signature(s) to the PSBT data or not, but a valid PSBT data with the same txid with the given psbt_hex MUST be returned.Err(String): An error message if execution fails.Rolls back a transaction in the exchange. All transactions following the given transaction should also be considered canceled.
Parameters:
pub struct RollbackTxArgs {
pub txid: Txid,
pub reason_code: String
}
Where the reason_code is one of the following Rollback Reason Code:
| Category | Rollback Reason Code | Description |
|---|---|---|
| 00 - 19, Transaction is rejected by Mempool | 00 | Transaction rejected by Mempool: Specific Reason (insufficient fees, etc.) |
| 01 | Transaction replaced in Mempool | |
| 02 | Transaction rejected by Mempool: conflict | |
| 03 | Transaction rejected by Mempool: replacement failed | |
| 04 | Transaction rejected by Mempool: input missing or spent | |
| 50 - 59, Transaction is rolled back by Orchestrator policy | 50 | Rollback by Orchestrator: Specific Reason (bug, etc.) |
| 51 | Final Bitcoin transaction is not valid | |
| 70 - 79, Transaction is failed because of Exchange error | 70 | An exchange returned error |
| 71 | An exchange returned invalid PSBT data | |
| 90 - 99, Other reasons | 99 | Unknown reason, check Orchestrator logs |
Return Type:
Ok(()): On success.Err(String): If an error occurs.Notifies the exchange of a new block. The confirmed_txids in NewBlockInfo are an array of txid which are executed by the exchange previously, these txids are included in the given block (that is considered as confirmed). The exchange can use this information to update its internal state.
Parameters:
pub struct NewBlockInfo {
pub block_height: u32,
pub block_hash: String,
/// The block timestamp in seconds since the Unix epoch.
pub block_timestamp: u64,
pub confirmed_txids: Vec<Txid>,
}
pub type NewBlockArgs = NewBlockInfo;
Return Type:
Ok(()): On success.Err(String): If an error occurs.The invoke function in the REE Orchestrator serves as the main entry point for the REE protocol. This function takes InvokeArgs as a parameter, which includes the following fields:
pub struct InvokeArgs {
pub psbt_hex: String,
pub intention_set: IntentionSet,
pub initiator_utxo_proof: Vec<u8>,
}
Where IntentionSet is defined as:
pub struct IntentionSet {
pub initiator_address: String,
pub tx_fee_in_sats: u64,
pub intentions: Vec<Intention>,
}
pub struct Intention {
pub exchange_id: String,
pub action: String,
pub action_params: String,
pub pool_address: String,
pub nonce: u64,
pub pool_utxo_spent: Vec<String>,
pub pool_utxo_received: Vec<String>,
pub input_coins: Vec<InputCoin>,
pub output_coins: Vec<OutputCoin>,
}
pub struct InputCoin {
// The address of the owner of the coins
pub from: String,
pub coin: CoinBalance,
}
pub struct OutputCoin {
// The address of the receiver of the coins
pub to: String,
pub coin: CoinBalance,
}
The invoke function returns a Result<String, String>, where:
Ok value is the txid of the final Bitcoin transaction, which will be formed and broadcasted.Err value is an error message if the execution of invoke fails.The invoke function will call the execute_tx function of the exchange canister(s) based on the provided IntentionSet. If all intentions are successfully executed, the function broadcasts the final Bitcoin transaction and returns the txid.
Before invoking the exchange canisters, the Orchestrator performs necessary validations on the IntentionSet to ensure it aligns with the provided PSBT data.
Each IntentionSet can contain multiple Intention objects, reflecting the user's intentions. The Intention struct consists of the following fields:
exchange_id: The identifier of a registered exchange responsible for executing the intention. The Orchestrator will validate this field.action: The specific action to be executed by the exchange. The Orchestrator will NOT validate this field.action_params: Parameters for the action, specific to the exchange. The Orchestrator will NOT validate this field.pool_address: The address of the exchange pool where the intention will be executed. The Orchestrator will validate this field.nonce: A nonce representing the pool state in the exchange. The Orchestrator will NOT validate this field.pool_utxo_spent: The UTXO(s) owned by the pool that will be spent in the intention. The clients of REE can leave this field empty as the Orchestrator will fill it in with the UTXO(s) that the pool will spend in the final Bitcoin transaction.pool_utxo_received: The UTXO(s) that the pool will receive as part of the intention. These UTXOs should correspond to the outputs of the final Bitcoin transaction. The clients of REE can leave this field empty as the Orchestrator will fill it in with the UTXO(s) that the pool will receive in the final Bitcoin transaction.input_coins: The coins that will be spent in the intention. These should appear as inputs in the final Bitcoin transaction.output_coins: The coins that will be received in the intention. These should appear as outputs in the final Bitcoin transaction.