-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Multiple Porter URIs #553
Multiple Porter URIs #553
Conversation
f4a868a
to
d5faf67
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Very fine
Welcome on board
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great work here! 👏
I have some small suggestions, any of them is a blocker.
@vzotova Can we hold off on merging this into |
Of course |
Let's put this PR into a separate EPIC branch. |
mainnet: 'https://porter.nucypher.community', | ||
tapir: 'https://porter-tapir.nucypher.community', | ||
oryx: 'https://porter-oryx.nucypher.community', | ||
lynx: 'https://porter-lynx.nucypher.community', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We're trying to deprecate the .community
domain in favor of the .io
domain. I know it's a little but out of scope but it's a quick and easy change to include here. #549
mainnet: 'https://porter.nucypher.community', | |
tapir: 'https://porter-tapir.nucypher.community', | |
oryx: 'https://porter-oryx.nucypher.community', | |
lynx: 'https://porter-lynx.nucypher.community', | |
mainnet: 'https://porter.nucypher.io', | |
tapir: 'https://porter-tapir.nucypher.io', | |
lynx: 'https://porter-lynx.nucypher.io', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
addressed in #555
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does this PR intend to integrate with the porter URIs from the nucypher/nucypher-porter repo?
Ah, nevermind. I see you have already opened #555.
https://raw.githubusercontent.com/nucypher/nucypher-porter/development/porter_instances.json
✅ Deploy Preview for taco-demo ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
✅ Deploy Preview for taco-nft-demo ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
@@ -61,7 +61,7 @@ export const encryptMessage = async ( | |||
export const retrieveAndDecrypt = async ( | |||
provider: ethers.providers.Provider, | |||
domain: Domain, | |||
porterUri: string, | |||
porterUris: string[], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't believe the functions in this module are exposed externally as part of the taco-web
library. Would it be simpler to create the PorterClient
object in the taco.ts
module and pass that object in instead of the string array, or does that cause other issues?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd need help with that, I'm not that familiar with taco-web to answer your questions.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will be addressed vi #560 - #560 (comment).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🎸
Type of PR:
Required reviews:
What this does:
Issues fixed/closed:
Refs #320
Why it's needed:
Notes for reviewers:
Based on #527