Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: kalidao/wrappr-subgraph
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: meemproject/codeslaw-wrappr-subgraph
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 1 commit
  • 4 files changed
  • 1 contributor

Commits on Mar 5, 2023

  1. goerli subgraph

    kengoldfarb committed Mar 5, 2023
    Copy the full SHA
    7d60249 View commit details
Showing with 503 additions and 44 deletions.
  1. +10 −10 networks.json
  2. +2 −2 package.json
  3. +4 −4 subgraph.yaml
  4. +487 −28 yarn.lock
20 changes: 10 additions & 10 deletions networks.json
Original file line number Diff line number Diff line change
@@ -1,61 +1,61 @@
{
"rinkeby": {
"WrapprFactory": {
"address": "0xA945f46Ca376B18fB34d809ef4F21f9b58AE4C50",
"address": "0x1240606EC9cD1655B26158d206C5Ffa45094d253",
"startBlock": 11217310
}
},
"goerli": {
"WrapprFactory": {
"address": "0xA945f46Ca376B18fB34d809ef4F21f9b58AE4C50",
"address": "0x1240606EC9cD1655B26158d206C5Ffa45094d253",
"startBlock": 7419157
}
},
"mainnet": {
"WrapprFactory": {
"address": "0xA945f46Ca376B18fB34d809ef4F21f9b58AE4C50",
"address": "0x1240606EC9cD1655B26158d206C5Ffa45094d253",
"startBlock": 15389606
}
},
"optimism": {
"WrapprFactory": {
"address": "0xA945f46Ca376B18fB34d809ef4F21f9b58AE4C50",
"address": "0x1240606EC9cD1655B26158d206C5Ffa45094d253",
"startBlock": 20146671
}
},
"bsc": {
"WrapprFactory": {
"address": "0xA945f46Ca376B18fB34d809ef4F21f9b58AE4C50",
"address": "0x1240606EC9cD1655B26158d206C5Ffa45094d253",
"startBlock": 20661558
}
},
"xdai": {
"WrapprFactory": {
"address": "0xA945f46Ca376B18fB34d809ef4F21f9b58AE4C50",
"address": "0x1240606EC9cD1655B26158d206C5Ffa45094d253",
"startBlock": 23828505
}
},
"matic": {
"WrapprFactory": {
"address": "0xA945f46Ca376B18fB34d809ef4F21f9b58AE4C50",
"address": "0x1240606EC9cD1655B26158d206C5Ffa45094d253",
"startBlock": 32182984
}
},
"fantom": {
"WrapprFactory": {
"address": "0xA945f46Ca376B18fB34d809ef4F21f9b58AE4C50",
"address": "0x1240606EC9cD1655B26158d206C5Ffa45094d253",
"startBlock": 45442765
}
},
"arbitrum-one": {
"WrapprFactory": {
"address": "0xA945f46Ca376B18fB34d809ef4F21f9b58AE4C50",
"address": "0x1240606EC9cD1655B26158d206C5Ffa45094d253",
"startBlock": 20948140
}
},
"avalanche": {
"WrapprFactory": {
"address": "0xA945f46Ca376B18fB34d809ef4F21f9b58AE4C50",
"address": "0x1240606EC9cD1655B26158d206C5Ffa45094d253",
"startBlock": 18971154
}
}
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@
"scripts": {
"codegen": "graph codegen",
"build": "graph build",
"deploy-goerli": "graph codegen && graph build --network goerli && graph deploy --node https://api.thegraph.com/deploy/ nerderlyne/wrappr-goerli",
"deploy-goerli": "graph codegen && graph build --network goerli && graph deploy --node https://api.thegraph.com/deploy/ --studio codeslaw nerderlyne/wrappr-goerli",
"deploy-mainnet": "graph codegen && graph build --network mainnet && graph deploy --node https://api.thegraph.com/deploy/ nerderlyne/wrappr-mainnet",
"deploy-optimism": "graph codegen && graph build --network optimism && graph deploy --node https://api.thegraph.com/deploy/ nerderlyne/wrappr-optimism",
"deploy-bsc": "graph codegen && graph build --network bsc && graph deploy --node https://api.thegraph.com/deploy/ nerderlyne/wrappr-bsc",
@@ -20,7 +20,7 @@
"format": "prettier --write \"**/*.{jsx,md,js,mjs,ts,tsx}\""
},
"dependencies": {
"@graphprotocol/graph-cli": "0.33.0",
"@graphprotocol/graph-cli": "^0.42.3",
"@graphprotocol/graph-ts": "0.27.0"
},
"devDependencies": {
8 changes: 4 additions & 4 deletions subgraph.yaml
Original file line number Diff line number Diff line change
@@ -4,11 +4,11 @@ schema:
dataSources:
- kind: ethereum
name: WrapprFactory
network: mainnet
network: goerli
source:
abi: WrapprFactory
address: "0xA945f46Ca376B18fB34d809ef4F21f9b58AE4C50"
startBlock: 15389606
address: "0x1240606EC9cD1655B26158d206C5Ffa45094d253"
startBlock: 7419157
mapping:
kind: ethereum/events
apiVersion: 0.0.6
@@ -26,7 +26,7 @@ dataSources:
templates:
- name: Wrappr
kind: ethereum/contract
network: mainnet
network: goerli
source:
abi: Wrappr
mapping:
Loading