Skip to content

Commit

Permalink
Update GM and Dora links (#2375)
Browse files Browse the repository at this point in the history
  • Loading branch information
comountainclimber authored Jan 26, 2022
1 parent 5feb350 commit 26266a2
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion __tests__/components/__snapshots__/Settings.test.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -923,7 +923,7 @@ exports[`Settings renders without crashing 1`] = `
Manage your neon wallet
</FormattedMessage>
- v
2.12.2
2.12.3
</div>
<div
className="settingsPanelHeaderItem"
Expand Down
6 changes: 3 additions & 3 deletions app/actions/nftActions.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ async function getNFTs({ net, address }) {

const symbol = atob(tokenNameResponse.stack[0].value)

const API_URL = `https://dora.coz.io/api/v1/neo3/${net.toLowerCase()}/contract/${
nft.assethash
}`
const API_URL = `https://dora.coz.io/api/v1/neo3/${
net === 'TestNet' ? 'testnet_rc4' : 'mainnet'
}/contract/${nft.assethash}`

const { data } = await axios.get(API_URL)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ export default class TokenBalancesPanel extends React.Component<Props, State> {
onClick={() => {
electron.shell.openExternal(
this.props.net === 'TestNet'
? `https://testnet.ghostmarket.io/account/n3/${
? `https://testnet.ghostmarket.io/account/n3t/${
this.props.address
}/?tab=available`
: `https://ghostmarket.io/account/n3/${
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Neon",
"version": "2.12.2",
"version": "2.12.3",
"main": "./main.js",
"description": "Light wallet for NEO blockchain",
"homepage": "https://github.com/CityOfZion/neon-wallet",
Expand Down

0 comments on commit 26266a2

Please sign in to comment.