-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated wallet to 1.0.1. Upgraded configuration to latets. Fixed peer list roles in bootstrap preset
- Loading branch information
Showing
51 changed files
with
6,540 additions
and
6,291 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/bin/bash | ||
set -e | ||
symbol-bootstrap start -p testnet -a demo -t target/testnet-demo --noPassword $1 $2 $3 |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/bin/bash | ||
set -e | ||
symbol-bootstrap start -p testnet -a demo -t target/testnet-supernode -c test/supernode.yml $1 $2 $3 |
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,12 +1,9 @@ | ||
var feesConfig = { | ||
median: 1, | ||
highest: 2, | ||
median: 10, | ||
free: 0, | ||
slowest: 5000, | ||
slow: 30000, | ||
normal: 50000, | ||
fast: 100000, | ||
fastest: 1000000, | ||
slow: 5, | ||
slowest: 1, | ||
fast: 20, | ||
} | ||
window.feesConfig = feesConfig | ||
console.log('feesConfig loaded!', feesConfig) |
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 |
---|---|---|
@@ -0,0 +1,61 @@ | ||
explorerUrl: http://localhost:90/ | ||
faucetUrl: http://localhost:100/ | ||
databases: | ||
- name: 'db' | ||
openPort: false | ||
nodes: | ||
- harvesting: true | ||
api: true | ||
name: 'node' | ||
databaseHost: 'db' | ||
brokerName: 'broker' | ||
openPort: true | ||
brokerOpenPort: false | ||
trustedHosts: 127.0.0.1, 172.20.0.25 | ||
localNetworks: 127.0.0.1, 172.20.0.25 | ||
gateways: | ||
- name: 'rest-gateway' | ||
apiNodeName: 'node' | ||
apiNodeHost: 'node' | ||
apiNodeBrokerHost: 'broker' | ||
description: 'catapult public test network' | ||
databaseHost: 'db' | ||
openPort: true | ||
ipv4_address: 172.20.0.25 | ||
wallets: | ||
- name: 'wallet' | ||
title: 'Symbol Bootstrap Wallet' | ||
defaultNodeUrl: 'http://localhost:3000' | ||
namespaceName: '{{baseNamespace}}.{{currencyName}}' | ||
openPort: '80' | ||
restNodes: | ||
- friendlyName: 'Bootstrap Rest' | ||
url: 'http://localhost:3000' | ||
roles: 2 | ||
explorers: | ||
- name: 'explorer' | ||
defaultNode: 'http://localhost:3000' | ||
namespaceName: '{{baseNamespace}}.{{currencyName}}' | ||
openPort: '90' | ||
restNodes: | ||
- 'http://localhost:3000' | ||
footer: | ||
link: | ||
- href: https://nemflash.io/ | ||
text: NEM News | ||
icon: IconNewspaper | ||
- href: https://forum.nem.io/ | ||
text: Forum | ||
icon: IconForum | ||
- href: https://t.me/nemred | ||
text: Telegram | ||
icon: IconTelegram | ||
- href: https://www.reddit.com/r/nem/ | ||
text: Reddit | ||
icon: IconReddit | ||
- href: https://github.com/nemtech | ||
text: Github | ||
icon: IconGithub | ||
- href: http://localhost:100/ | ||
text: Faucet | ||
icon: IconHomeCurrencyUsd |
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 |
---|---|---|
|
@@ -2,5 +2,5 @@ localNetworks: 127.0.0.1 | |
nodes: | ||
- harvesting: true | ||
api: false | ||
name: 'peer-node' | ||
name: 'node' | ||
openPort: true |
Oops, something went wrong.