Skip to content

Commit

Permalink
feat(docs): update signingClients docs
Browse files Browse the repository at this point in the history
  • Loading branch information
codingki committed Aug 17, 2023
1 parent 26277d9 commit 024b928
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
5 changes: 4 additions & 1 deletion docs/docs/hooks/useCosmWasmSigningClient.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@ function App() {
#### Params

```tsx
args?: { opts?: SigningCosmWasmClientOptions }
args?: {
opts?: SigningCosmWasmClientOptions;
offlineSigner?: "offlineSigner" | "offlineSignerAuto" | "offlineSignerOnlyAmino";
}
```

#### Return Value
Expand Down
1 change: 1 addition & 0 deletions docs/docs/hooks/useCosmWasmTmSigningClient.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ function App() {
args?: {
type: "tm34" | "tm37";
opts?: SigningCosmWasmClientOptions;
offlineSigner?: "offlineSigner" | "offlineSignerAuto" | "offlineSignerOnlyAmino";
}
```

Expand Down
5 changes: 4 additions & 1 deletion docs/docs/hooks/useStargateSigningClient.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@ function App() {
#### Params

```tsx
args?: { opts?: SigningStargateClientOptions }
args?: {
opts?: SigningCosmWasmClientOptions;
offlineSigner?: "offlineSigner" | "offlineSignerAuto" | "offlineSignerOnlyAmino";
}
```

#### Return Value
Expand Down
3 changes: 2 additions & 1 deletion docs/docs/hooks/useStargateTmSigningClient.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ function App() {
```tsx
args?: {
type: "tm34" | "tm37";
opts?: SigningStargateClientOptions;
opts?: SigningCosmWasmClientOptions;
offlineSigner?: "offlineSigner" | "offlineSignerAuto" | "offlineSignerOnlyAmino";
}
```

Expand Down

0 comments on commit 024b928

Please sign in to comment.