Updated CFD contracts schema

Version 0.18.9
This commit is contained in:
Mikhail Gladchenko
2023-04-10 08:53:24 +01:00
parent 9c9b21b588
commit 6edfef33a9
2 changed files with 2 additions and 1 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "@orionprotocol/sdk",
"version": "0.18.8",
"version": "0.18.9",
"description": "Orion Protocol SDK",
"main": "./lib/index.cjs",
"module": "./lib/index.js",

View File

@@ -14,6 +14,7 @@ const cfdContractsSchema = z.array(z.object({
priceIndex: z.number(),
feePercent: z.number(),
withdrawMarginLevel: z.number(),
delegateContractAddress: z.string(),
}));
export default cfdContractsSchema;