-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: ignore local project files * feat: init multichain * chore: remove unused olf chain files * ci: deploy multiple indexers * fix: modify deployment * fix: eth specific indexer version * fix: indexer version * fix: avoid specity workers for EVM * fix: no arrays for endpoints * ci: ignore cid files * 167 extend data model to include evm accounts (#171) * feat: extend data model to include EVM accounts Fixes #167 * feat: extend data model to include EVM accounts Fixes #167 * ci: deploy only cfg * fix: currency init logic * 169 support additional borrower transaction type (#172) * feat: support additional borrowerTransactionType DebtTransferred Fixes #169 * feat: support additional borrowerTransactionType DebtTransfer Fixes #169 * chore: upgrde indexer to 3.4.6 * chore: node upgrade * Update src/mappings/handlers/loansHandlers.ts Co-authored-by: Jeroen <[email protected]> * Update chains-evm/base.yaml Co-authored-by: Jeroen <[email protected]> * fix: update node versions --------- Co-authored-by: Jeroen <[email protected]>
- Loading branch information
Showing
35 changed files
with
1,862 additions
and
840 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
name: 'centrifuge-subql' | ||
repository: 'https://github.com/embrio-tech/centrifuge-subql' | ||
network: | ||
endpoint: wss://fullnode.demo.k-f.dev/public-ws | ||
chainId: '0xe0e40f62affe742eb92d75c07830671ef3e0cc6efc1ecaf81cf34a28148e91f0' | ||
chaintypes: | ||
file: ./dist/chaintypes.js | ||
dataSources: | ||
- kind: substrate/Runtime | ||
startBlock: 1534900 #1st October 2023 |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
specVersion: 1.0.0 | ||
name: centrifuge-pools | ||
version: 1.0.0 | ||
runner: | ||
node: | ||
name: '@subql/node-ethereum' | ||
version: '3' | ||
query: | ||
name: '@subql/query' | ||
version: '2' | ||
description: 'SubQuery API powered by EMBRIO.tech to query Centrifuge chain data for analytics insights on how Centrifuge is unlocking economic opportunity for all by connecting people to borrow and lend money transparently and cost-effectively.' | ||
repository: https://github.com/centrifuge/pools-subql | ||
schema: | ||
file: './schema.graphql' | ||
dataSources: | ||
- kind: ethereum/Runtime | ||
startBlock: 9787696 | ||
options: | ||
abi: poolManager | ||
address: '0x53c155d44C03CC28f892f90aA0C442850716D75F' | ||
assets: | ||
poolManager: | ||
file: './poolManager.abi.json' | ||
mapping: | ||
file: './dist/index.js' | ||
handlers: | ||
- handler: handleEvmDeployTranche | ||
kind: ethereum/LogHandler | ||
filter: | ||
topics: | ||
- DeployTranche(uint64 indexed poolId, bytes16 indexed trancheId, address indexed token) | ||
templates: | ||
- name: TrancheTracker | ||
kind: ethereum/Runtime | ||
options: | ||
abi: erc20 | ||
assets: | ||
erc20: | ||
file: './erc20.abi.json' | ||
mapping: | ||
file: ./dist/index.js | ||
handlers: | ||
- handler: handleEvmTransfer | ||
kind: ethereum/LogHandler | ||
filter: | ||
topics: | ||
- Transfer(address indexed from, address indexed to, uint256 value) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
network: | ||
chainId: '5' #Goerli | ||
endpoint: "https://goerli.infura.io/v3/${ETH_NODE_API_KEY}" | ||
dictionary: "https://dict-tyk.subquery.network/query/eth-goerli" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
name: 'centrifuge-subql' | ||
repository: 'https://github.com/embrio-tech/centrifuge-subql' | ||
network: | ||
chainId: '5' #Goerli | ||
endpoint: "https://goerli.infura.io/v3/${ETH_NODE_API_KEY}" | ||
dictionary: "https://dict-tyk.subquery.network/query/eth-goerli" |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.