You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Request Network SDK has a supported chains allowlist list baked into it. This allowlist is used by the request-cleint.js, payment-processor, and payment-detection packages.
Creating / paying / detecting balances on other chains is not supported.
Proposed Solution
Make the chains list injectable into the payment detectors and the RequestNetwork object.
constrequestNetwork=newRequestNetwork({
decryptionProvider,
signatureProvider,
currencyManager,
chains,// if no compatible balance detector is found, the balance will be null. balanceDetectors: [newEvmTheGraphBalanceDetector(chains,currencyManager),newNearTheGraphBalanceDetector(chains),newBtcBalanceDetector(),newSolanaBalanceDetector(),newSuperfluidBalanceDetector(chains),// ...]})
The text was updated successfully, but these errors were encountered:
Problem
The Request Network SDK has a supported chains allowlist list baked into it. This allowlist is used by the
request-cleint.js
,payment-processor
, andpayment-detection
packages.Creating / paying / detecting balances on other chains is not supported.
Proposed Solution
Make the chains list injectable into the payment detectors and the
RequestNetwork
object.The text was updated successfully, but these errors were encountered: