This repository was archived by the owner on Oct 6, 2022. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4040PAIR_WETH_USDC = 'WETH-USDC'
4141PAIR_DAI_USDC = 'DAI-USDC'
4242PAIR_PBTC_USDC = 'PBTC-USDC'
43+ PAIR_WETH_PUSD = 'WETH_PUSD'
4344
4445DECIMALS_WETH = 18
4546DECIMALS_SAI = 18
5758SMALL_TRADE_SIZE_DAI = 10000 * (10 ** DECIMALS_DAI )
5859SMALL_TRADE_SIZE_PBTC = 0.5 * (10 ** DECIMALS_PBTC )
5960FEE_SMALL_WETH = Decimal (100 ) * FROM_BIPS
60- FEE_LARGE_WETH = Decimal (15 ) * FROM_BIPS
61+ FEE_LARGE_WETH = Decimal (100 ) * FROM_BIPS
6162FEE_SMALL_DAI = Decimal (100 ) * FROM_BIPS
62- FEE_LARGE_DAI = Decimal (5 ) * FROM_BIPS
63- FEE_LARGE_PBTC = Decimal (7.5 ) * FROM_BIPS
64- FEE_SMALL_PBTC = Decimal (50 ) * FROM_BIPS
65- FEE_MAKER_PBTC = Decimal (- 2.5 ) * FROM_BIPS
63+ FEE_LARGE_DAI = Decimal (100 ) * FROM_BIPS
64+ FEE_LARGE_PBTC = Decimal (100 ) * FROM_BIPS
65+ FEE_SMALL_PBTC = Decimal (100 ) * FROM_BIPS
66+ FEE_MAKER_PBTC = Decimal (100 ) * FROM_BIPS
67+ FEE_LARGE_WETH_PUSD = Decimal (100 ) * FROM_BIPS
68+ FEE_SMALL_WETH_PUSD = Decimal (100 ) * FROM_BIPS
69+ FEE_MAKER_WETH_PUSD = Decimal (100 ) * FROM_BIPS
6670FEE_ZERO = Decimal (0 )
6771
6872# ------------ Transaction Constants ------------
Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ def _additional_matcher(request):
9494 assert order ['amount' ] == str (args ['amount' ])
9595 assert order ['limitPrice' ] == str (args ['limitPrice' ])
9696 assert order ['triggerPrice' ] == '0'
97- assert order ['limitFee' ] == '0.00075 '
97+ assert order ['limitFee' ] == '0.01 '
9898 assert order ['maker' ] == client .public_address
9999 assert order ['taker' ] == consts .TAKER_ACCOUNT_OWNER
100100 assert abs (
You can’t perform that action at this time.
0 commit comments