Skip to content
This repository has been archived by the owner on Jul 16, 2024. It is now read-only.

Commit

Permalink
chore: update ledger-subquery submodule to v1.x
Browse files Browse the repository at this point in the history
  • Loading branch information
bryanchriswhite committed Dec 19, 2022
1 parent 2eaeb01 commit a0571be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ledger-subquery
Submodule ledger-subquery updated 94 files
+58 −0 .github/ISSUE_TEMPLATE/bug-report.yml
+51 −0 .github/ISSUE_TEMPLATE/feature-request.yml
+14 −0 .github/pull_request_template.md
+33 −0 .github/workflows/python.yml
+32 −0 .pylintrc
+132 −0 CODE_OF_CONDUCT.md
+6 −1 Pipfile
+605 −306 Pipfile.lock
+49 −16 README.md
+1 −0 docker-compose.yml
+2 −2 docker/api.dockerfile
+6 −6 docker/node-cosmos/dist/main.js
+5 −0 docker/node.dockerfile
+1 −1 docs/assets/architecture.puml
+15 −15 docs/assets/architecture.svg
+0 −95 docs/assets/entities.svg
+21 −17 docs/assets/entities_api.puml
+101 −0 docs/assets/entities_api.svg
+66 −0 docs/assets/entities_db.puml
+87 −0 docs/assets/entities_db.svg
+4 −5 docs/assets/entities_legend.puml
+16 −45 docs/assets/entities_legend.svg
+49 −3 docs/introduction.md
+23 −0 k8s/subquery/conf/healthcheck.sh
+7 −0 k8s/subquery/templates/health/configmap.yaml
+40 −0 k8s/subquery/templates/health/cronjob.yaml
+4 −0 k8s/subquery/values.yaml
+134 −0 migrations/committed/000003.sql
+12 −0 migrations/committed/000004.sql
+12 −0 migrations/committed/000005.sql
+12 −0 migrations/committed/000006.sql
+12 −0 migrations/committed/000007.sql
+1 −1 migrations/current.ts
+59 −0 migrations/src/000003.ts
+6 −4 package.json
+21 −10 schema.graphql
+38 −0 setup.cfg
+65 −44 src/genesis/cli/args.py
+2 −2 src/genesis/db/__init__.py
+19 −10 src/genesis/db/table_manager.py
+4 −2 src/genesis/genesis.py
+1 −1 src/genesis/helpers/__init__.py
+41 −58 src/genesis/helpers/field_enums.py
+12 −11 src/genesis/observers/__init__.py
+52 −29 src/genesis/observers/accounts.py
+72 −32 src/genesis/observers/balances.py
+18 −9 src/genesis/observers/chain_id.py
+3 −3 src/genesis/state/__init__.py
+3 −3 src/genesis/state/bank.py
+3 −3 src/genesis/state/utils.py
+5 −1 src/mappings/authz/exec.ts
+15 −2 src/mappings/bank/balanceChange.ts
+5 −1 src/mappings/bank/transfer.ts
+14 −2 src/mappings/dist/rewards.ts
+5 −1 src/mappings/gov/votes.ts
+5 −1 src/mappings/ibc/transfer.ts
+59 −9 src/mappings/primitives.ts
+74 −3 src/mappings/utils.ts
+12 −4 src/mappings/wasm/bridge.ts
+29 −6 src/mappings/wasm/contracts.ts
+31 −10 src/mappings/wasm/cw20.ts
+1 −1 subql
+1 −1 tests/__init__.py
+1 −1 tests/e2e/db/__init__.py
+9 −8 tests/e2e/db/test_table_manager.py
+1 −1 tests/e2e/entities/__init__.py
+158 −89 tests/e2e/entities/test_CW20_balance_change.py
+130 −54 tests/e2e/entities/test_CW20_transfer.py
+69 −52 tests/e2e/entities/test_authz_exec.py
+293 −126 tests/e2e/entities/test_contract_deploy.py
+109 −48 tests/e2e/entities/test_delegation_reward_claim.py
+141 −68 tests/e2e/entities/test_execute_contract_message.py
+158 −113 tests/e2e/entities/test_gov_proposal_vote.py
+132 −54 tests/e2e/entities/test_legacy_bridge_swap.py
+91 −25 tests/e2e/entities/test_native_balances.py
+193 −63 tests/e2e/entities/test_native_primitives.py
+133 −55 tests/e2e/entities/test_native_transfer.py
+1 −1 tests/e2e/observers/__init__.py
+32 −29 tests/e2e/observers/test_accounts.py
+41 −26 tests/e2e/observers/test_balances.py
+4 −10 tests/e2e/observers/test_chain_id.py
+1 −1 tests/helpers/__init__.py
+11 −10 tests/helpers/clients.py
+42 −58 tests/helpers/contracts.py
+10 −8 tests/helpers/entity_test.py
+6 −6 tests/helpers/genesis_data.py
+0 −1 tests/helpers/gql_queries.py
+17 −7 tests/helpers/graphql.py
+4 −3 tests/helpers/regexes.py
+8 −9 tests/helpers/utils.py
+2 −2 tests/unit/genesis/__init__.py
+4 −5 tests/unit/genesis/state/test_bank.py
+10 −14 tests/unit/genesis/test_genesis.py
+6 −0 tracing-compose.yml

0 comments on commit a0571be

Please sign in to comment.