swapable
Version:
Swapable: Automated Liquidity Pools
19 lines (18 loc) • 589 B
TypeScript
/**
* 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
*/
export interface Reader {
/**
* @description The endpoint URL. This URL shall point to the network
* node that is used to READ data about swapable assets.
*
* @example https://node.ubc.digital:3000
* @example xml+rpc://bitcoin.ubc.digital:1234
*/
gatewayUrl: string;
}