-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(launch, govern) feat: support mode network
- Loading branch information
1 parent
1766230
commit 48a1695
Showing
19 changed files
with
71 additions
and
92 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,8 @@ | ||
import { defineChain } from 'viem'; | ||
import { | ||
virtualGnosis, | ||
virtualMainnet, | ||
virtualPolygon, | ||
virtualMode, | ||
} from 'libs/util-constants/src'; | ||
|
||
export const virtualMainnet = defineChain({ | ||
id: 1, | ||
name: 'Virtual Mainnet', | ||
nativeCurrency: { name: 'vETH', symbol: 'vETH', decimals: 18 }, | ||
rpcUrls: { | ||
default: { http: [`${process.env.NEXT_PUBLIC_MAINNET_TEST_RPC}`] }, | ||
}, | ||
blockExplorers: { | ||
default: { | ||
name: 'Tenderly Explorer', | ||
url: '', | ||
}, | ||
}, | ||
}); | ||
|
||
export const virtualGnosis = defineChain({ | ||
id: 100, | ||
name: 'Virtual Gnosis Chain', | ||
nativeCurrency: { name: 'vXDAI', symbol: 'vXDAI', decimals: 18 }, | ||
rpcUrls: { | ||
default: { http: [`${process.env.NEXT_PUBLIC_GNOSIS_TEST_RPC}`] }, | ||
}, | ||
blockExplorers: { | ||
default: { | ||
name: 'Tenderly Explorer', | ||
url: '', | ||
}, | ||
}, | ||
}); | ||
|
||
export const virtualPolygon = defineChain({ | ||
id: 137, | ||
name: 'Virtual Polygon', | ||
nativeCurrency: { name: 'vMATIC', symbol: 'vMATIC', decimals: 18 }, | ||
rpcUrls: { | ||
default: { http: [`${process.env.NEXT_PUBLIC_POLYGON_TEST_RPC}`] }, | ||
}, | ||
blockExplorers: { | ||
default: { | ||
name: 'Tenderly Explorer', | ||
url: '', | ||
}, | ||
}, | ||
}); | ||
export { virtualGnosis, virtualMainnet, virtualPolygon, virtualMode }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
import { virtualGnosis, virtualMainnet, virtualPolygon } from 'libs/util-constants/src'; | ||
import { | ||
virtualGnosis, | ||
virtualMainnet, | ||
virtualPolygon, | ||
virtualMode, | ||
} from 'libs/util-constants/src'; | ||
|
||
export { virtualGnosis, virtualMainnet, virtualPolygon }; | ||
export { virtualGnosis, virtualMainnet, virtualPolygon, virtualMode }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters