diff --git a/packages/sdk/src/core/event-logger.ts b/packages/sdk/src/core/event-logger.ts index 792d4000d1..62c14e55fb 100644 --- a/packages/sdk/src/core/event-logger.ts +++ b/packages/sdk/src/core/event-logger.ts @@ -11,10 +11,11 @@ import { import { normalizeAttribute } from './normalization.js' import { MapStateStorage } from '@sentio/runtime' import { BN } from 'fuels' +import { BigDecimal } from '@sentio/bigdecimal' export interface Attribute { [key: string]: Exclude< - T | number | bigint | string | boolean | LogLevel | Attribute | BN | undefined, + T | number | bigint | string | boolean | LogLevel | Attribute | BN | BigDecimal | undefined, Promise > }