Skip to content

Commit

Permalink
fix(ui-ux): fixed POB address for DOT and SUI token (#1941)
Browse files Browse the repository at this point in the history
* fix(ui-ux): fixed POB address for DOT and SUI token

* fix testcase
  • Loading branch information
fullstackninja864 authored and canonbrother committed Oct 10, 2024
1 parent ecf60a8 commit 9eed154
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions cypress/fixtures/proof-of-backing/backingAddresses.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ export const cakeBackingAddresses = [
},
{
token: "dDOT",
link: "https://polkadot.subscan.io/account/12YfgqECReN4fQppa9BDoyGce43F54ZHYotE77mb5SmCBsUks",
link: "https://polkadot.subscan.io/account/12YfgqECReN4fQppa9BDoyGce43F54ZHYotE77mb5SmCBsUk",
},
{
token: "dSUI",
link: "https://suiexplorer.com/address/0xe319ee27de5d3cb4a2345c8b714a69d6710ca05395e3709983d886061b1b818d",
link: "https://suiscan.xyz/mainnet/account/0xe319ee27de5d3cb4a2345c8b714a69d6710ca05395e3709983d886061b1b818d",
},
];

Expand Down
4 changes: 2 additions & 2 deletions src/constants/TokenBackedAddress.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,13 +98,13 @@ export const TOKEN_BACKED_ADDRESS: BackedAddress = {
},
DOT: {
cake: {
link: "https://polkadot.subscan.io/account/12YfgqECReN4fQppa9BDoyGce43F54ZHYotE77mb5SmCBsUks",
link: "https://polkadot.subscan.io/account/12YfgqECReN4fQppa9BDoyGce43F54ZHYotE77mb5SmCBsUk",
address: "12YfgqECReN4fQppa9BDoyGce43F54ZHYotE77mb5SmCBsUk",
},
},
SUI: {
cake: {
link: "https://suiexplorer.com/address/0xe319ee27de5d3cb4a2345c8b714a69d6710ca05395e3709983d886061b1b818d",
link: "https://suiscan.xyz/mainnet/account/0xe319ee27de5d3cb4a2345c8b714a69d6710ca05395e3709983d886061b1b818d",
address:
"0xe319ee27de5d3cb4a2345c8b714a69d6710ca05395e3709983d886061b1b818d",
},
Expand Down

0 comments on commit 9eed154

Please sign in to comment.