Skip to content

Commit

Permalink
traversal changes (#321)
Browse files Browse the repository at this point in the history
* traversal changes

* changelog

* address comment
  • Loading branch information
kelvinlau20100 authored Dec 13, 2023
1 parent 92a2c64 commit 716fdb9
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ Version changes are pinned to SDK releases.

## Unreleased

## [1.16.0]

- Add in IDL changes for tif order traversal. ([#321](https://github.com/zetamarkets/sdk/pull/321]))

## [1.15.3]

- Override asset loading for devnet ([#320](https://github.com/zetamarkets/sdk/pull/320))
Expand Down
5 changes: 5 additions & 0 deletions src/idl/zeta.json
Original file line number Diff line number Diff line change
Expand Up @@ -10242,6 +10242,11 @@
"code": 6157,
"name": "InvalidLiquidatorAuthority",
"msg": "Invalid liquidator authority"
},
{
"code": 6158,
"name": "IOCInvalidTakerFillSize",
"msg": "IOC size_to_use doesn't match taker fill size"
}
]
}
10 changes: 10 additions & 0 deletions src/types/zeta.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10242,6 +10242,11 @@ export type Zeta = {
"code": 6157,
"name": "InvalidLiquidatorAuthority",
"msg": "Invalid liquidator authority"
},
{
"code": 6158,
"name": "IOCInvalidTakerFillSize",
"msg": "IOC size_to_use doesn't match taker fill size"
}
]
};
Expand Down Expand Up @@ -20490,6 +20495,11 @@ export const IDL: Zeta = {
"code": 6157,
"name": "InvalidLiquidatorAuthority",
"msg": "Invalid liquidator authority"
},
{
"code": 6158,
"name": "IOCInvalidTakerFillSize",
"msg": "IOC size_to_use doesn't match taker fill size"
}
]
};

0 comments on commit 716fdb9

Please sign in to comment.