Skip to content

Commit

Permalink
fix(e2e tests): fix end-to-end test to use base token, modify eth add…
Browse files Browse the repository at this point in the history
…ress
  • Loading branch information
Santiago Pittella authored and Santiago Pittella committed Apr 10, 2024
1 parent b35d489 commit b05d179
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions packages/api/test/transaction.e2e-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1162,7 +1162,7 @@ describe("TransactionController (e2e)", () => {
to: "0x52312Ad6f01657413b2eae9287F6b9Adad93d5fd",
token: {
l2Address: "0x000000000000000000000000000000000000800A",
l1Address: "0x0000000000000000000000000000000000000000",
l1Address: "0x0000000000000000000000000000000000000001",
symbol: "ETH",
name: "Ether",
decimals: 18,
Expand All @@ -1173,7 +1173,7 @@ describe("TransactionController (e2e)", () => {
tokenAddress: "0x000000000000000000000000000000000000800A",
transactionHash: "0x8a008b8dbbc18035e56370abb820e736b705d68d6ac12b203603db8d9ea87e10",
type: "deposit",
tokenType: "ETH",
tokenType: "BASETOKEN",
isInternal: false,
},
{
Expand Down Expand Up @@ -1208,7 +1208,7 @@ describe("TransactionController (e2e)", () => {
to: "0x52312Ad6f01657413b2eae9287F6b9Adad93d5fd",
token: {
l2Address: "0x000000000000000000000000000000000000800A",
l1Address: "0x0000000000000000000000000000000000000000",
l1Address: "0x0000000000000000000000000000000000000001",
symbol: "ETH",
name: "Ether",
decimals: 18,
Expand All @@ -1219,7 +1219,7 @@ describe("TransactionController (e2e)", () => {
tokenAddress: "0x000000000000000000000000000000000000800A",
transactionHash: "0x8a008b8dbbc18035e56370abb820e736b705d68d6ac12b203603db8d9ea87e10",
type: "withdrawal",
tokenType: "ETH",
tokenType: "BASETOKEN",
isInternal: false,
},
{
Expand Down Expand Up @@ -1254,7 +1254,7 @@ describe("TransactionController (e2e)", () => {
to: "0x52312Ad6f01657413b2eae9287F6b9Adad93d5fd",
token: {
l2Address: "0x000000000000000000000000000000000000800A",
l1Address: "0x0000000000000000000000000000000000000000",
l1Address: "0x0000000000000000000000000000000000000001",
symbol: "ETH",
name: "Ether",
decimals: 18,
Expand All @@ -1265,7 +1265,7 @@ describe("TransactionController (e2e)", () => {
tokenAddress: "0x000000000000000000000000000000000000800A",
transactionHash: "0x8a008b8dbbc18035e56370abb820e736b705d68d6ac12b203603db8d9ea87e10",
type: "mint",
tokenType: "ETH",
tokenType: "BASETOKEN",
isInternal: false,
},
{
Expand Down Expand Up @@ -1300,7 +1300,7 @@ describe("TransactionController (e2e)", () => {
to: "0x52312Ad6f01657413b2eae9287F6b9Adad93d5fd",
token: {
l2Address: "0x000000000000000000000000000000000000800A",
l1Address: "0x0000000000000000000000000000000000000000",
l1Address: "0x0000000000000000000000000000000000000001",
symbol: "ETH",
name: "Ether",
decimals: 18,
Expand All @@ -1311,7 +1311,7 @@ describe("TransactionController (e2e)", () => {
tokenAddress: "0x000000000000000000000000000000000000800A",
transactionHash: "0x8a008b8dbbc18035e56370abb820e736b705d68d6ac12b203603db8d9ea87e10",
type: "deposit",
tokenType: "ETH",
tokenType: "BASETOKEN",
isInternal: false,
},
{
Expand Down Expand Up @@ -1346,7 +1346,7 @@ describe("TransactionController (e2e)", () => {
to: "0x52312Ad6f01657413b2eae9287F6b9Adad93d5fd",
token: {
l2Address: "0x000000000000000000000000000000000000800A",
l1Address: "0x0000000000000000000000000000000000000000",
l1Address: "0x0000000000000000000000000000000000000001",
symbol: "ETH",
name: "Ether",
decimals: 18,
Expand All @@ -1357,7 +1357,7 @@ describe("TransactionController (e2e)", () => {
tokenAddress: "0x000000000000000000000000000000000000800A",
transactionHash: "0x8a008b8dbbc18035e56370abb820e736b705d68d6ac12b203603db8d9ea87e10",
type: "transfer",
tokenType: "ETH",
tokenType: "BASETOKEN",
isInternal: false,
},
])
Expand Down Expand Up @@ -1414,7 +1414,7 @@ describe("TransactionController (e2e)", () => {
to: "0x52312Ad6f01657413b2eae9287F6b9Adad93d5fd",
token: {
decimals: 18,
l1Address: "0x0000000000000000000000000000000000000000",
l1Address: "0x0000000000000000000000000000000000000001",
l2Address: "0x000000000000000000000000000000000000800A",
name: "Ether",
symbol: "ETH",
Expand All @@ -1425,7 +1425,7 @@ describe("TransactionController (e2e)", () => {
tokenAddress: "0x000000000000000000000000000000000000800A",
transactionHash: "0x8a008b8dbbc18035e56370abb820e736b705d68d6ac12b203603db8d9ea87e10",
type: "deposit",
tokenType: "ETH",
tokenType: "BASETOKEN",
isInternal: false,
},
],
Expand Down

0 comments on commit b05d179

Please sign in to comment.