Skip to content

Commit

Permalink
feat: Release SDK v1.6.0 and Subgraphs V1
Browse files Browse the repository at this point in the history
  • Loading branch information
alainncls committed Apr 26, 2024
1 parent 01d701a commit 0315000
Show file tree
Hide file tree
Showing 4 changed files with 81 additions and 21 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -251,13 +251,13 @@ Here are the addresses on those networks:
## Subgraphs Addresses

- [Linea Goerli](https://api.goldsky.com/api/public/project_clqghnrbp9nx201wtgylv8748/subgraphs/verax/subgraph-testnet/gn)
- [Linea Sepolia](https://api.studio.thegraph.com/query/67946/verax-v1-linea-sepolia/v0.0.1)
- [Linea Sepolia](https://api.studio.thegraph.com/query/67521/verax-v1-linea-sepolia/v0.0.1)
- [Linea Mainnet](https://graph-query.linea.build/subgraphs/name/Consensys/linea-attestation-registry/graphql)
- [Arbitrum Goerli](https://api.thegraph.com/subgraphs/name/cliqueofficial/verax-arbitrum-goerli)
- [Arbitrum Mainnet](https://api.thegraph.com/subgraphs/name/cliqueofficial/verax-arbitrum)
- [Arbitrum Nova](https://api.goldsky.com/api/public/project_clr9aj9alwgwg01q7ci1rh781/subgraphs/verax-arbitrum-nova/0.0.5/gn)
- [Base Sepolia](https://api.studio.thegraph.com/query/67946/verax-v1-base-sepolia/v0.0.1)
- [Base Mainnet](https://api.studio.thegraph.com/query/67946/verax-v1-base/v0.0.1)
- [Base Sepolia](https://api.studio.thegraph.com/query/67521/verax-v1-base-sepolia/v0.0.1)
- [Base Mainnet](https://api.studio.thegraph.com/query/67521/verax-v1-base/v0.0.1)

## License

Expand Down
87 changes: 73 additions & 14 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@
"babel-plugin-transform-import-meta": "^2.2.1",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1"
"ts-node": "^10.9.1",
"typescript": "5.4.5"
}
}
6 changes: 3 additions & 3 deletions sdk/src/VeraxSdk.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export class VeraxSdk {
static DEFAULT_LINEA_SEPOLIA: Conf = {
chain: lineaSepolia,
mode: SDKMode.BACKEND,
subgraphUrl: "https://api.studio.thegraph.com/query/67946/verax-v1-linea-sepolia/v0.0.1",
subgraphUrl: "https://api.studio.thegraph.com/query/67521/verax-v1-linea-sepolia/v0.0.1",
portalRegistryAddress: "0xF35fe79104e157703dbCC3Baa72a81A99591744D",
moduleRegistryAddress: "0x3C443B9f0c8ed3A3270De7A4815487BA3223C2Fa",
schemaRegistryAddress: "0x90b8542d7288a83EC887229A7C727989C3b56209",
Expand Down Expand Up @@ -132,7 +132,7 @@ export class VeraxSdk {
static DEFAULT_BASE_SEPOLIA: Conf = {
chain: baseSepolia,
mode: SDKMode.BACKEND,
subgraphUrl: "https://api.studio.thegraph.com/query/67946/verax-v1-base-sepolia/v0.0.1",
subgraphUrl: "https://api.studio.thegraph.com/query/67521/verax-v1-base-sepolia/v0.0.1",
portalRegistryAddress: "0x025531b655D9EE335B8E6cc4C118b313f26ACc8F",
moduleRegistryAddress: "0xEC572277d4E87a64DcfA774ED219Dd4E69E4BDc6",
schemaRegistryAddress: "0x66D2F3DCc970343b83a6263E20832184fa71CFe7",
Expand All @@ -147,7 +147,7 @@ export class VeraxSdk {
static DEFAULT_BASE: Conf = {
chain: base,
mode: SDKMode.BACKEND,
subgraphUrl: "https://api.studio.thegraph.com/query/67946/verax-v1-base/v0.0.1",
subgraphUrl: "https://api.studio.thegraph.com/query/67521/verax-v1-base/v0.0.1",
portalRegistryAddress: "0xcbf28432C25B400E645F0EaC05F8954e8EE7c0d6",
moduleRegistryAddress: "0xAd0C12db58098A6665CBEf48f60eB67d81d1F1ff",
schemaRegistryAddress: "0x8081dCd745f160c148Eb5be510F78628A0951c31",
Expand Down

0 comments on commit 0315000

Please sign in to comment.