Skip to content

Commit

Permalink
Update RPC rate limits
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesbayly committed Jun 11, 2024
1 parent 3e5d12a commit 9b26103
Showing 1 changed file with 10 additions and 19 deletions.
29 changes: 10 additions & 19 deletions index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ type PublicRPC = {
explorer_url: string;
name: string;
description: string;
rate_limit: { burst: number; rate: number };
rate_limit: { rate: number; burst?: number };
example_request: string;
};

Expand Down Expand Up @@ -123,8 +123,7 @@ const networkFamilies: NetworkFamily[] = [
description:
"Connect in seconds to SubQuery's decentralised network of RPC node operators running around the world so your dApps benefit from more reliable, scalable, and affordable RPC services. By accessing this public RPC endpoint, you agree to our [Free Public RPC terms of service](https://subquery.foundation/public-rpc-terms).",
rate_limit: {
burst: 1000,
rate: 100,
rate: 50,
},
explorer_url:
"https://app.subquery.network/explorer/project/0x23/overview",
Expand Down Expand Up @@ -378,8 +377,7 @@ const networkFamilies: NetworkFamily[] = [
description:
"Connect in seconds to SubQuery's decentralised network of RPC node operators running around the world so your dApps benefit from more reliable, scalable, and affordable RPC services. By accessing this public RPC endpoint, you agree to our [Free Public RPC terms of service](https://subquery.foundation/public-rpc-terms).",
rate_limit: {
burst: 1000,
rate: 100,
rate: 50,
},
explorer_url:
"https://app.subquery.network/explorer/project/0x06/overview",
Expand Down Expand Up @@ -623,8 +621,7 @@ const networkFamilies: NetworkFamily[] = [
description:
"Connect in seconds to SubQuery's decentralised network of RPC node operators running around the world so your dApps benefit from more reliable, scalable, and affordable RPC services. By accessing this public RPC endpoint, you agree to our [Free Public RPC terms of service](https://subquery.foundation/public-rpc-terms).",
rate_limit: {
burst: 1000,
rate: 100,
rate: 50,
},
explorer_url:
"https://app.subquery.network/explorer/project/0x2d/overview",
Expand Down Expand Up @@ -1079,8 +1076,7 @@ const networkFamilies: NetworkFamily[] = [
description:
"Connect in seconds to SubQuery's decentralised network of RPC node operators running around the world so your dApps benefit from more reliable, scalable, and affordable RPC services. By accessing this public RPC endpoint, you agree to our [Free Public RPC terms of service](https://subquery.foundation/public-rpc-terms).",
rate_limit: {
burst: 1000,
rate: 100,
rate: 50,
},
explorer_url:
"https://app.subquery.network/explorer/project/0x04/overview",
Expand Down Expand Up @@ -1130,8 +1126,7 @@ const networkFamilies: NetworkFamily[] = [
description:
"Connect in seconds to SubQuery's decentralised network of RPC node operators running around the world so your dApps benefit from more reliable, scalable, and affordable RPC services. By accessing this public RPC endpoint, you agree to our [Free Public RPC terms of service](https://subquery.foundation/public-rpc-terms).",
rate_limit: {
burst: 1000,
rate: 100,
rate: 50,
},
explorer_url:
"https://app.subquery.network/explorer/project/0x27/overview",
Expand Down Expand Up @@ -1732,8 +1727,7 @@ const networkFamilies: NetworkFamily[] = [
description:
"Connect in seconds to SubQuery's decentralised network of RPC node operators running around the world so your dApps benefit from more reliable, scalable, and affordable RPC services. By accessing this public RPC endpoint, you agree to our [Free Public RPC terms of service](https://subquery.foundation/public-rpc-terms).",
rate_limit: {
burst: 1000,
rate: 100,
rate: 50,
},
explorer_url:
"https://app.subquery.network/explorer/project/0x2f/overview",
Expand Down Expand Up @@ -1797,8 +1791,7 @@ const networkFamilies: NetworkFamily[] = [
description:
"Connect in seconds to SubQuery's decentralised network of RPC node operators running around the world so your dApps benefit from more reliable, scalable, and affordable RPC services. By accessing this public RPC endpoint, you agree to our [Free Public RPC terms of service](https://subquery.foundation/public-rpc-terms).",
rate_limit: {
burst: 1000,
rate: 100,
rate: 50,
},
explorer_url:
"https://app.subquery.network/explorer/project/0x25/overview",
Expand Down Expand Up @@ -4113,8 +4106,7 @@ const networkFamilies: NetworkFamily[] = [
description:
"Connect in seconds to SubQuery's decentralised network of RPC node operators running around the world so your dApps benefit from more reliable, scalable, and affordable RPC services. By accessing this public RPC endpoint, you agree to our [Free Public RPC terms of service](https://subquery.foundation/public-rpc-terms).",
rate_limit: {
burst: 1000,
rate: 100,
rate: 50,
},
explorer_url:
"https://app.subquery.network/explorer/project/0x31/overview",
Expand Down Expand Up @@ -4393,8 +4385,7 @@ const networkFamilies: NetworkFamily[] = [
description:
"Connect in seconds to SubQuery's decentralised network of RPC node operators running around the world so your dApps benefit from more reliable, scalable, and affordable RPC services. By accessing this public RPC endpoint, you agree to our [Free Public RPC terms of service](https://subquery.foundation/public-rpc-terms).",
rate_limit: {
burst: 1000,
rate: 100,
rate: 50,
},
explorer_url:
"https://app.subquery.network/explorer/project/0x30/overview",
Expand Down

0 comments on commit 9b26103

Please sign in to comment.