Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Historical emission efficiency #28

Merged
merged 2 commits into from
Oct 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions src/apollo/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ export const auraAvalancheClient = new ApolloClient({
});

export const client = new ApolloClient({
uri: EthereumNetworkInfo.clientUri,
uri: EthereumNetworkInfo.decentralicedClientUri,
cache: new InMemoryCache({
typePolicies: {
Token: {
Expand Down Expand Up @@ -282,7 +282,7 @@ export const client = new ApolloClient({
});

export const arbitrumClient = new ApolloClient({
uri: ArbitrumNetworkInfo.clientUri,
uri: ArbitrumNetworkInfo.decentralicedClientUri,
cache: new InMemoryCache({
typePolicies: {
Token: {
Expand Down Expand Up @@ -325,7 +325,7 @@ export const arbitrumClient = new ApolloClient({
})

export const polygonClient = new ApolloClient({
uri: PolygonNetworkInfo.clientUri,
uri: PolygonNetworkInfo.decentralicedClientUri,
cache: new InMemoryCache({
typePolicies: {
Token: {
Expand Down Expand Up @@ -368,7 +368,7 @@ export const arbitrumClient = new ApolloClient({
})

export const gnosisClient = new ApolloClient({
uri: GnosisNetworkInfo.clientUri,
uri: GnosisNetworkInfo.decentralicedClientUri,
cache: new InMemoryCache({
typePolicies: {
Token: {
Expand Down Expand Up @@ -396,7 +396,7 @@ export const arbitrumClient = new ApolloClient({
})

export const polygonZKEVMClient = new ApolloClient({
uri: PolygonZkEVMNetworkInfo.clientUri,
uri: PolygonZkEVMNetworkInfo.decentralicedClientUri,
cache: new InMemoryCache({
typePolicies: {
Token: {
Expand Down Expand Up @@ -454,7 +454,7 @@ export const polygonZKEVMBlockClient = new ApolloClient({
})

export const optimismClient = new ApolloClient({
uri: OptimismNetworkInfo.clientUri,
uri: OptimismNetworkInfo.decentralicedClientUri,
cache: new InMemoryCache({
typePolicies: {
Token: {
Expand Down Expand Up @@ -512,7 +512,7 @@ export const baseBlockClient = new ApolloClient({
})

export const baseClient = new ApolloClient({
uri: BaseNetworkInfo.clientUri,
uri: BaseNetworkInfo.decentralicedClientUri,
cache: new InMemoryCache({
typePolicies: {
Token: {
Expand Down Expand Up @@ -540,7 +540,7 @@ export const baseClient = new ApolloClient({
})

export const avalancheClient = new ApolloClient({
uri: AvalancheNetworkInfo.clientUri,
uri: AvalancheNetworkInfo.decentralicedClientUri,
cache: new InMemoryCache({
typePolicies: {
Token: {
Expand Down
Loading
Loading