Skip to content
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: 0 additions & 2 deletions docs/data/rpc/api-reference/methods/getTransaction.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ import { RpcMethod } from "@site/src/components/RpcMethod";

The example above is querying details of a transaction using RPC methods directly. If you are using the Stellar SDK to build applications, you can use the native functions to get the same information.

<div>
<CodeExample>

```python
Expand Down Expand Up @@ -73,4 +72,3 @@ public class GetTransactionExample {
```

</CodeExample>
</div>
3 changes: 0 additions & 3 deletions docs/data/rpc/api-reference/methods/sendTransaction.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ import { CodeExample } from "@site/src/components/CodeExample";

The example above is sending a transaction using RPC methods directly. If you are using the Stellar SDK to build applications, you can use the native functions to get the same information.

<br />
<div>
<CodeExample>

```python
Expand Down Expand Up @@ -136,4 +134,3 @@ public class SendTransactionExample {
```

</CodeExample>
</div>
1 change: 1 addition & 0 deletions src/theme/ApiItem/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import DocItem from '@theme-original/DocItem';
export default function ApiItemWrapper(props) {
if (
props.location?.pathname?.includes('api-reference')
&& !props.location?.pathname?.includes('rpc')
) {
return (
<>
Expand Down