-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #47 from subquery/update/ts-manifest
Update/ts manifest
- Loading branch information
Showing
457 changed files
with
2,550 additions
and
62,871 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: PR | ||
on: | ||
pull_request: | ||
paths-ignore: | ||
- '.github/workflows/**' | ||
jobs: | ||
pr: | ||
name: pr | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup Node.js environment | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: 18 | ||
- run: yarn | ||
- name: codegen | ||
run: yarn codegen | ||
# Need to update tsconfig inputs paths for this to work | ||
# - name: build | ||
# run: yarn build | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
import { | ||
SubqlCosmosDatasourceKind, | ||
SubqlCosmosHandlerKind, | ||
CosmosProject | ||
} from "@subql/types-cosmos"; | ||
|
||
|
||
// Can expand the Datasource processor types via the genreic param | ||
const project: CosmosProject = { | ||
specVersion: "1.0.0", | ||
version: "0.0.1", | ||
name: "agoric-starter", | ||
description: | ||
"This project can be use as a starting point for developing your Cosmos agoric based SubQuery project", | ||
runner: { | ||
node: { | ||
name: "@subql/node-cosmos", | ||
version: ">=3.0.0", | ||
}, | ||
query: { | ||
name: "@subql/query", | ||
version: "*", | ||
}, | ||
}, | ||
schema: { | ||
file: "./schema.graphql", | ||
}, | ||
network: { | ||
/* The genesis hash of the network (hash of block 0) */ | ||
chainId: | ||
"agoric-3", | ||
/** | ||
* This endpoint must be a public non-pruned archive node | ||
* Public nodes may be rate limited, which can affect indexing speed | ||
* When developing your project we suggest getting a private API key | ||
* You can get them from OnFinality for free https://app.onfinality.io | ||
* https://documentation.onfinality.io/support/the-enhanced-api-service | ||
*/ | ||
endpoint: ["https://agoric-rpc.stakely.io"], | ||
dictionary: "https://api.subquery.network/sq/subquery/agoric-dictionary", | ||
chaintypes: new Map([ | ||
["cosmos.slashing.v1beta1", {file: "./proto/cosmos/slashing/v1beta1/tx.proto", messages: ["MsgUnjail"]}], | ||
["cosmos.gov.v1beta1", {file: "./proto/cosmos/gov/v1beta1/tx.proto", messages: ["MsgVoteWeighted"]}], | ||
["cosmos.gov.v1beta1.gov", { | ||
file: "./proto/cosmos/gov/v1beta1/gov.proto", | ||
messages: ["WeightedVoteOption"] | ||
}], | ||
]) | ||
}, | ||
dataSources: [ | ||
{ | ||
kind: SubqlCosmosDatasourceKind.Runtime, | ||
startBlock: 11628269, | ||
mapping: { | ||
file: './dist/index.js', | ||
handlers: [ | ||
// { | ||
// Using block handlers slows your project down as they can be executed with each and every block. | ||
// Only use if you need to | ||
// handler: 'handleEvent', | ||
// kind: SubqlCosmosHandlerKind.Block, | ||
// }, | ||
{ | ||
handler: 'handleEvent', | ||
kind: SubqlCosmosHandlerKind.Event, | ||
filter: { | ||
type: 'transfer', | ||
messageFilter: { | ||
type: '/cosmos.bank.v1beta1.MsgSend' | ||
} | ||
} | ||
}, | ||
{ | ||
handler: 'handleMessage', | ||
kind: SubqlCosmosHandlerKind.Message, | ||
filter: { | ||
type: '/cosmos.bank.v1beta1.MsgSend' | ||
} | ||
} | ||
] | ||
}, | ||
}, | ||
], | ||
}; | ||
|
||
export default project; |
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.
Oops, something went wrong.