Skip to content

Commit

Permalink
update idl
Browse files Browse the repository at this point in the history
  • Loading branch information
crispheaney committed Jan 23, 2024
1 parent 846c758 commit 00a0386
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions ts/sdk/src/types/jit_proxy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,9 @@ export type JitProxy = {
},
{
name: 'TryPostOnly';
},
{
name: 'Slide';
}
];
};
Expand Down Expand Up @@ -262,6 +265,16 @@ export type JitProxy = {
code: 6007;
name: 'UnprofitableArb';
msg: 'UnprofitableArb';
},
{
code: 6008;
name: 'PositionLimitBreached';
msg: 'PositionLimitBreached';
},
{
code: 6009;
name: 'NoFill';
msg: 'NoFill';
}
];
};
Expand Down Expand Up @@ -458,6 +471,9 @@ export const IDL: JitProxy = {
{
name: 'TryPostOnly',
},
{
name: 'Slide',
},
],
},
},
Expand Down Expand Up @@ -531,5 +547,15 @@ export const IDL: JitProxy = {
name: 'UnprofitableArb',
msg: 'UnprofitableArb',
},
{
code: 6008,
name: 'PositionLimitBreached',
msg: 'PositionLimitBreached',
},
{
code: 6009,
name: 'NoFill',
msg: 'NoFill',
},
],
};

0 comments on commit 00a0386

Please sign in to comment.