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

chore: replace */iota/blob/main with */iota/blob/develop #4616

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
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,7 +4,7 @@ Thanks for considering making a contribution to the IOTA network or its document

## Contribute to IOTA

See [IOTA Environment Setup](https://github.com/iotaledger/iota/blob/main/docs/content/developer/getting-started/iota-environment.mdx) for approach to submitting code fixes and enhancements.
See [IOTA Environment Setup](https://github.com/iotaledger/iota/blob/develop/docs/content/developer/getting-started/iota-environment.mdx) for approach to submitting code fixes and enhancements.

Found a bug or security vulnerability? Create a [GitHub issue](https://github.com/iotaledger/iota/issues/new/choose).

Expand Down
2 changes: 1 addition & 1 deletion chocolatey/iota.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ enclosed in quotation marks, you should use an editor that supports UTF-8, not t
<title>Main Iota Binary</title>
<authors>iota</authors>
<projectUrl>https://iota.org/</projectUrl>
<licenseUrl>https://github.com/iotaledger/iota/blob/main/LICENSE</licenseUrl>
<licenseUrl>https://github.com/iotaledger/iota/blob/develop/LICENSE</licenseUrl>
<iconUrl>https://assets-global.website-files.com/6425f546844727ce5fb9e5ab/643775f4a15c9a9e10426daa_Iota_Favicon_256.png</iconUrl>
<projectSourceUrl>https://github.com/iotaledger/iota/</projectSourceUrl>
<bugTrackerUrl>https://github.com/iotaledger/iota/issues</bugTrackerUrl>
Expand Down
2 changes: 1 addition & 1 deletion crates/iota-types/src/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Note: this README file currently covers cryptography-related structs and methods.

Currently, three files are equipped with signature and hashing functionality (`crypto.rs`, `signature_seed` and
`messages.rs`). See [Iota Signatures](https://github.com/iotaledger/iota/blob/main/docs/content/concepts/cryptography/transaction-auth/signatures.mdx) for supported signature schemes and its requirments for user and authority signatures. See [fastcrypto](https://github.com/MystenLabs/fastcrypto) for concrete implementation of various cryptography libraries.
`messages.rs`). See [Iota Signatures](https://github.com/iotaledger/iota/blob/develop/docs/content/concepts/cryptography/transaction-auth/signatures.mdx) for supported signature schemes and its requirments for user and authority signatures. See [fastcrypto](https://github.com/MystenLabs/fastcrypto) for concrete implementation of various cryptography libraries.

## Quick links

Expand Down
2 changes: 1 addition & 1 deletion docs/content/developer/advanced/onchain-randomness.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ In many cases this is not an issue, like when selecting a raffle winner, lottery
- Use [profile-transaction](../../references/cli/client.mdx#profile-a-transaction) on Testnet transactions to verify the costs of different flows.
- Split the logic in two: one function that fetches a random value and stores it in an object, and another function that reads that stored value and completes the operation. The latter function might indeed fail, but now the random value is fixed and cannot be modified using repeated calls.

See [random_nft](https://github.com/iotaledger/iota/blob/main/examples/move/random/random_nft) for examples.
See [random_nft](https://github.com/iotaledger/iota/blob/develop/examples/move/random/random_nft) for examples.

Other limited resources per transaction are:

Expand Down
2 changes: 1 addition & 1 deletion docs/content/developer/getting-started/local-network.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ After you build your local version of IOTA Wallet, you can add the extension to
3. Click the **Load unpacked** button and select your `apps/wallet/dist` directory in your local copy of the [IOTA repository](../advanced/iota-repository.mdx).

Consult the IOTA
Wallet [Readme](https://github.com/iotaledger/iota/blob/main/apps/wallet/README.md#install-the-extension-to-chrome) for
Wallet [Readme](https://github.com/iotaledger/iota/blob/develop/apps/wallet/README.md#install-the-extension-to-chrome) for
more information on working with a locally built wallet on Chrome is needed.

## Generate example data
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ This approach is particularly useful in scenarios like implementing flash loans.
```move file=<rootDir>/docs/examples/move/move-overview/patterns/hot-potato.move
```

The [Flash Loan](https://github.com/iotaledger/iota/blob/main/examples/move/flash_lender/sources/example.move) example specifically illustrates the hot potato pattern described in this topic.
The [Flash Loan](https://github.com/iotaledger/iota/blob/develop/examples/move/flash_lender/sources/example.move) example specifically illustrates the hot potato pattern described in this topic.

<Quiz questions={questions} />
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@ such as a marketplace listing.
```move file=<rootDir>/docs/examples/move/move-overview/patterns/id-pointer.move
```

This pattern is demonstrated in the [Hero](https://github.com/iotaledger/iota/blob/main/examples/move/hero/sources/example.move) example.
This pattern is demonstrated in the [Hero](https://github.com/iotaledger/iota/blob/develop/examples/move/hero/sources/example.move) example.

<Quiz questions={questions} />
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ This carrier can be sent to authorized users, who can then extract the witness w

## Related Examples

For more insights and practical implementations of advanced authorization patterns in Move, consider exploring the [Hero](https://github.com/iotaledger/iota/blob/main/examples/move/hero/sources/example.move) example.
For more insights and practical implementations of advanced authorization patterns in Move, consider exploring the [Hero](https://github.com/iotaledger/iota/blob/develop/examples/move/hero/sources/example.move) example.
This example demonstrates how transferable witnesses and similar patterns can be applied to build secure and robust smart contracts on the IOTA platform.

<Quiz questions={questions} />
2 changes: 1 addition & 1 deletion docs/content/developer/iota-101/objects/object-model.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,6 @@ such as those owned by a single address.
IOTA imposes certain limits on transactions and the data used within them,
including maximum sizes and the number of objects involved.

The `ProtocolConfig` struct in the [`iota-protocol-config` crate](https://github.com/iotaledger/iota/blob/main/crates/iota-protocol-config/src/lib.rs) itemizes these limits. Expand the following code to see the `ProtocolConfig` struct and the comments that explain each parameter.
The `ProtocolConfig` struct in the [`iota-protocol-config` crate](https://github.com/iotaledger/iota/blob/develop/crates/iota-protocol-config/src/lib.rs) itemizes these limits. Expand the following code to see the `ProtocolConfig` struct and the comments that explain each parameter.

<Quiz questions={questions} />
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Once frozen, the object can no longer be mutated.
You should only freeze an object when you are sure it no longer requires any modifications.

For example,
the [color_object example module](https://github.com/iotaledger/iota/blob/main/examples/move/color_object/sources/example.move) includes a test
the [color_object example module](https://github.com/iotaledger/iota/blob/develop/examples/move/color_object/sources/example.move) includes a test
that creates a new `ColorObject`,
then calls `public_freeze_object` to make it immutable:

Expand Down
2 changes: 1 addition & 1 deletion docs/site/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ const config = {
alt: "IOTA Wiki Logo",
src: "/logo/iota-logo.svg",
},
copyright: `Copyright © ${new Date().getFullYear()} <a href='https://www.iota.org/'>IOTA Stiftung</a>, licensed under <a href="https://github.com/iotaledger/iota/blob/main/docs/site/LICENSE">CC BY 4.0</a>.
copyright: `Copyright © ${new Date().getFullYear()} <a href='https://www.iota.org/'>IOTA Stiftung</a>, licensed under <a href="https://github.com/iotaledger/iota/blob/develop/docs/site/LICENSE">CC BY 4.0</a>.
The documentation on this website is adapted from the <a href='https://docs.sui.io/'>SUI Documentation</a>, © 2024 by <a href='https://sui.io/'>SUI Foundation</a>, licensed under <a href="https://github.com/MystenLabs/sui/blob/main/docs/site/LICENSE">CC BY 4.0</a>.`,
},
socials: [
Expand Down
4 changes: 2 additions & 2 deletions nre/validator_tasks.md
Original file line number Diff line number Diff line change
Expand Up @@ -418,13 +418,13 @@ This release process will be different and we expect to announce the directory f
<!-- Our public key to verify these binaries would be stored [here](https://<TODO_SECURITY_FIXES_URL>/iota_security_release.pem) -->

You can download all the necessary signed binaries and docker artifacts incorporating the security fixes by using
the [download_private.sh](https://github.com/iotaledger/iota/blob/main/nre/download_private.sh)
the [download_private.sh](https://github.com/iotaledger/iota/blob/develop/nre/download_private.sh)

Usage
`./download_private.sh <directory-name>`

You can also download and verify specific binaries that may not be included by the above script using
the [download_and_verify_private_binary.sh](https://github.com/iotaledger/iota/blob/main/nre/download_and_verify_private_binary.sh)
the [download_and_verify_private_binary.sh](https://github.com/iotaledger/iota/blob/develop/nre/download_and_verify_private_binary.sh)
script.

Usage:
Expand Down
6 changes: 3 additions & 3 deletions sdk/typescript/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ For more complete docs, visit the
> **Note**: This package is currently supported **only in Testnet and Devnet**, it is **not yet supported in Mainnet**.

This is the IOTA TypeScript SDK built on the IOTA
[JSON RPC API](https://github.com/iotaledger/iota/blob/main/docs/content/references/iota-api.mdx).
[JSON RPC API](https://github.com/iotaledger/iota/blob/develop/docs/content/references/iota-api.mdx).
It provides utility classes and functions for applications to sign transactions and interact with
the IOTA network.

Expand All @@ -22,7 +22,7 @@ upcoming TestNet launch.

The SDK will be published to [npm registry](https://www.npmjs.com/package/@iota/iota-sdk) with the
same bi-weekly release cycle as the Devnet validators and
[RPC Server](https://github.com/iotaledger/iota/blob/main/docs/content/references/iota-api.mdx). To
[RPC Server](https://github.com/iotaledger/iota/blob/develop/docs/content/references/iota-api.mdx). To
use the SDK in your project, you can do:

```bash
Expand All @@ -43,7 +43,7 @@ npm install @iota/iota-sdk@experimental
```

Refer to the
[JSON RPC](https://github.com/iotaledger/iota/blob/main/docs/content/references/iota-api.mdx) topic
[JSON RPC](https://github.com/iotaledger/iota/blob/develop/docs/content/references/iota-api.mdx) topic
for instructions about how to start a local network and local RPC server.

## Building Locally
Expand Down
Loading