Skip to content

Commit

Permalink
fix(ui-ux): update bch proof of token address (#1923)
Browse files Browse the repository at this point in the history
  • Loading branch information
chloezxyy authored Dec 6, 2023
1 parent 0ae7f86 commit 0fce614
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions cypress/e2e/pages/tokens/tokens-[symbol].spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -243,14 +243,14 @@ context("/tokens/* Backing Addresses", () => {
});
cy.findByTestId("BackingAddress.BCH").should(
"have.text",
"38wFczGqaaGLRub2U7CWeWkMuPDwhMVMRf",
"38dTgSFhAg9c4QRqXd5fvLCYfvUdKLjmcx",
);
cy.findByTestId("BackingAddress.BCH")
.find("a")
.should(
"have.attr",
"href",
"https://www.blockchain.com/bch/address/38wFczGqaaGLRub2U7CWeWkMuPDwhMVMRf",
"https://www.blockchain.com/bch/address/38dTgSFhAg9c4QRqXd5fvLCYfvUdKLjmcx",
);
});
});
2 changes: 1 addition & 1 deletion cypress/fixtures/proof-of-backing/backingAddresses.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export const cakeBackingAddresses = [
},
{
token: "dBCH",
link: "https://www.blockchain.com/bch/address/38wFczGqaaGLRub2U7CWeWkMuPDwhMVMRf",
link: "https://www.blockchain.com/bch/address/38dTgSFhAg9c4QRqXd5fvLCYfvUdKLjmcx",
},
{
token: "dDOGE",
Expand Down
4 changes: 2 additions & 2 deletions src/constants/TokenBackedAddress.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ export const TOKEN_BACKED_ADDRESS: BackedAddress = {
},
BCH: {
cake: {
link: "https://www.blockchain.com/bch/address/38wFczGqaaGLRub2U7CWeWkMuPDwhMVMRf",
address: "38wFczGqaaGLRub2U7CWeWkMuPDwhMVMRf",
link: "https://www.blockchain.com/bch/address/38dTgSFhAg9c4QRqXd5fvLCYfvUdKLjmcx",
address: "38dTgSFhAg9c4QRqXd5fvLCYfvUdKLjmcx",
},
},
DOGE: {
Expand Down

0 comments on commit 0fce614

Please sign in to comment.