Skip to content
Merged
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 docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Several of the packages in this repository contain developer documentation. This
folder is used to aggregate docs from several packages and then produce a
consolidated [GitHub Pages site](https://dashevo.github.io/platform/) using
consolidated [GitHub Pages site](https://dashpay.github.io/platform/) using
MkDocs. The GitHub workflow described in [docs.yml](/.github/workflows/docs.yml)
builds the documents and publishes them.

Expand Down
2 changes: 1 addition & 1 deletion packages/js-dapi-client/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ client.core.getBestBlockHash(options).then((r) => {

## Documentation

More extensive documentation available at https://dashevo.github.io/platform/DAPI-Client/.
More extensive documentation available at https://dashpay.github.io/platform/DAPI-Client/.


## Contributing
Expand Down
2 changes: 1 addition & 1 deletion packages/js-dash-sdk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ Some features might be more extensive in those libs, as Dash SDK only wraps arou

## Documentation

More extensive documentation available at https://dashevo.github.io/platform/SDK/.
More extensive documentation available at https://dashpay.github.io/platform/SDK/.

## Contributing

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ client.wallet.getAccount().then(payToRecipient);

```

See more on create [transaction options here](https://dashevo.github.io/platform/Wallet-library/account/createTransaction/).
See more on create [transaction options here](https://dashpay.github.io/platform/Wallet-library/account/createTransaction/).
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ At the core of Dash is the Payment Chain. In order to be able to transact on it,

In order to access your UTXO, you will have to provide a valid mnemonic that will unlock the Wallet and automatically fetch the associated UTXOs.

When an SDK instance is created, you can access your wallet via the `client.wallet` variable. (Check [wallet-lib documentation](https://dashevo.github.io/platform/Wallet-library/) for more details)
When an SDK instance is created, you can access your wallet via the `client.wallet` variable. (Check [wallet-lib documentation](https://dashpay.github.io/platform/Wallet-library/) for more details)

## Account

Expand Down
2 changes: 1 addition & 1 deletion packages/js-dash-sdk/docs/wallet/about-wallet-lib.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ When Dash.Client is initiated with a `mnemonic` property, a wallet instance beco

To initialize the wallet account and synchronize with the network, use `client.wallet.getAccount()`.

Find out more about the Wallet in its [complete documentation](https://dashevo.github.io/platform/Wallet-library/)
Find out more about the Wallet in its [complete documentation](https://dashpay.github.io/platform/Wallet-library/)
2 changes: 1 addition & 1 deletion packages/js-dpp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ npm install @dashevo/dpp

## Usage

See [documentation](https://dashevo.github.io/platform/Dash-Platform-Protocol/usage/DashPlatformProtocol/)
See [documentation](https://dashpay.github.io/platform/Dash-Platform-Protocol/usage/DashPlatformProtocol/)

## Maintainer

Expand Down
2 changes: 1 addition & 1 deletion packages/wallet-lib/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ Insight-Client has been removed from MVP and is not working since Wallet-lib v3.

You can see some [examples here](docs/usage/examples.md).

More extensive documentation is available at https://dashevo.github.io/platform/Wallet-library/ along with additional [examples & snippets](https://dashevo.github.io/platform/Wallet-library/usage/examples/).
More extensive documentation is available at https://dashpay.github.io/platform/Wallet-library/ along with additional [examples & snippets](https://dashpay.github.io/platform/Wallet-library/usage/examples/).

## Maintainers

Expand Down
2 changes: 1 addition & 1 deletion packages/wallet-lib/docs/account/createTransaction.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Parameters:
| **txOpts.change** | string | no | Defaults: `account.getUnusedAddress(internal)`. When set, will use that address as a change address on remaining fund |


Returns : [Transaction](https://dashevo.github.io/platform/SDK/usage/dashcorelib-primitives/#transaction)
Returns : [Transaction](https://dashpay.github.io/platform/SDK/usage/dashcorelib-primitives/#transaction)
Notes: This transaction will be need to be signed [`account.sign(transaction)`](../account/sign.md) and then, if wanted, broadcasted to the network for execution `account.broadcastTransaction()`.

Example :
Expand Down
2 changes: 1 addition & 1 deletion packages/wallet-lib/docs/usage/dapi.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## About DAPI

DAPI (Decentralized API) is a distributed and decentralized endpoints provided by the Masternode Network.
You can learn more about DAPI on the [DAPI-Client documentation](https://dashevo.github.io/platform/DAPI-Client/).
You can learn more about DAPI on the [DAPI-Client documentation](https://dashpay.github.io/platform/DAPI-Client/).

## Get the DAPI-Client instance

Expand Down