UNPKG

swapable

Version:
100 lines (99 loc) 4.04 kB
/** * This file is part of Swapable shared under AGPL-3.0 * Copyright (C) 2021 Using Blockchain Ltd, Reg No.: 12658136, United Kingdom * * @package Swapable * @author Grégory Saive for Using Blockchain Ltd <greg@ubc.digital> * @license AGPL-3.0 */ import { PublicAccount, Transaction } from 'symbol-sdk'; import { AllowanceResult, CommandOption } from '../../index'; import { Executable } from './Executable'; /** * @class Swapable.Swap * @package Swapable * @subpackage Commands * @since v1.0.0 * @description Class that describes a command for swapping assets * in automated liquidity pools (i.e. "swap"). * @summary * This automated pool command accepts the following arguments: * * | Argument | Description | Example | * | --- | --- | --- | * | trader | Trader | `new PublicAccount(...)` | * | input_x | Amount and asset identifier of `x` (first in pair) | `new AssetAmount(...)` | * | output | Asset identifier of `y` (second in pair). | `new AssetIdentifier(...)` | * * The execution of this command results in the creation of * the following list of transactions with their respective * *signer* and a description: * * | Sequence | Type | Signer | Description | * | --- | --- | --- | --- | * | 01 | TransferTransaction | Trader Account | Transfers the **input** currency to the **target** account. | * | 02 | TransferTransaction | Target Account | Transfers the **output** currency to the **trader** account. Note that the amount that is sent to the trader is automatically calculated. | * | 03 | TransferTransaction | Target Account | Adds an execution proof message sent to the **target** account. | * */ export declare class Swap extends Executable { /** * @access public * @description The list of **required** arguments to execute * *this* automated pool command. */ arguments: string[]; /** * Verifies **allowance** of \a actor to execute a command * with arguments \a argv. This method returns true if all * required arguments are present. * * This method asserts the presence of mandatory arguments. * * Additionally, this method asserts that amounts of assets * do not overflow in relation with available pool reserves. * * @access public * @param {PublicAccount} actor The actor is whom executes the command. * @param {Array<CommandOption>} argv The command options (arguments). * @return {AllowanceResult} Returns whether an actor is authorized to execute this command. * @throws {FailureMissingArgument} On missing mandatory argument(s). **/ canExecute(actor: PublicAccount, argv?: CommandOption[]): AllowanceResult; /** * This method returns the automated pool command name, * e.g. "CreatePool" or "AddLiquidity", etc. * * @access public * @return {string} **/ get name(): string; /** * This method MUST return a unique automated pool command * descriptor which includes: * * - the open standard descriptor (e.g.: "Swapable") ; * - the open standard *revision* (e.g.: 1) ; * - the kebab-case command name (e.g.: "create-pool") ; * - and the automated pool shares asset identifier. * * Items are joined with the `:` operator and attached to a * so-called execution proof transaction. * * @access public * @return {string} **/ get descriptor(): string; /** * This method returns a list of unsigned transactions in a * sequencial order of execution. The resulting transaction * array is later wrapped inside a digital contract that is * executed atomically such that either all transactions do * succeed or all transactions are cancelled. * * @see {execute()} * @access public * @return {Transaction[]} Given the execution of a command, returns a list of unsigned transactions. **/ protected get transactions(): Transaction[]; }