Skip to content

Commit

Permalink
fix: correct default spelling for baseToken
Browse files Browse the repository at this point in the history
  • Loading branch information
petarTxFusion committed Jan 17, 2025
1 parent 5b44b4e commit 1cf81a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/worker/src/token/token.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ export class TokenService {
l2Address: utils.L2_BASE_TOKEN_ADDRESS,
l1Address: this.configService.get<string>("tokens.baseToken.l1Address") ?? utils.ETH_ADDRESS,
symbol: this.configService.get<string>("tokens.baseToken.symbol") ?? "ETH",
name: this.configService.get<string>("tokens.baseToken.name") ?? "Ethereum",
name: this.configService.get<string>("tokens.baseToken.name") ?? "Ether",
decimals: this.configService.get<number>("tokens.baseToken.decimals") ?? 18,
iconURL: this.configService.get<string>("tokens.baseToken.iconUrl"),
});
Expand Down
2 changes: 1 addition & 1 deletion packages/worker/src/transaction/transaction.processor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ export class TransactionProcessor {
l2Address: utils.L2_BASE_TOKEN_ADDRESS,
l1Address: this.configService.get<string>("tokens.baseToken.l1Address") ?? utils.ETH_ADDRESS,
symbol: this.configService.get<string>("tokens.baseToken.symbol") ?? "ETH",
name: this.configService.get<string>("tokens.baseToken.name") ?? "Ethereum",
name: this.configService.get<string>("tokens.baseToken.name") ?? "Ether",
decimals: this.configService.get<number>("tokens.baseToken.decimals") ?? 18,
iconURL: this.configService.get<string>("tokens.baseToken.iconUrl"),
});
Expand Down

0 comments on commit 1cf81a1

Please sign in to comment.