Skip to content

Commit

Permalink
fix: update type definition for lockedAccounts in TokenSupplyResult
Browse files Browse the repository at this point in the history
  • Loading branch information
cfaur09 committed Nov 4, 2024
1 parent c9cbb61 commit 396b554
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/endpoints/tokens/entities/token.supply.result.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ export class TokenSupplyResult {
@ApiProperty({ name: 'Initial minted details', type: String })
initialMinted: string | number | undefined;

@ApiProperty({ name: 'Esdt locked accounts details', type: [EsdtLockedAccount], isArray: true })
@ApiProperty({ name: 'Esdt locked accounts details', type: EsdtLockedAccount, isArray: true })
lockedAccounts: EsdtLockedAccount[] | undefined = undefined;
}

0 comments on commit 396b554

Please sign in to comment.