Skip to content
Open
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
4 changes: 2 additions & 2 deletions .env
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
VITE_INFO_GRAPH=https://api.studio.thegraph.com/query/50593/integral-v12/v1.0.0
VITE_INFO_GRAPH=https://api.studio.thegraph.com/query/82608/ve-analytics/v0.0.1
VITE_BLOCKS_GRAPH=https://api.studio.thegraph.com/query/50593/base-testnet-blocks/version/latest
VITE_FARMING_GRAPH=https://gateway.thegraph.com/api/4d7b59e4fd14365ae609945af85f3938/subgraphs/id/9vgT17hNEzkU5rboq6mGfuKZcyyFzaVwSm2XvcVipXih
VITE_FARMING_GRAPH=https://api.studio.thegraph.com/query/82608/ve-farms/v0.0.1
VITE_INFURA_RPC=https://base-sepolia-rpc.publicnode.com
VITE_WALLETCONNECT_PROJECT_ID=79c313a96c99edbc26d06cd97bff1126
4 changes: 2 additions & 2 deletions codegen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ import type { CodegenConfig } from "@graphql-codegen/cli";
const config: CodegenConfig = {
overwrite: true,
schema: [
"https://api.studio.thegraph.com/query/50593/integral-v12/version/latest",
"https://api.studio.thegraph.com/query/82608/ve-analytics/v0.0.1",
"https://api.studio.thegraph.com/query/50593/goerli-blocks/version/latest",
"https://api.studio.thegraph.com/query/50593/integral-v12-farming/version/latest",
"https://api.studio.thegraph.com/query/82608/ve-farms/v0.0.1",
],
documents: "src/graphql/queries/!(*.d).{ts,tsx}",
generates: {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"dependencies": {
"@apollo/client": "^3.9.6",
"@cryptoalgebra/alm-sdk": "^1.0.9",
"@cryptoalgebra/custom-pools-and-sliding-fee-sdk": "npm:@cryptoalgebra/integral-sdk@1.0.0",
"@cryptoalgebra/custom-pools-and-sliding-fee-sdk": "npm:@cryptoalgebra/integral-sdk@1.0.1",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-select": "^2.0.0",
Expand Down
17 changes: 9 additions & 8 deletions src/abis/index.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
export * from './eternalFarming';
export * from './farmingCenter';
export * from './algebraPool';
export * from './algebraFactory';
export * from './pluginFactory';
export * from './algebraBasePlugin';
export * from './algebraVirtualPool'
export * from './algebraStubPlugin'
export * from "./eternalFarming";
export * from "./farmingCenter";
export * from "./algebraPool";
export * from "./algebraFactory";
export * from "./pluginFactory";
export * from "./algebraBasePlugin";
export * from "./algebraVirtualPool";
export * from "./algebraStubPlugin";
export * from "./ve33";
2 changes: 2 additions & 0 deletions src/abis/ve33/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export * from "./voter";
export * from "./votingReward";
Loading