Skip to content
Open
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ let trans = await new TransferTransaction()
.addHbarTransfer(toAccount, 1)
.freezeWithSigner(signer);

let response = await trans.signTransaction(signer);
let response = await trans.signWithSigner(signer);
```

#### Sign Message
Expand Down Expand Up @@ -368,4 +368,4 @@ export interface SessionData {
accountIds: string[];
network: string;
}
```
```