This repository has been archived by the owner on May 7, 2024. It is now read-only.
forked from centrifuge/api
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix CI for different chains and non EVM environments (#88)
* 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 <1748621+hieronx@users.noreply.github.com> * Update chains-evm/base.yaml Co-authored-by: Jeroen <1748621+hieronx@users.noreply.github.com> * fix: update node versions * fix: add missing chain files * 165 implement transfer inout mechanism (#178) * feat: implement transfer in/out mechanism Fixes #165 * feat: implement transfer in/out mechanism Fixes #165 * chore: implement transfer in/out mechanism Fixes #165 * feat: adapt data model to be chain independent * fix: end of line * feat: implement transfer in/out mechanism Fixes #165 * feat: implement new currency model for orml tokens * fix: implement transfer in/out mechanism Fixes #165 * fix: implement transfer in/out mechanism Fixes #165 * fix: implement transfer in/out mechanism Fixes #165 * fix: implement transfer in/out mechanism Fixes #165 * fix: update tests * fix: endpoints * fix: transfer typo * feat: connect to BASE EVM Chain (#179) Fixes #175 * ci: improve deployment logic * ci: fix * ci: fix * ci: fix * Delete project-coinbase.yaml * fix: ignore project files * ci: handle missing multichain files * ci: fix yaml multiline * ci: improve build resilience * ci: improve build resilience * ci: remove unrequired chains * ci: rename files * ci: fix base file naming * fix: ci naming * ci: fix chains * ci: fix dev contract --------- Co-authored-by: Jeroen <1748621+hieronx@users.noreply.github.com>
- Loading branch information
Showing
17 changed files
with
115 additions
and
83 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -139,6 +139,5 @@ src/types | |
.data/ | ||
|
||
**/project.yaml | ||
**/project-centrifuge.yaml | ||
**/project-ethereum.yaml | ||
**/project-*.yaml | ||
*-cid |
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
This file was deleted.
Oops, something went wrong.
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,9 @@ | ||
network: | ||
chainId: '8453' #Base Mainnet | ||
endpoint: https://mainnet.base.org | ||
dictionary: "https://api.subquery.network/sq/subquery/base-dictionary" | ||
dataSources: | ||
- kind: ethereum/Runtime | ||
startBlock: 8053055 | ||
options: | ||
address: '0x78E9e622A57f70F1E0Ec652A4931E4e278e58142' |
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,9 @@ | ||
network: | ||
chainId: '84531' #Base Goerli | ||
endpoint: https://goerli.base.org | ||
dictionary: "https://api.subquery.network/sq/subquery/base-goerli-dictionary" | ||
dataSources: | ||
- kind: ethereum/Runtime | ||
startBlock: 13078300 | ||
options: | ||
address: '0xa5Beda1F48a07740b8f4bDb223C861Cc7702b14e' |
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,11 @@ | ||
name: 'centrifuge-subql' | ||
repository: 'https://github.com/embrio-tech/centrifuge-subql' | ||
network: | ||
chainId: '84531' #Goerli | ||
endpoint: https://goerli.base.org | ||
dictionary: "https://api.subquery.network/sq/subquery/base-goerli-dictionary" | ||
dataSources: | ||
- kind: ethereum/Runtime | ||
startBlock: 13078300 | ||
options: | ||
address: '0xa5Beda1F48a07740b8f4bDb223C861Cc7702b14e' |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,9 @@ | ||
network: | ||
chainId: '1' # Ethereum Mainnet | ||
endpoint: "https://mainnet.infura.io/v3/a4ba76cd4be643618572e7467a444e3a" | ||
dictionary: "https://gx.api.subquery.network/sq/subquery/eth-dictionary" | ||
dataSources: | ||
- kind: ethereum/Runtime | ||
startBlock: 18671269 | ||
options: | ||
address: '0x78E9e622A57f70F1E0Ec652A4931E4e278e58142' |
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,9 @@ | ||
network: | ||
chainId: '5' #Ethereum Goerli | ||
endpoint: "https://goerli.infura.io/v3/a4ba76cd4be643618572e7467a444e3a" | ||
dictionary: "https://dict-tyk.subquery.network/query/eth-goerli" | ||
dataSources: | ||
- kind: ethereum/Runtime | ||
startBlock: 10055835 | ||
options: | ||
address: '0x53c155d44C03CC28f892f90aA0C442850716D75F' |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,4 +4,5 @@ query: | |
version: '2' | ||
projects: | ||
- project-centrifuge.yaml | ||
- project-base.yaml | ||
- project-ethereum.yaml |