Skip to main content

Introduction

Intents contain actions and predefined conditions, which determine how actions are processed. In crypto, we want to execute actions with no counterparty risk and in a permissionless and decentralized manner. This has so far only been possible by directly sending transactions to the destination chain. With Intento, you will be able specify your intent to perform any action, anywhere at any moment given any conditions.

Intent-based action flows are submitted by providing an interval, duration, end time, and optional start time in a MsgSubmitFlow, IBC-specific settings such as the ConnectionID or a HostedAccount, and conditions such as comparisons and feedback loops.

A flow on Intento in technical terms is an object containing messages that are triggered at a specified time, or recurringly with intervals, with conditions such as feedback loops, stops and comparisons. Flow trigger entries are scheduled, and checked at the beginning of a new block.

In the illustration below you can see several examples of how flows can look like. Example flows

Interchain Accounts are a key component of Intento. They allow for the secure management of assets across different IBC-connected chains. This means that Intento's Intents can execute actions on other chains based on custom logic, making them extremely versatile and useful for a wide range of applications. With this, you can execute Cosmos SDK blockchain messages such as:

  • MsgSend for token transfers
  • MsgSwapExactAmountIn for token swapping on Osmosis
  • MsgWithdrawDelegatorReward token reward claiming and auto compounding
  • MsgExecuteContract to execute a CosmWasm contract
  • MsgInstantiateContract to instantiate a CosmWasm contract

Approaches for Executing Messages on Other Chains

Intento can execute messages on other chains using several approaches:

  1. ICS20 Transfers with a Memo
    • Easy to set up on available chains by using packet forwarding
    • Memo field actions have limited support by chains
  2. Hosted Interchain Accounts
    • Easy to set up and manage
    • Host chain fees are managed by an admin
    • You configure a fee limit
  3. Self-Hosted Interchain Accounts
    • Full control over the account
    • You have to manage host chain fee balances yourself

To use Self-Hosted Interchain Accounts, you first register an interchain account. This involves creating a port ID and connection ID, which allows you to connect their account to other chains over IBC. You additionaly have to send funds for fees on the host chain. Using the Authz module on the host chain - the chain you want to execute at - you can grant the flow permission to execute a specific message.

MsgSubmitFlow

Submitting an flow with MsgSubmitFlow can be done with the following input:

Field NameData TypeDescriptionoptional
OwnerstringThe owner of the flow
Msgsrepeated google.protobuf.AnyA list of arbitrary messages to include in the flow
DurationstringThe amount of time that the flow should run for
LabelstringA label for the flow✔️
StartAtuint64A Unix timestamp representing the custom start time for execution (if set after block inclusion)✔️
IntervalstringThe interval between automatic message calls✔️
FeeFundsrepeated cosmos.base.v1beta1.CoinOptional funds to be used for transaction fees, limiting the amount of fees incurred✔️
ConnectionIDstringThe ID of the connection to use for a self-hosted ICA✔️
HostConnectionIDstringThe ID of the host chain connection to use for a self-hosted ICA✔️
HostedAccountstringHosted ICA account that executes on a host chain on your behalf ✔️
HostedAccountFeeLimitcosmos.base.v1beta1.CoinA limit of the fees a hosted account can charge per execution✔️
ConfigurationExecutionConfigurationOptional set of basic conditions and settings✔️
Conditionsrepeated ConditionPowerful set of conditions such as comparisons and feedback loops✔️

Notes

  • When Interval is not provided, the end of the duration will be the time the flow executes.
  • When FeeFunds are not provided, fees can be deducted from the Owner account by setting FallbackToOwnerBalance to true in Configuration.
  • When ConnectionID,HostConnectionID and HostedAccount are not provided, it is assumed that Msgs are local messages to be executed on Intento.
  • HostedAccount requires HostedAccountFeeLimit

Flow History

The Flow History captures the timeline and details of every executed flow and it's messages, providing transparency and accountability. By tracking scheduled times, actual execution times, outcomes, and errors, flows can be monitored and acted upon.

Anatomy of an Flow History Entry

FieldDescription
scheduled_exec_timeSpecifies the time at which the flow was originally scheduled for execution.
actual_exec_timeThe time at which the flow was actually triggered. This provides insight into delays or on-time performance.
exec_feeThe fee incurred for executing the flow. This is represented as a Coin object and is non-nullable.
executedA boolean flag indicating whether all messages within the flow were executed, regardless of the outcome.
timed_outA boolean flag that specifies if the flow timed out during execution over IBC.
errorsA list of error messages encountered during the execution. If empty, the execution was successful.
msg_responsesA collection of responses for the executed messages. This field remains empty if save_responses is set to false.
query_responsesContains responses to any queries performed. This field is also empty if save_responses is false.

Execution Process

A high level overview of the process from flow submission to triggering messages across chains.

  1. Submit an flow using MsgSubmitFlow - if fee funds are sent along with it, a new fee address is generated
  2. Chain checks if execution settings from Conditions are ok.
  3. An Intento Flow is inserted in a queue
  4. In each block, scheduled flows are retrieved given the current block time
  5. If set, comparisons are made with prior outputs and Interchain Queries and return true or false.
  6. Feedback Loops are checked. Message and and Interchain Query responses are inserted into messages.
  7. IBC transaction is sent and executed to the host chain
  8. If the flow is recurring, a new entry is inserted into the queue
  9. IBC Packet gets acknowledged by a relayer and the flow entry is updated
  10. Remaining funds sent to a flow fee account are returned to the flow owner