diff --git a/docs/build/dev-environment.md b/docs/build/dev-environment.md
index 77bb2516f..5e4116d28 100644
--- a/docs/build/dev-environment.md
+++ b/docs/build/dev-environment.md
@@ -17,7 +17,7 @@ import { DocSubheader } from '/docs/components/DocSubheader';
[IntelliJ IDEA](https://www.jetbrains.com/idea/) is one of our favorite IDEs to use when we are working on the chain.
-[VS Code](https://code.visualstudio.com/) is another great option, especially as we build JavaScript dApps like our [explorer](/docs/discover/explorer.md) and [others](/docs/discover/dapps).
+[VS Code](https://code.visualstudio.com/) is another great option, especially as we build JavaScript dApps like our [explorer](/docs/discover/explorer.md) and [others](https://provenance.io/connect).
[Provenance Code Extension](https://github.com/FigureTechnologies/provenance-code-extension) is a VS Code extension for smart contract development on the Provenance blockchain.
diff --git a/docs/discover/dapps.md b/docs/discover/dapps.md
index 0f4193e15..072966c45 100644
--- a/docs/discover/dapps.md
+++ b/docs/discover/dapps.md
@@ -1,25 +1,5 @@
# Ecosystem dApps
-Decentralized applications (dApps) are being developed or in production for a number of users of the Provenance Blockchain. Stay tuned for continuous updates, or reach out if you'd like your project listed.
+import { Redirect } from '/docs/components/Redirect';
-### dApps
-
-- [DART](https://medium.com/provenanceblockchain/what-is-dart-ff0099917e21): A digital asset registry running on Provenance Blockchain.
-- [Zorrosign](https://www.zorrosign.com/): Secure digital signatures, transactions, and documentation company.
-- [Storyline](https://followstoryline.io/): Blockchain solutions for the entertainment contracts industry.
-- [Figure Equity Solutions](https://www.figure.com/equity-solutions/): Cap table management leveraging immutable records and instant traceability.
-- [Figure Marketplace](https://www.figure.com/digital-fund-services/): Bilateral trading of digital assets, including loans, loan participation, and private equity.
-- [Figure Loan Origination System](https://www.figure.com/): Loans recorded, shared and exchanged, all on Provenance Blockchain.
-- [Figure Pay](https://www.figure.com/figurepay/): Payments improved using Provenance Blockchain.
-- [Figure Portfolio Manager](https://medium.com/provenanceblockchain/taking-figures-portfolio-manager-for-a-spin-around-the-block-chain-a6d2f751feb7): Manage and see the real-time performance of loans on Provenance Blockchain.
-- [Figure Passport](https://www.figure.com/): Digital Identity and KYC/AML on-chain for entities and individuals.
-
-### Build a dApp
-
-Ready to start building? Visit our [Guides](/docs/learn/learn-about) page!
-
-### dApp Medium Articles
-
-- [Storyline Builds on Provenance Blockchain](https://medium.com/provenanceblockchain/storyline-builds-on-provenance-blockchain-c9a0e56e2d67)
-- [Trading Coins and Bilateral Settlement on Provenance Blockchain](https://medium.com/provenanceblockchain/trading-coins-and-bilateral-settlement-on-provenance-blockchain-e254f7f0707e)
-- [Cap Tables Private Company Stock on Provenance Blockchain](https://medium.com/provenanceblockchain/cap-tables-private-company-stock-on-provenance-blockchain-e45fa172c0f1)
+
diff --git a/docs/index.md b/docs/index.md
index 7b16b9da1..47a74ebe0 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -30,9 +30,9 @@ Provenance Blockchain is licensed under the [Apache 2.0 license](https://www.apa
-
+
-
+
diff --git a/docs/sdk/quarantine/04_events.md b/docs/sdk/quarantine/04_events.md
index 10216ee66..f04f08542 100644
--- a/docs/sdk/quarantine/04_events.md
+++ b/docs/sdk/quarantine/04_events.md
@@ -3,10 +3,11 @@
The `x/quarantine` module emits the following events.
- - [EventOptIn](#eventoptin)
- - [EventOptOut](#eventoptout)
- - [EventFundsQuarantined](#eventfundsquarantined)
- - [EventFundsReleased](#eventfundsreleased)
+
+- [EventOptIn](#eventoptin)
+- [EventOptOut](#eventoptout)
+- [EventFundsQuarantined](#eventfundsquarantined)
+- [EventFundsReleased](#eventfundsreleased)
## EventOptIn
@@ -14,9 +15,9 @@ This event is emitted when an account opts into quarantine.
`@Type`: `/cosmos.quarantine.v1beta1.EventOptIn`
-| Attribute Key | Attribute Value |
-|---------------|--------------------------------------|
-| to_address | {bech32 string of account opting in} |
+| Attribute Key | Attribute Value |
+| ------------- | -------------------------------------- |
+| to_address | \{bech32 string of account opting in\} |
## EventOptOut
@@ -24,9 +25,9 @@ This event is emitted when an account opts out of quarantine.
`@Type`: `/cosmos.quarantine.v1beta1.EventOptOut`
-| Attribute Key | Attribute Value |
-|---------------|---------------------------------------|
-| to_address | {bech32 string of account opting out} |
+| Attribute Key | Attribute Value |
+| ------------- | --------------------------------------- |
+| to_address | \{bech32 string of account opting out\} |
## EventFundsQuarantined
@@ -35,10 +36,10 @@ The following event is also emitted.
`@Type`: `/cosmos.quarantine.v1beta1.EventFundsQuarantined`
-| Attribute Key | Attribute Value |
-|---------------|---------------------------------------|
-| to_address | {bech32 string of intended recipient} |
-| coins | {sdk.Coins of funds quarantined} |
+| Attribute Key | Attribute Value |
+| ------------- | --------------------------------------- |
+| to_address | \{bech32 string of intended recipient\} |
+| coins | \{sdk.Coins of funds quarantined\} |
## EventFundsReleased
@@ -46,7 +47,7 @@ This event is emitted when funds are fully accepted and sent from the quarantine
`@Type`: `/cosmos.quarantine.v1beta1.EventFundsReleased`
-| Attribute Key | Attribute Value |
-|---------------|-------------------------------|
-| to_address | {bech32 string of recipient} |
-| coins | {sdk.Coins of funds released} |
+| Attribute Key | Attribute Value |
+| ------------- | ------------------------------- |
+| to_address | \{bech32 string of recipient\} |
+| coins | \{sdk.Coins of funds released\} |
diff --git a/docs/sdk/sanction/04_events.md b/docs/sdk/sanction/04_events.md
index 953e375e0..65244cead 100644
--- a/docs/sdk/sanction/04_events.md
+++ b/docs/sdk/sanction/04_events.md
@@ -3,11 +3,12 @@
The `x/sanction` module emits the following events.
- - [EventAddressSanctioned](#eventaddresssanctioned)
- - [EventAddressUnsanctioned](#eventaddressunsanctioned)
- - [EventTempAddressSanctioned](#eventtempaddresssanctioned)
- - [EventTempAddressUnsanctioned](#eventtempaddressunsanctioned)
- - [EventParamsUpdated](#eventparamsupdated)
+
+- [EventAddressSanctioned](#eventaddresssanctioned)
+- [EventAddressUnsanctioned](#eventaddressunsanctioned)
+- [EventTempAddressSanctioned](#eventtempaddresssanctioned)
+- [EventTempAddressUnsanctioned](#eventtempaddressunsanctioned)
+- [EventParamsUpdated](#eventparamsupdated)
## EventAddressSanctioned
@@ -15,9 +16,9 @@ This event is emitted when an account is sanctioned.
`@Type`: `/cosmos.sanction.v1beta1.EventAddressSanctioned`
-| Attribute Key | Attribute Value |
-|---------------|---------------------------------------|
-| address | {bech32 string of sanctioned account} |
+| Attribute Key | Attribute Value |
+| ------------- | --------------------------------------- |
+| address | \{bech32 string of sanctioned account\} |
## EventAddressUnsanctioned
@@ -25,9 +26,9 @@ This event is emitted when an account is unsanctioned.
`@Type`: `/cosmos.sanction.v1beta1.EventAddressUnsanctioned`
-| Attribute Key | Attribute Value |
-|---------------|-----------------------------------------|
-| address | {bech32 string of unsanctioned account} |
+| Attribute Key | Attribute Value |
+| ------------- | ----------------------------------------- |
+| address | \{bech32 string of unsanctioned account\} |
## EventTempAddressSanctioned
@@ -35,9 +36,9 @@ This event is emitted when a temporary sanction is placed on an account.
`@Type`: `/cosmos.sanction.v1beta1.EventTempAddressSanctioned`
-| Attribute Key | Attribute Value |
-|---------------|---------------------------------------|
-| address | {bech32 string of sanctioned account} |
+| Attribute Key | Attribute Value |
+| ------------- | --------------------------------------- |
+| address | \{bech32 string of sanctioned account\} |
## EventTempAddressUnsanctioned
@@ -45,9 +46,9 @@ This event is emitted when a temporary unsanction is placed on an account.
`@Type`: `/cosmos.sanction.v1beta1.EventTempAddressUnsanctioned`
-| Attribute Key | Attribute Value |
-|---------------|-----------------------------------------|
-| address | {bech32 string of unsanctioned account} |
+| Attribute Key | Attribute Value |
+| ------------- | ----------------------------------------- |
+| address | \{bech32 string of unsanctioned account\} |
## EventParamsUpdated
@@ -56,5 +57,5 @@ This event is emitted when the `x/sanction` module's params are updated.
`@Type`: `/cosmos.sanction.v1beta1.EventParamsUpdated`
| Attribute Key | Attribute Value |
-|---------------|-----------------|
+| ------------- | --------------- |
| (none) | |
diff --git a/docusaurus.config.js b/docusaurus.config.js
index a3b9d1bfa..07e99939d 100644
--- a/docusaurus.config.js
+++ b/docusaurus.config.js
@@ -200,7 +200,7 @@ const config = {
},
{
label: 'dApps',
- to: 'docs/discover/dapps',
+ to: 'https://provenance.io/connect',
},
],
},
@@ -317,6 +317,10 @@ const config = {
from: '/docs/pb/ecosystem/financial-services-blockchain/token-economics',
to: 'https://provenance.io/ecosystem/HASH/tokenomics/',
},
+ {
+ from: '/docs/discover/dapps',
+ to: 'https://provenance.io/connect',
+ },
],
},
],