Skip to content

Commit

Permalink
Fixes after merging upstream
Browse files Browse the repository at this point in the history
  • Loading branch information
gruve-p committed Jan 17, 2025
1 parent bb999aa commit 4c106fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion class/deeplink-schema-match.ts
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ class DeeplinkSchemaMatch {

static bip21encode(address: string, options: TOptions): string {
// uppercase address if bech32 to satisfy BIP_0173
const isBech32 = address.startsWith('bc1');
const isBech32 = address.startsWith('grs1');
if (isBech32) {
address = address.toUpperCase();
}
Expand Down

0 comments on commit 4c106fb

Please sign in to comment.