Skip to content

Commit

Permalink
fix(sui): be able to handle * address in account config (#1079)
Browse files Browse the repository at this point in the history
  • Loading branch information
zfy0701 authored Dec 11, 2024
1 parent bc74ed8 commit a3338a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/sdk/src/sui/sui-object-processor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export abstract class SuiBaseObjectOrAddressProcessor<HandlerType> {
if (options.ownerType === MoveOwnerType.TYPE) {
this.config = {
startCheckpoint: options.startCheckpoint || 0n,
address: accountTypeString(options.address),
address: options.address === '*' ? '*' : accountTypeString(options.address),
network: options.network || SuiNetwork.MAIN_NET,
baseLabels: options.baseLabels
}
Expand Down

0 comments on commit a3338a2

Please sign in to comment.