Skip to content

Commit d328b99

Browse files
committed
chore: update site urls
1 parent f5db7fe commit d328b99

File tree

114 files changed

+128
-128
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

114 files changed

+128
-128
lines changed

dapps/templates/boilerplate/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22

33
> Basic DApp template for Embark
44
5-
Visit [embark.status.im](https://embark.status.im/) to get started with
5+
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
66
[Embark](https://github.com/embarklabs/embark).

dapps/templates/boilerplate/app/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
</head>
77
<body>
88
<h3>Welcome to Embark!</h3>
9-
<p>See the <a href="https://embark.status.im/docs/quick_start.html" target="_blank">Embark's documentation</a> to see what you can do with Embark!</p>
9+
<p>See the <a href="https://framework.embarklabs.io/docs/quick_start.html" target="_blank">Embark's documentation</a> to see what you can do with Embark!</p>
1010
</body>
1111
</html>

dapps/templates/boilerplate/config/blockchain.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// This file contains only the basic configuration you need to run Embark's node
2-
// For additional configurations, see: https://embark.status.im/docs/blockchain_configuration.html
2+
// For additional configurations, see: https://framework.embarklabs.io/docs/blockchain_configuration.html
33
module.exports = {
44
// default applies to all environments
55
default: {
@@ -16,7 +16,7 @@ module.exports = {
1616
privatenet: {
1717
// Accounts to use as node accounts
1818
// The order here corresponds to the order of `web3.eth.getAccounts`, so the first one is the `defaultAccount`
19-
// For more account configurations, see: https://embark.status.im/docs/blockchain_accounts_configuration.html
19+
// For more account configurations, see: https://framework.embarklabs.io/docs/blockchain_accounts_configuration.html
2020
accounts: [
2121
{
2222
nodeAccounts: true, // Accounts use for the node

dapps/templates/boilerplate/test/contract_spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ const SimpleStorage = require('Embark/contracts/SimpleStorage');
44
55
let accounts;
66
7-
// For documentation please see https://embark.status.im/docs/contracts_testing.html
7+
// For documentation please see https://framework.embarklabs.io/docs/contracts_testing.html
88
config({
99
//deployment: {
1010
// accounts: [
1111
// // you can configure custom accounts with a custom balance
12-
// // see https://embark.status.im/docs/contracts_testing.html#Configuring-accounts
12+
// // see https://framework.embarklabs.io/docs/contracts_testing.html#Configuring-accounts
1313
// ]
1414
//},
1515
contracts: {

dapps/templates/demo/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22

33
> Demo DApp for Embark
44
5-
Visit [embark.status.im](https://embark.status.im/) to get started with
5+
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
66
[Embark](https://github.com/embarklabs/embark).

dapps/templates/demo/config/blockchain.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// This file contains only the basic configuration you need to run Embark's node
2-
// For additional configurations, see: https://embark.status.im/docs/blockchain_configuration.html
2+
// For additional configurations, see: https://framework.embarklabs.io/docs/blockchain_configuration.html
33
module.exports = {
44
// default applies to all environments
55
default: {
@@ -16,7 +16,7 @@ module.exports = {
1616
privatenet: {
1717
// Accounts to use as node accounts
1818
// The order here corresponds to the order of `web3.eth.getAccounts`, so the first one is the `defaultAccount`
19-
// For more account configurations, see: https://embark.status.im/docs/blockchain_accounts_configuration.html
19+
// For more account configurations, see: https://framework.embarklabs.io/docs/blockchain_accounts_configuration.html
2020
accounts: [
2121
{
2222
nodeAccounts: true, // Accounts use for the node

dapps/templates/demo/test/simple_storage_spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ const SimpleStorage = require('Embark/contracts/SimpleStorage');
33

44
let accounts;
55

6-
// For documentation please see https://embark.status.im/docs/contracts_testing.html
6+
// For documentation please see https://framework.embarklabs.io/docs/contracts_testing.html
77
config({
88
//blockchain: {
99
// accounts: [
1010
// // you can configure custom accounts with a custom balance
11-
// // see https://embark.status.im/docs/contracts_testing.html#Configuring-accounts
11+
// // see https://framework.embarklabs.io/docs/contracts_testing.html#Configuring-accounts
1212
// ]
1313
//},
1414
contracts: {

dapps/templates/simple/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22

33
> Contracts-only DApp template for Embark
44
5-
Visit [embark.status.im](https://embark.status.im/) to get started with
5+
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
66
[Embark](https://github.com/embarklabs/embark).

dapps/templates/simple/test/contract_spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ const SimpleStorage = require('Embark/contracts/SimpleStorage');
44
55
let accounts;
66
7-
// For documentation please see https://embark.status.im/docs/contracts_testing.html
7+
// For documentation please see https://framework.embarklabs.io/docs/contracts_testing.html
88
config({
99
//deployment: {
1010
// accounts: [
1111
// // you can configure custom accounts with a custom balance
12-
// // see https://embark.status.im/docs/contracts_testing.html#Configuring-accounts
12+
// // see https://framework.embarklabs.io/docs/contracts_testing.html#Configuring-accounts
1313
// ]
1414
//},
1515
contracts: {

dapps/tests/app/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@
1212

1313
`embark test` to see tests are working as expected.
1414

15-
Visit [embark.status.im](https://embark.status.im/) to get started with
15+
Visit [framework.embarklabs.io](https://framework.embarklabs.io/) to get started with
1616
[Embark](https://github.com/embarklabs/embark).

0 commit comments

Comments
 (0)