Skip to content

Commit

Permalink
Squashed commit of the following:
Browse files Browse the repository at this point in the history
commit 9156c4e
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Tue Oct 31 16:47:38 2023 +0800

    chore(deps): bump github.com/docker/docker from 24.0.5+incompatible to 24.0.7+incompatible (#15085)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit 088678c
Author: Korbinian <[email protected]>
Date:   Tue Oct 31 06:24:37 2023 +0100

    feat(bridge-ui-v2): confirmation step (#15083)

commit 6c702d1
Author: NguyenTuanCanh <[email protected]>
Date:   Tue Oct 31 07:54:30 2023 +0700

    refactor(decodeBase64ToJson): throw an error if any issues with decod… (#15064)

    Co-authored-by: Korbinian <[email protected]>

commit 799ed71
Author: Kenk <[email protected]>
Date:   Mon Oct 30 22:33:51 2023 +0700

    feat(website): add apus network to ecosystem (#15082)
  • Loading branch information
KorbinianK committed Oct 31, 2023
1 parent f7b3759 commit f98fa08
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 4 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ require (
github.com/deckarep/golang-set/v2 v2.1.0 // indirect
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.1.0 // indirect
github.com/docker/distribution v2.8.2+incompatible // indirect
github.com/docker/docker v24.0.5+incompatible // indirect
github.com/docker/docker v24.0.7+incompatible // indirect
github.com/docker/go-connections v0.4.0 // indirect
github.com/docker/go-units v0.5.0 // indirect
github.com/emirpasic/gods v1.18.1 // indirect
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,8 @@ github.com/dgryski/go-farm v0.0.0-20190423205320-6a90982ecee2/go.mod h1:SqUrOPUn
github.com/dnaeon/go-vcr v1.2.0/go.mod h1:R4UdLID7HZT3taECzJs4YgbbH6PIGXB6W/sc5OLb6RQ=
github.com/docker/distribution v2.8.2+incompatible h1:T3de5rq0dB1j30rp0sA2rER+m322EBzniBPB6ZIzuh8=
github.com/docker/distribution v2.8.2+incompatible/go.mod h1:J2gT2udsDAN96Uj4KfcMRqY0/ypR+oyYUYmja8H+y+w=
github.com/docker/docker v24.0.5+incompatible h1:WmgcE4fxyI6EEXxBRxsHnZXrO1pQ3smi0k/jho4HLeY=
github.com/docker/docker v24.0.5+incompatible/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk=
github.com/docker/docker v24.0.7+incompatible h1:Wo6l37AuwP3JaMnZa226lzVXGA3F9Ig1seQen0cKYlM=
github.com/docker/docker v24.0.7+incompatible/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk=
github.com/docker/go-connections v0.4.0 h1:El9xVISelRB7BuFusrZozjnkIM5YnzCViNKohAFqRJQ=
github.com/docker/go-connections v0.4.0/go.mod h1:Gbd7IOopHjR8Iph03tsViu4nIes5XhDvyHbTtUxmeec=
github.com/docker/go-units v0.4.0/go.mod h1:fgPhTUdO+D/Jk86RDLlptpiXQzgHJF7gydDDbaIK4Dk=
Expand Down
7 changes: 6 additions & 1 deletion packages/bridge-ui-v2/scripts/utils/decodeBase64ToJson.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
import { Buffer } from 'buffer';

export const decodeBase64ToJson = (base64: string) => {
return JSON.parse(Buffer.from(base64, 'base64').toString('utf-8'));
try {
const decodedString = Buffer.from(base64, 'base64').toString('utf-8');
return JSON.parse(decodedString);
} catch (error) {
throw new Error('Failed to decode and parse JSON from base64: ' + (error as Error).message);
}
};
9 changes: 9 additions & 0 deletions packages/website/components/Ecosystem/EcosystemSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,15 @@ const ecosystemData: EcosystemData[] = [
icon: "/images/ecosystem/alphamint.png",
name: "Alphamint",
link: "https://www.alphamint.online/",
description:
"Apus Network is to democratize compute by building a decentralized ZKP marketplace, transforming global compute resources into accessible and affordable ZKP capabilities.",
filters: [],
isLive: true,
},
{
icon: "/images/ecosystem/apusnetwork.png",
name: "Apus Network",
link: "https://www.apus.network/",
description:
"Multichain NFT marketplace to create, sell and buy ERC-721 tokens.",
filters: [],
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit f98fa08

Please sign in to comment.