diff --git a/bindings/nodejs/lib/types/block/core/basic.ts b/bindings/nodejs/lib/types/block/core/basic.ts index ebacff0de6..fd107e9eb0 100644 --- a/bindings/nodejs/lib/types/block/core/basic.ts +++ b/bindings/nodejs/lib/types/block/core/basic.ts @@ -5,6 +5,7 @@ import { Payload, PayloadDiscriminator } from '../payload'; import { Type } from 'class-transformer'; import { StrongParents, WeakParents, ShallowLikeParents } from '../parents'; import { Block } from './block'; +import { u64 } from '../../utils'; /** * Basic Block layout. @@ -33,5 +34,5 @@ export class BasicBlock extends Block { * The amount of mana the Account identified by IssuerID is at most * willing to burn for this block. */ - readonly burnedMana!: string; + readonly burnedMana!: u64; }