Skip to content

Commit b1136a6

Browse files
authored
fix: sui characters break mdx renderer (#893)
* fix: sui characters break mdx renderer * fix: escape all uses of brackets in sui methods --------- Co-authored-by: dslovinsky <[email protected]>
1 parent 9437c07 commit b1136a6

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/openrpc/chains/_components/sui_unsafe/methods.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ components:
1515
type: string
1616
- name: input_coins
1717
required: true
18-
description: List of Coin<SUI> object IDs to use, including the one used for gas.
18+
description: List of Coin&lt;SUI&gt; object IDs to use, including the one used for gas.
1919
schema:
2020
type: array
2121
items:
@@ -100,7 +100,7 @@ components:
100100
type: string
101101
- name: input_coins
102102
required: true
103-
description: List of Coin<SUI> object IDs to use, including the one used for gas.
103+
description: List of Coin&lt;SUI&gt; object IDs to use, including the one used for gas.
104104
schema:
105105
type: array
106106
items:
@@ -282,7 +282,7 @@ components:
282282
type: string
283283
- name: coins
284284
required: true
285-
description: A list of Coin<SUI> object IDs to be used for staking.
285+
description: A list of Coin&lt;SUI&gt; object IDs to be used for staking.
286286
schema:
287287
type: array
288288
items:
@@ -1147,9 +1147,9 @@ components:
11471147

11481148
unsafe_pay:
11491149
name: unsafe_pay
1150-
summary: Send Coin<T> to a list of addresses
1150+
summary: Send Coin&lt;T&gt; to a list of addresses
11511151
description: >
1152-
Create an unsigned transaction to send Coin<T> to a list of recipients,
1152+
Create an unsigned transaction to send Coin&lt;T&gt; to a list of recipients,
11531153
where T can be any coin type. The specified gas object must not appear
11541154
in the input_coins array. If not provided, the node will select one automatically.
11551155
params:
@@ -1160,7 +1160,7 @@ components:
11601160
type: string
11611161
- name: input_coins
11621162
required: true
1163-
description: List of Coin<T> object IDs to use for sending value.
1163+
description: List of Coin&lt;T&gt; object IDs to use for sending value.
11641164
schema:
11651165
type: array
11661166
items:
@@ -1191,7 +1191,7 @@ components:
11911191
type: string
11921192
result:
11931193
name: result
1194-
description: Unsigned transaction for sending Coin<T>.
1194+
description: Unsigned transaction for sending Coin&lt;T&gt;.
11951195
schema:
11961196
type: object
11971197
properties:
@@ -1216,7 +1216,7 @@ components:
12161216
items:
12171217
type: object
12181218
examples:
1219-
- name: Transfer Coin<T> to 1 recipient
1219+
- name: Transfer Coin&lt;T&gt; to 1 recipient
12201220
params:
12211221
- name: signer
12221222
value: "0x00c364252964511b32b084c17a492093d5b762cbe2766d46911912718e56950f"

0 commit comments

Comments
 (0)