@gearbox-protocol/sdk 8.28.0 → 8.28.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -93,7 +93,7 @@ const DRPC_NETS = {
|
|
|
93
93
|
};
|
|
94
94
|
function getDrpcUrl(network, apiKey, protocol) {
|
|
95
95
|
const net = DRPC_NETS[network];
|
|
96
|
-
return net ? `${protocol}s://lb.drpc.org
|
|
96
|
+
return net ? `${protocol}s://lb.drpc.org/${net}/${apiKey}` : void 0;
|
|
97
97
|
}
|
|
98
98
|
// Annotate the CommonJS export names for ESM import in node:
|
|
99
99
|
0 && (module.exports = {
|
|
@@ -67,7 +67,7 @@ const DRPC_NETS = {
|
|
|
67
67
|
};
|
|
68
68
|
function getDrpcUrl(network, apiKey, protocol) {
|
|
69
69
|
const net = DRPC_NETS[network];
|
|
70
|
-
return net ? `${protocol}s://lb.drpc.org
|
|
70
|
+
return net ? `${protocol}s://lb.drpc.org/${net}/${apiKey}` : void 0;
|
|
71
71
|
}
|
|
72
72
|
export {
|
|
73
73
|
createTransport,
|