Skip to content

add infra tools #1492

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

Draft
wants to merge 9 commits into
base: main
Choose a base branch
from
Draft
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
10 changes: 10 additions & 0 deletions docs/tools/infra-tools/README.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
title: Infrastructure Tools
draft: false
---

import DocCardList from "@theme/DocCardList";

A list of network and infrastructure tools for Stellar.

<DocCardList />
33 changes: 33 additions & 0 deletions docs/tools/infra-tools/cross-chain.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
---
title: Cross-Chain
sidebar_label: Cross-Chain
sidebar_position: 10
---

Bridges and messaging layers that connect different blockchains.

## [Axelar](https://www.axelar.network/)

Axelar Network is the universal interoperability network that securely connects all blockchain ecosystems, applications, assets, and users.

Get set up to write cross-chain smart contracts on Stellar using Axelar in the following guides.

### Learn about the Stellar GMP contracts

General Message Passing (GMP) is a cross-chain communication protocol that allows smart contracts on different blockchains to communicate with each other. With GMP, Stellar contracts can:

- Send messages to contracts on other chains like Ethereum, Avalanche, Base, Polygon, etc.
- Receive and process messages from contracts on other chains.
- Execute cross-chain operations securely and efficiently.

[Dive into Stellar GMP documentation →](https://docs.axelar.dev/dev/general-message-passing/stellar-gmp/intro/)

### Learn about the Stellar Interchain Token Service (ITS)

The Interchain Token Service (ITS) enables tokens to scale across multiple chains by supporting both existing and newly minted tokens, preserving native-like fungibility and functionality on connected EVM chains, and automating deployment and maintenance to help teams easily manage supply on an open, scalable, and secure network. For the Stellar ecosystem, ITS offers:

- Creation of new tokens that can exist on multiple blockchains.
- Connecting existing Stellar tokens to other blockchain ecosystems.
- Secure transfers of tokens between Stellar and other chains.

[Learn how to use Axelar's ITS with Stellar →](https://docs.axelar.dev/dev/send-tokens/stellar/intro/)
10 changes: 10 additions & 0 deletions docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,16 @@ const config: Config = {
to: '/docs/tools/developer-tools',
label: 'More Developer Tools'
},
{
type: 'html',
value: '<hr><small>Infra Tools</small>',
className: 'subtitle',
},
{
to: '/docs/tools/infra-tools/cross-chain',
label: 'Cross-Chain',
activeBasePath: 'docs/tools/infra-tools/cross-chain'
},
{
type: 'html',
value: '<hr><small>SDF Platforms</small>',
Expand Down
2 changes: 2 additions & 0 deletions routes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -529,6 +529,8 @@
/docs/tools/developer-tools/openzepplin-contracts
/docs/tools/developer-tools/security-tools
/docs/tools/developer-tools/wallets
/docs/tools/infra-tools
/docs/tools/infra-tools/cross-chain
/docs/tools/lab
/docs/tools/lab/account
/docs/tools/lab/api-explorer
Expand Down