Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Latest subquery changes #42

Open
wants to merge 25 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
cc71349
update docker-compose
Douglasacost Nov 8, 2023
48c642e
use npm
Douglasacost Nov 8, 2023
78f2a8a
Add .prettierrc configuration file
Douglasacost Nov 18, 2023
455dbbb
Update log level and disable historical in
Douglasacost Nov 18, 2023
54af4ad
Update dependencies and remove unused code
Douglasacost Nov 18, 2023
64f8390
Refactor collection and item creation logic
Douglasacost Nov 18, 2023
9ed9c27
Delete allocation handler and
Douglasacost Nov 18, 2023
ea76cfd
Fix checkIfExtrinsicExecuteSuccess function call
Douglasacost Nov 18, 2023
202f1b2
Fix bug in login functionality
Douglasacost Nov 18, 2023
06e0985
Update mappings and entities for Pot and
Douglasacost Nov 18, 2023
c33ad74
Add isReward field to BalanceTransfer model
Douglasacost Nov 18, 2023
dbc5a02
Refactor account balance handling and sponsorship functionality
Douglasacost Nov 21, 2023
b8c0778
Update TREASURY_ACCOUNT in
Douglasacost Nov 26, 2023
5bf64cf
Update Pot and Account Quota Fields
Douglasacost Nov 26, 2023
e7a4e45
Add skipTransactions option to runner and remove calls handlers
Douglasacost Nov 26, 2023
7742414
Update dependencies in package.json
Douglasacost Nov 29, 2023
5dfb954
Update dependencies and fix data type conversion
Douglasacost Dec 19, 2023
9c491df
Add feeQuotaBalance and reserveQuotaBalance to AccountPotBalance
Douglasacost Jan 7, 2024
051cea1
Add dependencies and update configuration***
Douglasacost Feb 19, 2024
8bb86e8
Refactor code to improve performance and readability
Douglasacost Mar 22, 2024
7864b7b
Update .gitignore and package.json
Apr 22, 2024
d46e445
Update dwellir rpc name
Apr 29, 2024
1c632e9
Update npm dependencies and configuration
Douglasacost May 23, 2024
979ce71
Merge branch 'feat/composed-index' of github.com:NodleCode/subquery i…
Douglasacost May 28, 2024
5d3fc1c
Update network configuration with new chainId and endpoint. Added new…
Douglasacost May 29, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ node_modules
dist/
src/types

.project-cid
.project-cid
.vscode/
6 changes: 6 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"trailingComma": "es5",
"tabWidth": 4,
"semi": false,
"singleQuote": true
}
7 changes: 4 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ services:
retries: 5

subquery-node:
image: onfinality/subql-node:v1.13.3
image: onfinality/subql-node:v3.4.2
depends_on:
"postgres":
condition: service_healthy
Expand All @@ -34,8 +34,9 @@ services:
command:
- -f=/app
- --db-schema=app
- --log-level=debug
- --disable-historical=false
- --log-level=info
- --disable-historical=true
aliXsed marked this conversation as resolved.
Show resolved Hide resolved
- --unsafe
healthcheck:
test: ["CMD", "curl", "-f", "http://subquery-node:3000/ready"]
interval: 3s
Expand Down
2 changes: 1 addition & 1 deletion docker/pg-Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM postgres:12-alpine
FROM postgres:latest

# Variables needed at runtime to configure postgres and run the initdb scripts
ENV POSTGRES_DB 'postgres'
Expand Down
11,461 changes: 11,461 additions & 0 deletions index.js

Large diffs are not rendered by default.

Loading
Loading