Can I create a request without using a Request Node? #1297
Answered
by
MantisClone
MantisClone
asked this question in
Questions
|
Can I create a request without using a Request Node? |
Answered by
MantisClone
Dec 14, 2023
Replies: 1 comment
|
No. Today, a Request Node is required to interact with the Request Network IPFS Network. That said, it is possible to make the end-user pay the protocol fee when creating a request instead of the Request Node. To do this, inject an const requestNetwork = new RequestNetworkBase({
dataAccess: new HttpMetaMaskDataAccess({
ethereumProviderUrl: 'https://eth-mainnet.g.alchemy.com/v2/demo',
}), |
0 replies
Answer selected by
MantisClone
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
No. Today, a Request Node is required to interact with the Request Network IPFS Network. That said, it is possible to make the end-user pay the protocol fee when creating a request instead of the Request Node. To do this, inject an
HttpMetaMaskDataAccessinto the frontendRequestNetworkinstance.