-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
:plus: add deps and patch web3.storage
- Loading branch information
1 parent
cf48e49
commit 52baf54
Showing
4 changed files
with
3,188 additions
and
64 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,3 @@ | ||
# Deep linking API demo application | ||
This repo contains a demo application written with React Native that showcases Phantom's deep linking API. | ||
# NiftyClick - Click. Edit. Mint. | ||
|
||
[API Documentation](https://docs.phantom.app/integrating/deeplinks) | ||
|
||
## Getting started | ||
```sh | ||
# install dependencies | ||
$ yarn | ||
# start metro bundler | ||
$ yarn start | ||
``` | ||
Built at Solana Summer Camp '22. By @ritvij14, @priyansh71 & @arihantbansal. |
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,26 @@ | ||
diff --git a/node_modules/web3.storage/dist/src/lib/interface.d.ts b/node_modules/web3.storage/dist/src/lib/interface.d.ts | ||
index 5907830..e1237e1 100644 | ||
--- a/node_modules/web3.storage/dist/src/lib/interface.d.ts | ||
+++ b/node_modules/web3.storage/dist/src/lib/interface.d.ts | ||
@@ -11,7 +11,7 @@ export declare type Tagged<T, Tag> = T & { | ||
tag?: Tag; | ||
}; | ||
export interface Service { | ||
- endpoint: URL; | ||
+ endpoint?: URL; | ||
token: string; | ||
rateLimiter?: RateLimiter; | ||
fetch?: typeof _fetch; | ||
diff --git a/node_modules/web3.storage/src/lib/interface.ts b/node_modules/web3.storage/src/lib/interface.ts | ||
index fa7c090..54ba44b 100644 | ||
--- a/node_modules/web3.storage/src/lib/interface.ts | ||
+++ b/node_modules/web3.storage/src/lib/interface.ts | ||
@@ -13,7 +13,7 @@ import { | ||
export type Tagged<T, Tag> = T & { tag?: Tag } | ||
|
||
export interface Service { | ||
- endpoint: URL | ||
+ endpoint?: URL | ||
token: string | ||
rateLimiter?: RateLimiter | ||
fetch?: typeof _fetch |
Oops, something went wrong.