Skip to content

Commit

Permalink
fix: rollback address capitalization
Browse files Browse the repository at this point in the history
  • Loading branch information
SantiagoPittella committed Apr 22, 2024
1 parent 053f71b commit cef3484
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/api/src/common/constants.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const BASE_TOKEN_L2_ADDRESS = "0x000000000000000000000000000000000000800A";
export const BASE_TOKEN_L2_ADDRESS = "0x000000000000000000000000000000000000800a";
4 changes: 2 additions & 2 deletions packages/api/src/config/index.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ describe("config", () => {
it("sets default values", () => {
expect(config()).toEqual({
baseTokenData: {
l2Address: "0x000000000000000000000000000000000000800A",
l2Address: "0x000000000000000000000000000000000000800a",
l1Address: "0x0000000000000000000000000000000000000001",
symbol: "ETH",
name: "Ether",
Expand Down Expand Up @@ -74,7 +74,7 @@ describe("config", () => {

expect(config()).toEqual({
baseTokenData: {
l2Address: "0x000000000000000000000000000000000000800A",
l2Address: "0x000000000000000000000000000000000000800a",
l1Address: "0xSomeAddress",
symbol: "MTTL",
name: "MatterLabs",
Expand Down

0 comments on commit cef3484

Please sign in to comment.