@dolomite-exchange/dolomite-margin 0.1.2 → 0.1.3
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/{dist/contracts → contracts}/protocol/Admin.sol +0 -0
- package/{dist/contracts → contracts}/protocol/DolomiteMargin.sol +0 -0
- package/{dist/contracts → contracts}/protocol/Getters.sol +0 -0
- package/{dist/contracts → contracts}/protocol/Operation.sol +0 -0
- package/{dist/contracts → contracts}/protocol/Permission.sol +0 -0
- package/{dist/contracts → contracts}/protocol/State.sol +0 -0
- package/{dist/contracts → contracts}/protocol/impl/AdminImpl.sol +0 -0
- package/{dist/contracts → contracts}/protocol/impl/LiquidateOrVaporizeImpl.sol +0 -0
- package/{dist/contracts → contracts}/protocol/impl/OperationImpl.sol +0 -0
- package/{dist/contracts → contracts}/protocol/impl/artifacts/OperationImpl.json +0 -0
- package/{dist/contracts → contracts}/protocol/impl/artifacts/OperationImpl_metadata.json +0 -0
- package/{dist/contracts → contracts}/protocol/interfaces/IAutoTrader.sol +0 -0
- package/{dist/contracts → contracts}/protocol/interfaces/ICallee.sol +0 -0
- package/{dist/contracts → contracts}/protocol/interfaces/IDolomiteMargin.sol +0 -0
- package/{dist/contracts → contracts}/protocol/interfaces/IERC20.sol +0 -0
- package/{dist/contracts → contracts}/protocol/interfaces/IExchangeWrapper.sol +0 -0
- package/{dist/contracts → contracts}/protocol/interfaces/IInterestSetter.sol +0 -0
- package/{dist/contracts → contracts}/protocol/interfaces/ILiquidationCallback.sol +0 -0
- package/{dist/contracts → contracts}/protocol/interfaces/IPriceOracle.sol +0 -0
- package/{dist/contracts → contracts}/protocol/interfaces/IRecyclable.sol +0 -0
- package/{dist/contracts → contracts}/protocol/lib/Account.sol +0 -0
- package/{dist/contracts → contracts}/protocol/lib/Actions.sol +0 -0
- package/{dist/contracts → contracts}/protocol/lib/Cache.sol +0 -0
- package/{dist/contracts → contracts}/protocol/lib/Decimal.sol +0 -0
- package/{dist/contracts → contracts}/protocol/lib/EnumerableSet.sol +0 -0
- package/{dist/contracts → contracts}/protocol/lib/Events.sol +0 -0
- package/{dist/contracts → contracts}/protocol/lib/Exchange.sol +0 -0
- package/{dist/contracts → contracts}/protocol/lib/Interest.sol +0 -0
- package/{dist/contracts → contracts}/protocol/lib/Math.sol +0 -0
- package/{dist/contracts → contracts}/protocol/lib/Monetary.sol +0 -0
- package/{dist/contracts → contracts}/protocol/lib/Require.sol +0 -0
- package/{dist/contracts → contracts}/protocol/lib/Storage.sol +0 -0
- package/{dist/contracts → contracts}/protocol/lib/Time.sol +0 -0
- package/{dist/contracts → contracts}/protocol/lib/Token.sol +0 -0
- package/{dist/contracts → contracts}/protocol/lib/Types.sol +0 -0
- package/package.json +3 -3
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dolomite-exchange/dolomite-margin",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Ethereum Smart Contracts and TypeScript library used for the DolomiteMargin trading protocol",
|
|
5
5
|
"main": "dist/src/index.js",
|
|
6
6
|
"types": "dist/src/index.d.ts",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"dist/build/wrappers/",
|
|
10
10
|
"dist/src/",
|
|
11
11
|
"build/contracts",
|
|
12
|
-
"
|
|
12
|
+
"contracts/protocol",
|
|
13
13
|
"LICENSE",
|
|
14
14
|
"README.md"
|
|
15
15
|
],
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"coverage": "node scripts/coverage.js",
|
|
37
37
|
"node": "ganache-cli",
|
|
38
38
|
"debug": "truffle debug",
|
|
39
|
-
"build:js": "rm -rf dist/ && node --max-old-space-size=8192 node_modules/.bin/tsc && cp -r build/wrappers dist/build
|
|
39
|
+
"build:js": "rm -rf dist/ && node --max-old-space-size=8192 node_modules/.bin/tsc && cp -r build/wrappers dist/build",
|
|
40
40
|
"build:cov": "npm run copy_all && npm run clean_contract_json && npm run build:wrappers && npm run build:test_wrappers",
|
|
41
41
|
"docker_node": "ganache-cli -i 1313 -d -p 8545 -h 0.0.0.0 --db=/home/.ganache",
|
|
42
42
|
"clean_contract_json": "ts-node ./scripts/CleanBuild.ts",
|