HomeVendure CoreMoreMoreMoneyDefaultMoneyStrategyOn this pageDefaultMoneyStrategy@vendure/coreSourcev2.0.0 A MoneyStrategy that stores monetary values as a int type in the database. The storage configuration and rounding logic replicates the behaviour of Vendure pre-2.0. Signatureclass DefaultMoneyStrategy implements MoneyStrategy { readonly moneyColumnOptions: ColumnOptions = { type: 'int', }; readonly precision: number = 2; round(value: number, quantity: = 1) => number;} Implements: MoneyStrategy moneyColumnOptionspropertyColumnOptionsprecisionpropertynumberroundmethod(value: number, quantity: = 1) => numberWas this chapter helpful?It was helpfulIt wasn't helpfulReport IssuePreviousBigIntMoneyStrategyNextMoney DecoratorEdited Jan 28, 2026ยทEdit this page