diff --git a/ts/sdk/src/types/jit_proxy.ts b/ts/sdk/src/types/jit_proxy.ts index d5e8a331..9193b5d2 100644 --- a/ts/sdk/src/types/jit_proxy.ts +++ b/ts/sdk/src/types/jit_proxy.ts @@ -189,6 +189,9 @@ export type JitProxy = { }, { name: 'TryPostOnly'; + }, + { + name: 'Slide'; } ]; }; @@ -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'; } ]; }; @@ -458,6 +471,9 @@ export const IDL: JitProxy = { { name: 'TryPostOnly', }, + { + name: 'Slide', + }, ], }, }, @@ -531,5 +547,15 @@ export const IDL: JitProxy = { name: 'UnprofitableArb', msg: 'UnprofitableArb', }, + { + code: 6008, + name: 'PositionLimitBreached', + msg: 'PositionLimitBreached', + }, + { + code: 6009, + name: 'NoFill', + msg: 'NoFill', + }, ], };