This repository has been archived by the owner on Dec 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* WC v2 WIP * feat: walletconnect v2 * feat: wc fixes and tests * fix: add cancelation and review fixes * chore: bump versions to alpha * fix: wallet example shenanigans * release: published alpha * fix: resurrection * release: published alpha.2 * fix: example wallet now works * release: published beta.1 * fix: CANCELED symbol and some PR review comments * release: published beta.2 * chore: eslint * release: published 5.0.1 * chore: test config * test: polyfill textencoder * fix: seem the beta bug still exists
- Loading branch information
1 parent
22532ac
commit 251c37d
Showing
71 changed files
with
5,211 additions
and
5,518 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
// https://github.com/achingbrain/uint8arrays/issues/21 | ||
// https://github.com/inrupt/solid-client-authn-js/issues/1676 | ||
// https://github.com/jsdom/jsdom/issues/2524 | ||
|
||
// Listed some (seemingly) related issues to what I'm encountering | ||
|
||
import '@testing-library/jest-dom'; | ||
|
||
import { TextDecoder, TextEncoder } from 'util'; | ||
|
||
if (typeof window !== 'undefined' && !('TextEncoder' in window)) { | ||
Object.defineProperty(window, 'TextEncoder', { | ||
writable: true, | ||
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment, @typescript-eslint/no-unsafe-member-access | ||
value: TextEncoder, | ||
}); | ||
Object.defineProperty(window, 'TextDecoder', { | ||
writable: true, | ||
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment | ||
value: TextDecoder, | ||
}); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.