abstract_std/native/ibc/ibc_client.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427
use cosmwasm_schema::QueryResponses;
use cosmwasm_std::{Addr, Binary, CosmosMsg, Deps, Empty, QueryRequest, StdError, Uint64};
use self::state::IbcInfrastructure;
use crate::{
account::{self, ModuleInstallConfig},
ibc::{Callback, ModuleQuery},
ibc_host::HostAction,
objects::{
account::AccountId, module::ModuleInfo, module_reference::ModuleReference,
registry::RegistryContract, TruncatedChainId,
},
AbstractError,
};
use super::{polytone_callbacks, IBCLifecycleComplete};
pub mod state {
use cosmwasm_std::{Addr, Binary, Coin};
use cw_storage_plus::{Item, Map};
use crate::{
ibc::ICS20PacketIdentifier,
objects::{
account::{AccountSequence, AccountTrace},
storage_namespaces, TruncatedChainId,
},
};
/// Information about the deployed infrastructure we're connected to.
#[cosmwasm_schema::cw_serde]
pub struct IbcInfrastructure {
/// Address of the polytone note deployed on the local chain. This contract will forward the messages for us.
pub polytone_note: Addr,
/// The address of the abstract host deployed on the remote chain. This address will be called with our packet.
pub remote_abstract_host: String,
// The remote polytone proxy address which will be called by the polytone host.
pub remote_proxy: Option<String>,
}
#[cosmwasm_schema::cw_serde]
pub struct AccountCallbackPayload {
pub channel_id: String,
pub account_address: Addr,
/// Funds sent initially
pub funds: Coin,
/// Base64 encoded `account::ExecuteMsg` to allow callback different versions of the accounts
pub msgs: Vec<Binary>,
}
// Saves the local note deployed contract and the remote abstract host connected
// This allows sending cross-chain messages
pub const IBC_INFRA: Map<&TruncatedChainId, IbcInfrastructure> =
Map::new(storage_namespaces::ibc_client::IBC_INFRA);
pub const REVERSE_POLYTONE_NOTE: Map<&Addr, TruncatedChainId> =
Map::new(storage_namespaces::ibc_client::REVERSE_POLYTONE_NOTE);
/// (account_trace, account_sequence, chain_name) -> remote account address. We use a
/// triple instead of including AccountId since nested tuples do not behave as expected due to
/// a bug that will be fixed in a future release.
pub const ACCOUNTS: Map<(&AccountTrace, AccountSequence, &TruncatedChainId), String> =
Map::new(storage_namespaces::ibc_client::ACCOUNTS);
// For callbacks tests
pub const ACKS: Item<Vec<String>> = Item::new(storage_namespaces::ibc_client::ACKS);
pub const ICS20_ACCOUNT_CALLBACKS: Map<ICS20PacketIdentifier, (Addr, Coin, Vec<Binary>)> =
Map::new(storage_namespaces::ibc_client::ICS20_ACCOUNT_CALLBACKS);
pub const ICS20_ACCOUNT_CALLBACK_PAYLOAD: Item<AccountCallbackPayload> =
Item::new(storage_namespaces::ibc_client::ICS20_ACCOUNT_CALLBACK_PAYLOAD);
}
/// This needs no info. Owner of the contract is whoever signed the InstantiateMsg.
#[cosmwasm_schema::cw_serde]
pub struct InstantiateMsg {}
#[cosmwasm_schema::cw_serde]
pub struct MigrateMsg {}
#[cosmwasm_schema::cw_serde]
#[derive(cw_orch::ExecuteFns)]
pub enum ExecuteMsg {
/// Update the ownership.
UpdateOwnership(cw_ownable::Action),
/// Owner method: Registers the polytone note on the local chain as well as the host on the remote chain to send messages through
/// This allows for monitoring which chain are connected to the contract remotely
RegisterInfrastructure {
/// Chain to register the infrastructure for ("juno", "osmosis", etc.)
chain: TruncatedChainId,
/// Polytone note (locally deployed)
note: String,
/// Address of the abstract host deployed on the remote chain
host: String,
},
/// Only callable by Account
/// Will attempt to forward the specified funds to the corresponding
/// address on the remote chain.
SendFunds {
/// host chain to be executed on
/// Example: "osmosis"
host_chain: TruncatedChainId,
/// Address of the token receiver on host chain
/// Defaults to address of the remote account
receiver: Option<String>,
memo: Option<String>,
},
/// Only callable by Account
/// Will attempt to forward the specified funds to the account
/// on the remote chain.
SendFundsWithActions {
/// host chain to be executed on
/// Example: "osmosis"
host_chain: TruncatedChainId,
/// Actions on the account that will be executed after successful transfer
/// Encoded with base64 to allow different versions of the account
/// Note: ibc-client have to be whitelisted
actions: Vec<Binary>,
},
/// Only callable by Account
/// Register an Account on a remote chain over IBC
/// This action creates a account for them on the remote chain.
Register {
/// host chain to be executed on
/// Example: "osmosis"
host_chain: TruncatedChainId,
namespace: Option<String>,
install_modules: Vec<ModuleInstallConfig>,
},
/// Only callable by Account Module
// ANCHOR: module-ibc-action
ModuleIbcAction {
/// host chain to be executed on
/// Example: "osmosis"
host_chain: TruncatedChainId,
/// Module of this account on host chain
target_module: ModuleInfo,
/// Json-encoded IbcMsg to the target module
msg: Binary,
/// Callback info to identify the callback that is sent (acts similar to the reply ID)
callback: Option<Callback>,
},
/// Only callable by Account Module
// ANCHOR_END: module-ibc-action
IbcQuery {
/// host chain to be executed on
/// Example: "osmosis"
host_chain: TruncatedChainId,
/// Cosmos Query requests
queries: Vec<QueryRequest<ModuleQuery>>,
/// Callback info to identify the callback that is sent (acts similar to the reply ID)
callback: Callback,
},
/// Only callable by Account
/// Action on remote ibc host
/// Which currently only support account messages
RemoteAction {
/// host chain to be executed on
/// Example: "osmosis"
host_chain: TruncatedChainId,
/// execute the custom host function
action: HostAction,
},
/// Owner method: Remove connection for remote chain
RemoveHost { host_chain: TruncatedChainId },
/// Callback from the Polytone implementation
/// This is triggered regardless of the execution result
Callback(polytone_callbacks::CallbackMessage),
}
/// Copy of [polytone_note::msg::ExecuteMsg](https://docs.rs/polytone-note/1.0.0/polytone_note/msg/enum.ExecuteMsg.html)
#[cosmwasm_schema::cw_serde]
pub enum PolytoneNoteExecuteMsg {
/// Performs the requested queries on the voice chain and returns
/// a callback of Vec<QuerierResult>, or ACK-FAIL if unmarshalling
/// any of the query requests fails.
Query {
msgs: Vec<QueryRequest<Empty>>,
callback: polytone_callbacks::CallbackRequest,
timeout_seconds: Uint64,
},
/// Executes the requested messages on the voice chain on behalf
/// of the note chain sender. Message receivers can return data in
/// their callbacks by calling `set_data` on their `Response`
/// object. Optionally, returns a callback of `Vec<Callback>` where
/// index `i` corresponds to the callback for `msgs[i]`.
///
/// Accounts are created on the voice chain after the first call
/// to execute by the local address. To create an account, but
/// perform no additional actions, pass an empty list to
/// `msgs`. Accounts are queryable via the `RemoteAddress {
/// local_address }` query after they have been created.
Execute {
msgs: Vec<CosmosMsg<Empty>>,
callback: Option<polytone_callbacks::CallbackRequest>,
timeout_seconds: Uint64,
},
}
/// This enum is used for sending callbacks to the note contract of the IBC client
#[cosmwasm_schema::cw_serde]
pub enum IbcClientCallback {
ModuleRemoteAction {
sender_address: String,
callback: Callback,
initiator_msg: Binary,
},
ModuleRemoteQuery {
sender_address: String,
callback: Callback,
queries: Vec<QueryRequest<ModuleQuery>>,
},
CreateAccount {
account_id: AccountId,
},
WhoAmI {},
}
/// This is used for identifying calling modules
/// For adapters, we don't need the account id because it's independent of an account
/// For apps and standalone, the account id is used to identify the calling module
#[cosmwasm_schema::cw_serde]
pub struct InstalledModuleIdentification {
pub module_info: ModuleInfo,
pub account_id: Option<AccountId>,
}
#[cosmwasm_schema::cw_serde]
pub struct ModuleAddr {
pub reference: ModuleReference,
pub address: Addr,
}
impl InstalledModuleIdentification {
pub fn addr(
&self,
deps: Deps,
registry: RegistryContract,
) -> Result<ModuleAddr, AbstractError> {
let target_module_resolved =
registry.query_module(self.module_info.clone(), &deps.querier)?;
let no_account_id_error =
StdError::generic_err("Account id not specified in installed module definition");
let target_addr = match &target_module_resolved.reference {
ModuleReference::Account(code_id) => {
let target_account_id = self.account_id.clone().ok_or(no_account_id_error)?;
let account = registry.account(&target_account_id, &deps.querier)?;
if deps
.querier
.query_wasm_contract_info(account.addr().as_str())?
.code_id
== *code_id
{
account.into_addr()
} else {
Err(StdError::generic_err(
"Account contract doesn't correspond to code id of the account",
))?
}
}
ModuleReference::Native(addr)
| ModuleReference::Adapter(addr)
| ModuleReference::Service(addr) => addr.clone(),
ModuleReference::App(_) | ModuleReference::Standalone(_) => {
let target_account_id = self.account_id.clone().ok_or(no_account_id_error)?;
let account = registry.account(&target_account_id, &deps.querier)?;
let module_info: account::ModuleAddressesResponse = deps.querier.query_wasm_smart(
account.into_addr(),
&account::QueryMsg::ModuleAddresses {
ids: vec![self.module_info.id()],
},
)?;
module_info
.modules
.first()
.ok_or(AbstractError::AppNotInstalled(self.module_info.to_string()))?
.1
.clone()
}
};
Ok(ModuleAddr {
reference: target_module_resolved.reference,
address: target_addr,
})
}
}
#[cosmwasm_schema::cw_serde]
#[derive(QueryResponses, cw_orch::QueryFns)]
pub enum QueryMsg {
/// Queries the ownership of the ibc client contract
/// Returns [`cw_ownable::Ownership<Addr>`]
#[returns(cw_ownable::Ownership<Addr> )]
Ownership {},
/// Returns config
/// Returns [`ConfigResponse`]
#[returns(ConfigResponse)]
Config {},
/// Returns the host information associated with a specific chain-name (e.g. osmosis, juno)
/// Returns [`HostResponse`]
#[returns(HostResponse)]
Host { chain_name: TruncatedChainId },
/// Get list of remote accounts
/// Returns [`ListAccountsResponse`]
#[returns(ListAccountsResponse)]
ListAccounts {
start: Option<(AccountId, String)>,
limit: Option<u32>,
},
/// Get remote account address for one chain
/// Returns [`AccountResponse`]
#[returns(AccountResponse)]
#[cw_orch(fn_name("remote_account"))]
Account {
chain_name: TruncatedChainId,
account_id: AccountId,
},
/// Get the hosts
/// Returns [`ListRemoteHostsResponse`]
#[returns(ListRemoteHostsResponse)]
ListRemoteHosts {},
/// Get the Polytone execution proxies
/// Returns [`ListRemoteProxiesResponse`]
#[returns(ListRemoteProxiesResponse)]
ListRemoteProxies {},
/// Get the IBC execution proxies based on the account id passed
/// Returns [`ListRemoteAccountsResponse`]
#[returns(ListRemoteAccountsResponse)]
ListRemoteAccountsByAccountId { account_id: AccountId },
/// Get the IBC counterparts connected to this abstract ibc client
/// Returns [`ListIbcInfrastructureResponse`]
#[returns(ListIbcInfrastructureResponse)]
ListIbcInfrastructures {},
}
#[cosmwasm_schema::cw_serde]
pub enum SudoMsg {
/// For IBC hooks acknoledgments
#[serde(rename = "ibc_lifecycle_complete")]
IBCLifecycleComplete(IBCLifecycleComplete),
}
#[cosmwasm_schema::cw_serde]
pub struct ConfigResponse {
pub ans_host: Addr,
pub registry_address: Addr,
}
#[cosmwasm_schema::cw_serde]
pub struct ListAccountsResponse {
pub accounts: Vec<(AccountId, TruncatedChainId, String)>,
}
#[cosmwasm_schema::cw_serde]
pub struct ListRemoteHostsResponse {
pub hosts: Vec<(TruncatedChainId, String)>,
}
#[cosmwasm_schema::cw_serde]
pub struct ListRemoteAccountsResponse {
pub accounts: Vec<(TruncatedChainId, Option<String>)>,
}
pub type ListRemoteProxiesResponse = ListRemoteAccountsResponse;
#[cosmwasm_schema::cw_serde]
pub struct ListIbcInfrastructureResponse {
pub counterparts: Vec<(TruncatedChainId, IbcInfrastructure)>,
}
#[cosmwasm_schema::cw_serde]
pub struct HostResponse {
pub remote_host: String,
pub remote_polytone_proxy: Option<String>,
}
#[cosmwasm_schema::cw_serde]
pub struct AccountResponse {
pub remote_account_addr: Option<String>,
}
#[cfg(test)]
mod tests {
use cosmwasm_std::{to_json_binary, CosmosMsg, Empty};
use crate::app::ExecuteMsg;
use crate::ibc::{Callback, IbcResponseMsg, IbcResult};
// ... (other test functions)
#[coverage_helper::test]
fn test_response_msg_to_callback_msg() {
let receiver = "receiver".to_string();
let result = IbcResult::FatalError("ibc execution error".to_string());
let response_msg = IbcResponseMsg {
callback: Callback::new(&String::from("15")).unwrap(),
result,
};
let actual: CosmosMsg<Empty> = response_msg
.clone()
.into_cosmos_msg(receiver.clone())
.unwrap();
assert_eq!(
actual,
CosmosMsg::Wasm(cosmwasm_std::WasmMsg::Execute {
contract_addr: receiver,
// we can't test the message because the fields in it are private
msg: to_json_binary(&ExecuteMsg::<Empty>::IbcCallback(response_msg)).unwrap(),
funds: vec![],
})
)
}
}