From b6c9e1d0b6a881e55f6e59d4a7fdde588c5a7bd3 Mon Sep 17 00:00:00 2001 From: Jane Wang Date: Thu, 12 Feb 2026 12:18:03 -0500 Subject: [PATCH 1/3] Add Stellar Router SDK --- docs/tools/sdks/contract-sdks.mdx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/tools/sdks/contract-sdks.mdx b/docs/tools/sdks/contract-sdks.mdx index b7eb9c3c62..969cfdd4f9 100644 --- a/docs/tools/sdks/contract-sdks.mdx +++ b/docs/tools/sdks/contract-sdks.mdx @@ -78,3 +78,9 @@ Refer to the [OpenZeppelin for Stellar Contracts](../openzeppelin-contracts.mdx# ## Stellar Axelar Std Derive Rust Crate Axelar has created a Rust crate with useful macros for Stellar smart contract development. Please see Rust Crate [`stellar_axelar_std_derive`](https://axelarnetwork.github.io/axelar-amplifier-stellar/stellar_axelar_std_derive/index.html) for Attribute Macros and Derive Macros, and additional information. + +### Stellar Router SDK + +The Stellar Router SDK is a lightweight smart contract that enables developers to execute multiple Soroban contract calls within a single transaction. While Soroban normally allows only one contract invocation per transaction, the Router bundles multiple calls through a single entry point, effectively enable complex, multi-step workflows to be executed atomically. + +Stellar Router SDK: https://github.com/Creit-Tech/Stellar-Router-SDK From b8cc3ba3a7bdf2979b5242c9f46635975a7c80c1 Mon Sep 17 00:00:00 2001 From: Jane Wang Date: Thu, 12 Feb 2026 16:56:54 -0500 Subject: [PATCH 2/3] Update docs/tools/sdks/contract-sdks.mdx Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- docs/tools/sdks/contract-sdks.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tools/sdks/contract-sdks.mdx b/docs/tools/sdks/contract-sdks.mdx index 969cfdd4f9..643d4e12b6 100644 --- a/docs/tools/sdks/contract-sdks.mdx +++ b/docs/tools/sdks/contract-sdks.mdx @@ -81,6 +81,6 @@ Axelar has created a Rust crate with useful macros for Stellar smart contract de ### Stellar Router SDK -The Stellar Router SDK is a lightweight smart contract that enables developers to execute multiple Soroban contract calls within a single transaction. While Soroban normally allows only one contract invocation per transaction, the Router bundles multiple calls through a single entry point, effectively enable complex, multi-step workflows to be executed atomically. +The Stellar Router SDK is a lightweight smart contract that enables developers to execute multiple Soroban contract calls within a single transaction. While Soroban normally allows only one contract invocation per transaction, the Router bundles multiple calls through a single entry point, effectively enabling complex, multi-step workflows to be executed atomically. Stellar Router SDK: https://github.com/Creit-Tech/Stellar-Router-SDK From 4b38d3940139d8159c3766cd05eb05e7c11fa788 Mon Sep 17 00:00:00 2001 From: Jane Wang Date: Fri, 13 Feb 2026 10:38:25 -0500 Subject: [PATCH 3/3] Add terminology --- docs/tools/sdks/contract-sdks.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/tools/sdks/contract-sdks.mdx b/docs/tools/sdks/contract-sdks.mdx index 643d4e12b6..5400b827ba 100644 --- a/docs/tools/sdks/contract-sdks.mdx +++ b/docs/tools/sdks/contract-sdks.mdx @@ -79,8 +79,8 @@ Refer to the [OpenZeppelin for Stellar Contracts](../openzeppelin-contracts.mdx# Axelar has created a Rust crate with useful macros for Stellar smart contract development. Please see Rust Crate [`stellar_axelar_std_derive`](https://axelarnetwork.github.io/axelar-amplifier-stellar/stellar_axelar_std_derive/index.html) for Attribute Macros and Derive Macros, and additional information. -### Stellar Router SDK +### Stellar Multicall / Router SDK -The Stellar Router SDK is a lightweight smart contract that enables developers to execute multiple Soroban contract calls within a single transaction. While Soroban normally allows only one contract invocation per transaction, the Router bundles multiple calls through a single entry point, effectively enabling complex, multi-step workflows to be executed atomically. +The Stellar Router SDK is a lightweight multicall contract that enables developers to execute multiple Soroban contract calls within a single transaction. While Soroban normally allows only one contract invocation per transaction, the Router bundles multiple calls through a single entry point, effectively enable complex, multi-step workflows to be executed atomically. Stellar Router SDK: https://github.com/Creit-Tech/Stellar-Router-SDK