@argonprotocol/testing 1.4.10-dev.925a902e → 1.4.10-dev.963363dc
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/dev.docker-compose.yml +1 -1
- package/lib/index.cjs +11 -8
- package/lib/index.cjs.map +1 -1
- package/lib/index.js +11 -8
- package/lib/index.js.map +1 -1
- package/package.json +2 -2
package/lib/index.js
CHANGED
|
@@ -2007,14 +2007,17 @@ var TestMintingAuthorityActor = class {
|
|
|
2007
2007
|
);
|
|
2008
2008
|
const currentTick = await this.harness.mainchainClient.query.ticks.currentTick();
|
|
2009
2009
|
await this.harness.submit(
|
|
2010
|
-
this.harness.mainchainClient.tx.priceIndex.submit(
|
|
2011
|
-
|
|
2012
|
-
|
|
2013
|
-
|
|
2014
|
-
|
|
2015
|
-
|
|
2016
|
-
|
|
2017
|
-
|
|
2010
|
+
this.harness.mainchainClient.tx.priceIndex.submit(
|
|
2011
|
+
{
|
|
2012
|
+
btcUsdPrice: toFixedNumber(6e4, 18),
|
|
2013
|
+
argonotUsdPrice: toFixedNumber(1, 18),
|
|
2014
|
+
argonUsdPrice: toFixedNumber(1, 18),
|
|
2015
|
+
argonUsdTargetPrice: toFixedNumber(1, 18),
|
|
2016
|
+
argonTimeWeightedAverageLiquidity: toFixedNumber(1e6, 18),
|
|
2017
|
+
tick: currentTick.toBigInt()
|
|
2018
|
+
},
|
|
2019
|
+
null
|
|
2020
|
+
),
|
|
2018
2021
|
this.operator
|
|
2019
2022
|
);
|
|
2020
2023
|
await this.harness.submit(
|