Skip to content

Commit

Permalink
feat: revert back toString()
Browse files Browse the repository at this point in the history
  • Loading branch information
gomesalexandre committed Dec 18, 2024
1 parent 6707876 commit 2009e84
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export class SolanaDirectAdapter {

static async create(isolatedKey: SecP256K1.ECDSAKey): Promise<SolanaDirectAdapter> {
const pubkey = await isolatedKey.getPublicKey();
const address = new PublicKey(pubkey).toBase58();
const address = new PublicKey(pubkey).toString();
return new SolanaDirectAdapter(isolatedKey, pubkey, address);
}

Expand Down

0 comments on commit 2009e84

Please sign in to comment.