Add missing field on builder

Signed-off-by: microwavedcola1 <microwavedcola@gmail.com>
This commit is contained in:
microwavedcola1 2023-03-20 08:57:27 +01:00
parent f381147bf6
commit 6406b61d6a
1 changed files with 2 additions and 0 deletions

View File

@ -171,6 +171,7 @@ export interface IxGateParams {
TokenRegisterTrustless: boolean;
TokenUpdateIndexAndRate: boolean;
TokenWithdraw: boolean;
AccountSettleFeesWithMngo: boolean;
}
// Default with all ixs enabled, use with buildIxGate
@ -226,6 +227,7 @@ export const TrueIxGateParams: IxGateParams = {
TokenRegisterTrustless: true,
TokenUpdateIndexAndRate: true,
TokenWithdraw: true,
AccountSettleFeesWithMngo: true,
};
// build ix gate e.g. buildIxGate(Builder(TrueIxGateParams).TokenDeposit(false).build()).toNumber(),