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

fix links to documentation #123

Merged
merged 1 commit into from
Jul 23, 2024
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 CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ We welcome contributions to the FireFly Project in many forms, and
there's always plenty to do!

Please visit the
[contributors guide](https://hyperledger.github.io/firefly/contributors/) in the
[contributors guide](https://hyperledger.github.io/firefly/latest/contributors/) in the
docs to learn how to make contributions to this exciting project.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

![version-ui](https://img.shields.io/github/package-json/v/hyperledger/firefly-sandbox?color=orange&filename=ui%2Fpackage.json&label=firefly-sandbox-ui)
![version-server](https://img.shields.io/github/package-json/v/hyperledger/firefly-sandbox?color=orange&filename=server%2Fpackage.json&label=firefly-sandbox-server)
[![FireFly Documentation](https://img.shields.io/static/v1?label=FireFly&message=documentation&color=informational)](https://hyperledger.github.io/firefly//)
[![FireFly Documentation](https://img.shields.io/static/v1?label=FireFly&message=documentation&color=informational)](https://hyperledger.github.io/firefly/)

![Hyperledger FireFly](./images/hyperledger_firefly_logo.png)

Expand Down Expand Up @@ -50,10 +50,10 @@ that may be helpful to reference:

Interested in contributing to the community?

Check out our [Contributor Guide](https://hyperledger.github.io/firefly/contributors/contributors.html), and welcome!
Check out our [Contributor Guide](https://hyperledger.github.io/firefly/latest/contributors/contributors.html), and welcome!

Please adhere to this project's [Code of Conduct](CODE_OF_CONDUCT.md).

## License

Hyperledger Project source code files are made available under the Apache License, Version 2.0 (Apache-2.0), located in the [LICENSE](LICENSE) file.
Hyperledger Project source code files are made available under the Apache License, Version 2.0 (Apache-2.0), located in the [LICENSE](LICENSE) file.
38 changes: 19 additions & 19 deletions ui/src/constants/TutorialSections.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export const TutorialSections: ITutorialSection[] = [
{
formID: TUTORIAL_FORMS.BROADCAST,
docsURL:
'https://hyperledger.github.io/firefly/gettingstarted/broadcast_data.html',
'https://hyperledger.github.io/firefly/latest/gettingstarted/broadcast_data.html',
endpoint: SDK_PATHS.messagesBroadcast,
form: <BroadcastForm />,
runnable: true,
Expand All @@ -71,7 +71,7 @@ export const TutorialSections: ITutorialSection[] = [
{
formID: TUTORIAL_FORMS.PRIVATE,
docsURL:
'https://hyperledger.github.io/firefly/gettingstarted/private_send.html',
'https://hyperledger.github.io/firefly/latest/gettingstarted/private_send.html',
endpoint: SDK_PATHS.messagesPrivate,
form: <PrivateForm />,
runnable: true,
Expand All @@ -83,7 +83,7 @@ export const TutorialSections: ITutorialSection[] = [
{
formID: TUTORIAL_FORMS.DATATYPE,
docsURL:
'https://hyperledger.github.io/firefly/gettingstarted/define_datatype.html',
'https://hyperledger.github.io/firefly/latest/gettingstarted/define_datatype.html',
endpoint: SDK_PATHS.messagesDatatypes,
form: <DatatypeForm />,
runnable: true,
Expand All @@ -101,7 +101,7 @@ export const TutorialSections: ITutorialSection[] = [
{
formID: TUTORIAL_FORMS.POOL,
docsURL:
'https://hyperledger.github.io/firefly/gettingstarted/mint_tokens.html#create-a-pool',
'https://hyperledger.github.io/firefly/latest/gettingstarted/mint_tokens.html#create-a-pool',
endpoint: SDK_PATHS.tokensPools,
form: <PoolForm />,
runnable: true,
Expand All @@ -113,7 +113,7 @@ export const TutorialSections: ITutorialSection[] = [
{
formID: TUTORIAL_FORMS.MINT,
docsURL:
'https://hyperledger.github.io/firefly/gettingstarted/mint_tokens.html',
'https://hyperledger.github.io/firefly/latest/gettingstarted/mint_tokens.html',
endpoint: SDK_PATHS.tokensMint,
form: <MintForm />,
runnable: true,
Expand All @@ -125,7 +125,7 @@ export const TutorialSections: ITutorialSection[] = [
{
formID: TUTORIAL_FORMS.TRANSFER,
docsURL:
'https://hyperledger.github.io/firefly/gettingstarted/mint_tokens.html#transfer-tokens',
'https://hyperledger.github.io/firefly/latest/gettingstarted/mint_tokens.html#transfer-tokens',
endpoint: SDK_PATHS.tokensTransfer,
form: <TransferForm />,
runnable: true,
Expand All @@ -137,7 +137,7 @@ export const TutorialSections: ITutorialSection[] = [
{
formID: TUTORIAL_FORMS.BURN,
docsURL:
'https://hyperledger.github.io/firefly/gettingstarted/mint_tokens.html#burn-tokens',
'https://hyperledger.github.io/firefly/latest/gettingstarted/mint_tokens.html#burn-tokens',
endpoint: SDK_PATHS.tokensBurn,
form: <BurnForm />,
runnable: true,
Expand All @@ -154,7 +154,7 @@ export const TutorialSections: ITutorialSection[] = [
tutorials: [
{
docsURL:
'https://hyperledger.github.io/firefly/gettingstarted/custom_contracts.html#contract-deployment',
'https://hyperledger.github.io/firefly/latest/gettingstarted/custom_contracts.html#contract-deployment',
form: <DeployContractForm />,
formID: TUTORIAL_FORMS.DEPLOY_CONTRACT,
shortInfo: 'deployContractInfo',
Expand All @@ -165,7 +165,7 @@ export const TutorialSections: ITutorialSection[] = [
},
{
docsURL:
'https://hyperledger.github.io/firefly/gettingstarted/custom_contracts.html#broadcast-the-contract-interface',
'https://hyperledger.github.io/firefly/latest/gettingstarted/custom_contracts.html#broadcast-the-contract-interface',
endpoint: SDK_PATHS.contractsInterface,
form: <DefineInterfaceForm />,
formID: TUTORIAL_FORMS.DEFINE_CONTRACT_INTERFACE,
Expand All @@ -177,7 +177,7 @@ export const TutorialSections: ITutorialSection[] = [
},
{
docsURL:
'https://hyperledger.github.io/firefly/gettingstarted/custom_contracts.html#create-an-http-api-for-the-contract',
'https://hyperledger.github.io/firefly/latest/gettingstarted/custom_contracts.html#create-an-http-api-for-the-contract',
endpoint: SDK_PATHS.contractsApi,
form: <RegisterContractApiForm />,
formID: TUTORIAL_FORMS.REGISTER_CONTRACT_API,
Expand All @@ -189,7 +189,7 @@ export const TutorialSections: ITutorialSection[] = [
},
{
docsURL:
'https://hyperledger.github.io/firefly/gettingstarted/custom_contracts.html#create-a-blockchain-event-listener',
'https://hyperledger.github.io/firefly/latest/gettingstarted/custom_contracts.html#create-a-blockchain-event-listener',
endpoint: SDK_PATHS.contractsListener,
form: <RegisterContractApiListenerForm />,
formID: TUTORIAL_FORMS.REGISTER_CONTRACT_API_LISTENER,
Expand All @@ -211,7 +211,7 @@ export const GatewayTutorialSections: ITutorialSection[] = [
{
formID: TUTORIAL_FORMS.POOL,
docsURL:
'https://hyperledger.github.io/firefly/gettingstarted/mint_tokens.html#create-a-pool',
'https://hyperledger.github.io/firefly/latest/gettingstarted/mint_tokens.html#create-a-pool',
endpoint: SDK_PATHS.tokensPools,
form: <PoolForm />,
runnable: true,
Expand All @@ -223,7 +223,7 @@ export const GatewayTutorialSections: ITutorialSection[] = [
{
formID: TUTORIAL_FORMS.MINT,
docsURL:
'https://hyperledger.github.io/firefly/gettingstarted/mint_tokens.html',
'https://hyperledger.github.io/firefly/latest/gettingstarted/mint_tokens.html',
endpoint: SDK_PATHS.tokensMint,
form: <MintForm />,
runnable: true,
Expand All @@ -235,7 +235,7 @@ export const GatewayTutorialSections: ITutorialSection[] = [
{
formID: TUTORIAL_FORMS.TRANSFER,
docsURL:
'https://hyperledger.github.io/firefly/gettingstarted/mint_tokens.html#transfer-tokens',
'https://hyperledger.github.io/firefly/latest/gettingstarted/mint_tokens.html#transfer-tokens',
endpoint: SDK_PATHS.tokensTransfer,
form: <TransferForm />,
runnable: true,
Expand All @@ -247,7 +247,7 @@ export const GatewayTutorialSections: ITutorialSection[] = [
{
formID: TUTORIAL_FORMS.BURN,
docsURL:
'https://hyperledger.github.io/firefly/gettingstarted/mint_tokens.html#burn-tokens',
'https://hyperledger.github.io/firefly/latest/gettingstarted/mint_tokens.html#burn-tokens',
endpoint: SDK_PATHS.tokensBurn,
form: <BurnForm />,
runnable: true,
Expand All @@ -264,7 +264,7 @@ export const GatewayTutorialSections: ITutorialSection[] = [
tutorials: [
{
docsURL:
'https://hyperledger.github.io/firefly/gettingstarted/custom_contracts.html#contract-deployment',
'https://hyperledger.github.io/firefly/latest/gettingstarted/custom_contracts.html#contract-deployment',
form: <DeployContractForm />,
formID: TUTORIAL_FORMS.DEPLOY_CONTRACT,
shortInfo: 'deployContractInfo',
Expand All @@ -275,7 +275,7 @@ export const GatewayTutorialSections: ITutorialSection[] = [
},
{
docsURL:
'https://hyperledger.github.io/firefly/gettingstarted/custom_contracts.html#broadcast-the-contract-interface',
'https://hyperledger.github.io/firefly/latest/gettingstarted/custom_contracts.html#broadcast-the-contract-interface',
endpoint: SDK_PATHS.contractsInterface,
form: <DefineInterfaceForm />,
formID: TUTORIAL_FORMS.DEFINE_CONTRACT_INTERFACE,
Expand All @@ -287,7 +287,7 @@ export const GatewayTutorialSections: ITutorialSection[] = [
},
{
docsURL:
'https://hyperledger.github.io/firefly/gettingstarted/custom_contracts.html#create-an-http-api-for-the-contract',
'https://hyperledger.github.io/firefly/latest/gettingstarted/custom_contracts.html#create-an-http-api-for-the-contract',
endpoint: SDK_PATHS.contractsApi,
form: <RegisterContractApiForm />,
formID: TUTORIAL_FORMS.REGISTER_CONTRACT_API,
Expand All @@ -299,7 +299,7 @@ export const GatewayTutorialSections: ITutorialSection[] = [
},
{
docsURL:
'https://hyperledger.github.io/firefly/gettingstarted/custom_contracts.html#create-a-blockchain-event-listener',
'https://hyperledger.github.io/firefly/latest/gettingstarted/custom_contracts.html#create-a-blockchain-event-listener',
endpoint: SDK_PATHS.contractsListener,
form: <RegisterContractApiListenerForm />,
formID: TUTORIAL_FORMS.REGISTER_CONTRACT_API_LISTENER,
Expand Down