Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md - New URL for "Setting up the development environment" #4875

Open
wants to merge 3 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Edge is:

### Prepare React Native Development Tools

The React Native documentation contains [detailed instructions on how to prepare your computer for React Native development](https://reactnative.dev/docs/0.67/environment-setup). Follow the instructions in the "React Native CLI Quickstart" for your specific platform.
The React Native documentation contains [detailed instructions on how to prepare your computer for React Native development](https://reactnative.dev/docs/environment-setup?package-manager=yarn). Follow the instructions in the "React Native CLI Quickstart" for your specific platform.

If you are using a Mac, follow both the iOS and Android target instructions. Otherwise, you only need the Android target instructions.

Expand Down
53 changes: 53 additions & 0 deletions src/__tests__/edgeProvider.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6763,6 +6763,59 @@ const currencyConfig: { [pluginId: string]: any } = {
builtinTokens: {},
customTokens: {}
},
bitcointestnet4: {
otherMethods: {},
currencyInfo: {
pluginId: 'bitcointestnet4',
walletType: 'wallet:bitcointestnet4',
currencyCode: 'TESTBTC4',
displayName: 'Bitcoin Testnet4',
denominations: [
{
name: 'TESTBTC4',
multiplier: '100000000',
symbol: '₿'
},
{
name: 'mTESTBTC4',
multiplier: '100000',
symbol: 'm₿'
},
{
name: 'bits',
multiplier: '100',
symbol: 'ƀ'
},
{
name: 'sats',
multiplier: '1',
symbol: 's'
}
],
defaultSettings: {
customFeeSettings: ['satPerByte'],
blockbookServers: ['wss://testnet4-explorer.wakiyamap.dev'],
enableCustomServers: false
},
customFeeTemplate: [
{
type: 'nativeAmount',
key: 'satPerByte',
displayName: 'Satoshis Per Byte',
displayMultiplier: '0'
}
],
metaTokens: [],
blockExplorer: 'https://mempool.space/testnet4/block/%s',
addressExplorer: 'https://mempool.space/testnet4/address/%s',
transactionExplorer: 'https://mempool.space/testnet4/tx/%s',
symbolImage: 'https://content.edge.app/bitcoin-logo-solo-64.png',
symbolImageDarkMono: 'https://content.edge.app/bitcoin-logo-solo-64.png'
},
allTokens: {},
builtinTokens: {},
customTokens: {}
},
dash: {
otherMethods: {},
currencyInfo: {
Expand Down