Skip to content

Commit 1b72344

Browse files
lykalabradafullstackninja864Pierre Geerenovate[bot]
authored
feat(ui-ux): EVM (TransferDomain and changi network) (#1797) (#1845)
* feature(ui-ux): added parser for transferDomain txn type (#1797) * feature(ui-ux): added parser for transferbalance txn type * updated transfer balance to transferdomain * updated UI * added getDecodedAddress function * added evm compatable docker image * added getDecodedAddress * added TransferDomainType as enum * fixed alignment in docker file * DfTxTransferDomain txn fix * updated Ui * hide link incase of eth address in local and devnet and show balance for eth address * update walletkit version * type fix * chore(ops): update changi network (#1861) * update walletkit that uses https * chore(ui-ux): evm chore and pr comments (#1864) * chore(ui-ux): evm chore and pr comments * small fix * feat(ui-ux): handle tx details display for evmtx (#1869) * feat(ui-ux): handle tx details display for evmtx * add util to check if tx is evmtx --------- Co-authored-by: Pierre Gee <pierre@cakedefi.com> * bump(deps): update @waveshq/standard to ^1.9.3 * bump(deps): update dependency @netlify/plugin-nextjs to ^4.40.1 * bump(deps): update dependency @stickyjs/jest to ^1.3.4 * bump(deps): update actions/checkout action to v3.6.0 * bump(deps): update dependency @babel/types to ^7.23.0 * bump(deps): update dependency @prismicio/client to ^7.2.0 * bump(deps): update dependency jest to ^29.7.0 * bump(deps): update dependency recharts to ^2.8.0 * bump(deps): update ghcr.io/birthdayresearch/playground-api docker tag to v3.39.1 * bump(deps): update ghcr.io/birthdayresearch/whale-api docker tag to v3.39.1 * bump versions * fix(e2e): fix failing e2e * feat(ui-ux): temporarily use stable changi for testnet ocean (#1871) * feat(ui-ux): remove custom url for testnet (#1884) --------- Co-authored-by: Harsh R <53080940+fullstackninja864@users.noreply.github.com> Co-authored-by: Pierre Gee <pierre@cakedefi.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 67ef4f7 commit 1b72344

26 files changed

Lines changed: 2604 additions & 1860 deletions

.github/workflows/ci-e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929

3030
- uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1
3131
with:
32-
node-version-file: '.nvmrc'
32+
node-version-file: ".nvmrc"
3333

3434
- run: pnpm install --frozen-lockfile
3535

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
- uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1
2323
with:
24-
node-version-file: '.nvmrc'
24+
node-version-file: ".nvmrc"
2525
cache: "pnpm"
2626

2727
- run: pnpm install --frozen-lockfile
@@ -38,7 +38,7 @@ jobs:
3838

3939
- uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1
4040
with:
41-
node-version-file: '.nvmrc'
41+
node-version-file: ".nvmrc"
4242
cache: "pnpm"
4343

4444
- run: pnpm install --frozen-lockfile
@@ -54,7 +54,7 @@ jobs:
5454

5555
- uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1
5656
with:
57-
node-version-file: '.nvmrc'
57+
node-version-file: ".nvmrc"
5858
cache: "pnpm"
5959

6060
- run: pnpm install --frozen-lockfile

cypress.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@ module.exports = defineConfig({
2727
"cypress/e2e/pages/vaults/[vaultid]/index-InLiquidation.spec.ts",
2828
"cypress/e2e/pages/vaults/[vaultid]/index.spec.ts",
2929
"cypress/e2e/pages/auctions/index.spec.ts",
30-
]
30+
],
3131
},
3232
});

next.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const securityHeaders = [
1919
process.env.NODE_ENV === "development"
2020
? `ws://localhost:3000/_next/webpack-hmr`
2121
: ""
22-
};`
22+
};`,
2323
},
2424
{
2525
key: "Referrer-Policy",

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@
2424
"@prismicio/types": "^0.2.8",
2525
"@reduxjs/toolkit": "^1.9.5",
2626
"@tailwindcss/line-clamp": "^0.4.4",
27-
"@waveshq/standard-defichain-jellyfishsdk": "^1.9.3",
28-
"@waveshq/standard-web": "^1.9.3",
29-
"@waveshq/walletkit-core": "^1.1.0",
30-
"@waveshq/walletkit-ui": "^1.1.0",
27+
"@waveshq/standard-defichain-jellyfishsdk": "^2.11.3",
28+
"@waveshq/standard-web": "^2.11.3",
29+
"@waveshq/walletkit-core": "^1.3.5",
30+
"@waveshq/walletkit-ui": "^1.3.5",
3131
"bignumber.js": "^9.1.1",
3232
"classnames": "^2.3.2",
3333
"date-fns": "^2.30.0",

0 commit comments

Comments
 (0)