Skip to content

Commit

Permalink
release: Firefly Shimmer 2.1.8
Browse files Browse the repository at this point in the history
Merge pull request #7469 from iotaledger/release/desktop-2.1.8
  • Loading branch information
begonaalvarezd authored Sep 28, 2023
2 parents 36ed5b7 + 1da9a95 commit f814004
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/desktop/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "desktop",
"productName": "Firefly Shimmer",
"version": "2.1.7",
"version": "2.1.8",
"description": "Official wallet application of Shimmer",
"main": "public/build/main.js",
"repository": "[email protected]:iotaledger/firefly.git",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
import { NetworkId } from '../enums'
import { DestinationNetwork } from '@core/layer-2/enums'

import { ChainId, ChainType, NetworkId } from '../enums'
import { ChainMetadata } from '../types'

export const DEFAULT_CHAIN_CONFIGURATIONS: Readonly<{ [id in NetworkId]?: ChainMetadata }> = {}
export const DEFAULT_CHAIN_CONFIGURATIONS: Readonly<{ [id in NetworkId]?: ChainMetadata }> = {
[NetworkId.Shimmer]: {
type: ChainType.Iscp,
name: DestinationNetwork.ShimmerEvm,
chainId: ChainId.ShimmerEVM,
aliasAddress: 'smr1prxvwqvwf7nru5q5xvh5thwg54zsm2y4wfnk6yk56hj3exxkg92mx20wl3s',
iscpEndpoint:
'https://api.evm.shimmer.network/v1/chains/smr1prxvwqvwf7nru5q5xvh5thwg54zsm2y4wfnk6yk56hj3exxkg92mx20wl3s',
},
}
2 changes: 1 addition & 1 deletion packages/shared/lib/core/network/enums/chain-id.enum.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export enum ChainId {
Layer1 = 0,
ShimmerEVM = 1072,
ShimmerEVM = 148,
}

0 comments on commit f814004

Please sign in to comment.