diff --git a/package.json b/package.json index 38a21ae..fe8c153 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/src/services/OrionBlockchain/schemas/cfdContractsSchema.ts b/src/services/OrionBlockchain/schemas/cfdContractsSchema.ts index 975f27f..225bc47 100644 --- a/src/services/OrionBlockchain/schemas/cfdContractsSchema.ts +++ b/src/services/OrionBlockchain/schemas/cfdContractsSchema.ts @@ -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;