BotanaryBotanary
Money

Money

Send, swap, trade, and manage your funds - every action follows the same build, preview, sign, relay flow.

Money covers everything you do with the funds already in your account: sending them, swapping one token for another, trading on the Markets surface, and the day-to-day actions around managing what you hold. All four follow the same shape - the backend builds an unsigned operation, previews it, you sign it client-side, and only then does it get relayed. Botanary never signs on your behalf and never holds a key that could.

The four actions

  • Send - move funds to one or more recipients in a single, one-signature operation.
  • Swap - exchange one token for another, same-chain or cross-chain, via a quoted route.
  • Trade - buy and sell on the Markets surface, built on the exact same path as Swap.
  • Manage - the account-level actions around your funds, like receiving and keeping tabs on what you hold.

Previewed before you ever sign

Every one of these calls the account's own on-chain policy hook to simulate the action before handing back a signable operation. If that simulation says your rules would refuse it, the build fails outright with a named reason - you're never handed something to sign that was already known to fail. See Simulation for exactly what gets checked.

A build that would fail your account's own rules never reaches you as something to sign. What you sign is always exactly what was previewed.

Paying for gas

None of these four actions require you to hold the chain's native gas token to use them - Botanary can pay a transaction's fee out of a stablecoin you're already holding instead. See Gas for how that works and which methods are available on a given chain.

On this page