x402-chainlink
    Preparing search index...

    Function getFacilitatorDeployment

    • Look up the facilitator deployment for a given network.

      Parameters

      • network: EVMNetworkId

        CAIP-2 network identifier (e.g. "eip155:84532")

      Returns FacilitatorDeployment | undefined

      Deployment info, or undefined if not yet deployed on that network.

      const dep = getFacilitatorDeployment('eip155:84532');
      if (dep) {
      console.log(dep.address, dep.chainId);
      }