README.md (5806B)
1 # erc20-pool 2 3 A token pool implementation that allows _deposits_ in the form of _liquidity donations_, and _withdrawals_ in the form of _token swaps_. 4 5 It satisfies the [CIC TokenSwap](https://git.grassecon.net/cicnet/cic-contracts/#tokenswap) interface. 6 7 8 ## Synopsis 9 10 | agent | action | agent change | pool change | 11 |---|---|---|---| 12 | alice | deposit(FOO, 1000000) | -1000000 FOO | +1000000 FOO | 13 | bob | withdraw(FOO, BAR, 1000) | -1000 BAR, +1000 FOO | +1000 BAR, -1000 FOO | 14 | alice | withdraw(BAR, FOO, 1000) | +1000 BAR, -1000 FOO | -1000 BAR, +1000 FOO | 15 16 17 ## Publishing the contract 18 19 There are five constructor arguments. 20 21 The first three, `name`, `symbol` and `decimals` have matching getter methods, are analogous to the ERC20 methods of the same name. 22 23 The `tokenRegistry` parameter takes an address to a smart contract controlling which tokens are allowed in the pool. See "Token approval" below. A value of `address(0x0)` deactivates this control, and allows the pool to hold all tokens by default (although they may still be subject to value limits). 24 25 The `tokenLimiter` parameter takes an address to a smart contract controlling value limits of tokens in the pool. See "Token limits" below. A value of `address(0x0)` deactivates this control, and allows any value of (approved) tokens to be held by the pool. 26 27 28 ### Token approval 29 30 By specifying a non-zero contract address for the `tokenRegistry` property that implements the [CIC ACL](https://git.grassecon.net/cicnet/cic-contracts/#acl) interface, that contract can be used to allow and disallow which tokens can be used as input tokens to `deposit()` and `withdraw()`. 31 32 Tokens that are disallowed while the pool still holds a balance can still be withdrawn in full. 33 34 35 ### Token limits 36 37 By specifying a non-zero contract address for the `tokenRegistry` property that implements the [CIC TokenLimit](https://git.grassecon.net/cicnet/cic-contracts/#tokenlimit) interface, that contract can be used to control the value limit allowed for each token in the pool. 38 39 Tokens that are limited below the current balance held by the pool can still be withdrawn. Once the balance goes below the limit, additional tokens values may again be swapped, up to the limit. 40 41 42 #### Using limiter as registry 43 44 The [erc20-limiter](https://holbrook.no/src/erc20-limiter/log.html) repository contains the smart contract implementation `LimiterIndex.sol`. This uses the token limit state to satisfy the [CIC ACL](https://git.grassecon.net/cicnet/cic-contracts/#acl) interface. Specifically, any token limit higher than 0 will be defined as allowed. 45 46 This enables to publisher to use the same smart contract for both constructor arguments `tokenRegistry` and `tokenLimiter`. 47 48 49 ## Swapping tokens 50 51 The method used to execute token swaps is `withdraw(outToken, inToken, value)`. 52 53 The `value` argument refers to the value of `inToken` that will be transferred to the pool contract, in exchange for some value of `outToken` (see below). 54 55 In order to successfully execute the swap, an ERC20 "approval" must exist for the pool contract to spend at least the value of `inToken` specified by the `value` argument. 56 57 58 ### Handling values 59 60 The pool contract does no checking whatsoever regarding the sanity of allowing tokens in the pool. 61 62 It is therefore the responsibility of the maintainer of the list of allowed tokens to ensure that tokens in the pool are exchangeable in a sensible way. 63 64 Some obvious concerns are: 65 66 - Tokens are swapped denominated in their smallest unit (regardless of "decimals"). 67 - The unit of account of the tokens may differ. 68 - The value of the tokens in relation to unit of account may differ. 69 - The tokens may be subject to different rates of change. 70 71 72 ### Providing quotes 73 74 Using the `setQuoter()` method, a smart contract address can be defined that translates value between tokens when exchanging tokens in the pool. 75 76 The value returned from the "quoter" is the value of output tokens that will be received in return for the value of input tokens specified. 77 78 The "quoter" smart contract must satisfy the [CIC TokenQuote](https://git.grassecon.net/cicnet/cic-contracts/#tokenquote) interface. 79 80 An example quoter contract `DecimalQuote.sol` can be found in this repository. The contract translates values according to the decimal count reported by the respective ERC20 tokens. 81 82 83 ## Fees 84 85 Using the `setFee` method, a fee may be specified, in parts-per-million, to be deducted from each token swap. 86 87 _From the moment the fee has changed_, the fee will be deducted from the input token _before_ the value is sent to the "quoter" (if defined). 88 89 Fee is defined in _parts-per-million_, i.e. `1000000` equals `100%`. Any value less than `1000000` is valid. 90 91 92 ### Fee recipient 93 94 By default, all deducted fees are credited to the pool contract. 95 96 Using the `setFeeAddress` method, an external beneficiary for the fees may be defined. That beneficiary will be eligible to receive all fees pending external payment _from that moment on_. 97 98 **Important!** Note that this does also include any fees that were not already claimed by a previous beneficiary. 99 100 101 #### Withdrawing fees 102 103 Fees to be paid externally are accounted for internally in the contract, and may be withdrawn at any time using either the `withdraw(outToken)` or `withdraw(outToken, value)` method. 104 105 Note the difference between the fee withdrawal methods, and the method signature from the exchange method: `withdraw(outToken, inToken, value)`. 106 107 108 ## Sealing contract properties 109 110 The contract implements the [CIC Seal](https://git.grassecon.net/cicnet/cic-contracts/#seal) interface for the following properties: 111 112 - Fee value 113 - Fee address 114 - Quoter contract address 115 116 Sealing allowed token lists and/or their respective value limits is the responsibility of the provider contracts themselves.