Skip to content

Commit

Permalink
Merge pull request #525 from input-output-hk/brendan/fix/s3-urls
Browse files Browse the repository at this point in the history
fix: Update wallet S3 urls
  • Loading branch information
brendanmoore authored Aug 18, 2023
2 parents 30da230 + 0084609 commit 0d4d8cc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 10 deletions.
1 change: 0 additions & 1 deletion content/05-cardano-testnet/05-daedalus-testnet.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,3 @@ fully-featured and may contain bugs.

<WalletDownloaders env="preview" />
<WalletDownloaders env="preprod" />
<WalletDownloaders env="testnet" />
11 changes: 3 additions & 8 deletions src/components/WalletDownloaders.js
Original file line number Diff line number Diff line change
Expand Up @@ -133,19 +133,14 @@ const WalletDownloaders = ({ env }) => {
const envs = {
preprod: {
endpoint:
'https://updates-cardano-preprod.s3.amazonaws.com/daedalus-latest-version.json',
'https://lace-daedalus-preprod.s3.amazonaws.com/daedalus-latest-version.json',
title: 'Pre-production Testnet',
},
preview: {
endpoint:
'https://updates-cardano-preview.s3.amazonaws.com/daedalus-latest-version.json',
'https://lace-daedalus-preview.s3.amazonaws.com/daedalus-latest-version.json',
title: 'Preview Testnet',
},
testnet: {
endpoint:
'https://updates-cardano-testnet.s3.amazonaws.com/daedalus-latest-version.json',
title: 'Legacy Testnet',
},
}
}

const [platformsData, setPlatformsData] = useState(null)
Expand Down
1 change: 0 additions & 1 deletion src/utils/testnetsContent.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,6 @@ export default {
}
],
environment: {
testnet: 'Testnet',
preprod: 'Pre-production',
preview: 'Preview'
},
Expand Down

0 comments on commit 0d4d8cc

Please sign in to comment.