Skip to content

Commit 2f9e7d4

Browse files
committed
fix on sonala-rpc md for better readability
1 parent 1607be2 commit 2f9e7d4

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

docs/advanced/multichain/rpc-reference/solana-rpc.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -76,23 +76,23 @@ This method returns a signature over the provided instructions by the targeted p
7676

7777
### Parameters
7878

79-
1. `Object` - Signing parameters:
80-
1.1. [deprecated] `feePayer` : `String` - public key of the transaction fee payer
81-
1.2. [deprecated] `instructions` : `Array` - instructions to be atomically executed:
82-
1.2.1. `Object` - instruction
83-
1.2.1.1. `programId` : `String` - public key of the on chain program
84-
1.2.1.2. `data` : `String | undefined` - encoded calldata for instruction
85-
1.2.1.3. `keys` : `Array` - account metadata used to define instructions
86-
1.2.1.3.1. `Object` - key
87-
1.2.1.3.1.1. `isSigner` : `Boolean` - true if an instruction requires a transaction signature matching `pubkey`
88-
1.2.1.3.1.2. `isWritable` : `Boolean` - true if the `pubkey` can be loaded as a read-write account
89-
1.2.1.3.1.3. `pubkey` : `String` - public key of authorized program
90-
1.3. [deprecated] `recentBlockhash` : `String` - a recent blockhash
91-
1.4. [deprecated] `partialSignatures` : `Array`, - (optional) previous partial signatures for this instruction set
92-
1.4.1. `Object` - partial signature
93-
1.4.1.2. `pubkey` : `String` - pubkey of the signer
94-
1.4.1.1. `signature` : `String` - signature matching `pubkey`
95-
1.5. `transaction` : `String`, - base64-encoded serialized transaction
79+
`Object` - Signing parameters:<br />
80+
- **[deprecated]** `feePayer` : `String` - public key of the transaction fee payer<br />
81+
- **[deprecated]** `instructions` : `Array` of `Object` - instructions to be atomically executed:<br />
82+
&nbsp;- `Object` - instruction<br />
83+
&emsp;- `programId` : `String` - public key of the on chain program<br />
84+
&emsp;- `data` : `String | undefined` - encoded calldata for instruction<br />
85+
&emsp;- `keys` : `Array` of `Object`- account metadata used to define instructions<br />
86+
&emsp;&emsp;- `Object` - key<br />
87+
&emsp;&emsp;&emsp;- `isSigner` : `Boolean` - true if an instruction requires a transaction signature matching `pubkey`<br />
88+
&emsp;&emsp;&emsp;- `isWritable` : `Boolean` - true if the `pubkey` can be loaded as a read-write account<br />
89+
&emsp;&emsp;&emsp;- `pubkey` : `String` - public key of authorized program<br />
90+
- **[deprecated]** `recentBlockhash` : `String` - a recent blockhash<br />
91+
- **[deprecated]** `signatures` : `Array` of `Object`, - (optional) previous partial signatures for this instruction set<br />
92+
&nbsp;- `Object` - partial signature<br />
93+
&emsp;- `pubkey` : `String` - pubkey of the signer<br />
94+
&emsp;- `signature` : `String` - signature matching `pubkey`<br />
95+
- `transaction` : `String`, - base64-encoded serialized transaction<br />
9696

9797
### Returns
9898

0 commit comments

Comments
 (0)