-
Notifications
You must be signed in to change notification settings - Fork 4
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
HTML return patching, 6 domain part support, sepolia ENS #27
Conversation
…support for 6 subdomain links, for ENS suddomain support (e.g. dblog.dblog.eth.31337.w3link.io)
Hi @nand2, it seems like an interesting feature, can you describe a little about the background and motivation? |
Hi! Sure! It's about contracts interacting with other contracts. When a smart contract website A only interact with itself with javascript But when a smart contract A wants to interact with smart contract B, then it has to use absolute URLs : Until now, for small contracts, when we reached this issue, we kind of managed by modifying the architecture of the website, but as websites go bigger, it has to be the other way around. The proposed patch is injecting javascript that look for these absolute web3:// URLs and replace them by their gateway HTTP URLs. Thanks! |
The PR merged and deployed to w3link.io. When accessing https://dblog.eth.11155111.w3link.io/ I got |
Do you also deploy the ENS support in the config file? |
For this, you need :
in the config. |
Ok saw the short name change from w3q-t to es-t, will deploy a version using this new short name for chain 3333. |
This one works, would you like to make the change in this PR? @nand2 |
Hi!
This adds:
dblog.dblog.eth.11155111.w3link.io
Thanks!