Skip to content

Commit

Permalink
refactor: return base64 signed message
Browse files Browse the repository at this point in the history
  • Loading branch information
kranthicodes committed Jul 13, 2023
1 parent 227a0ee commit d3ee86d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/sdk/src/wallet/Ordit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ export class Ordit {
signMessage(message: string) {
const signature = sign(message, this.#keyPair.privateKey!);

return signature.toString("hex");
return signature.toString("base64");
}

async relayTx(hex: string, network?: Network) {
Expand Down

0 comments on commit d3ee86d

Please sign in to comment.