Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
balance_tracker
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
hive
balance_tracker
Commits
e79042b6
Commit
e79042b6
authored
1 month ago
by
Michal Zander
Browse files
Options
Downloads
Patches
Plain Diff
Add default for get_balance_delegations
parent
96d3fd50
No related branches found
No related tags found
2 merge requests
!168
Update return types: VEST balances should be returned as strings to address JSON limitations
,
!160
Add daily and monthly aggregations for balances
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
endpoints/account-balances/get_account_delegations.sql
+4
-5
4 additions, 5 deletions
endpoints/account-balances/get_account_delegations.sql
scripts/install_app.sh
+1
-0
1 addition, 0 deletions
scripts/install_app.sh
with
5 additions
and
5 deletions
endpoints/account-balances/get_account_delegations.sql
+
4
−
5
View file @
e79042b6
...
...
@@ -48,10 +48,9 @@ $$
DECLARE
_account_id
INT
=
(
SELECT
av
.
id
FROM
hive
.
accounts_view
av
WHERE
av
.
name
=
"account-name"
);
BEGIN
RETURN
(
SELECT
json_build_object
(
'outgoing_delegations'
,
(
'outgoing_delegations'
,
COALESCE
(
(
SELECT
to_json
(
array_agg
(
row
))
FROM
(
SELECT
(
SELECT
av
.
name
FROM
hive
.
accounts_view
av
WHERE
av
.
id
=
d
.
delegatee
)
AS
delegatee
,
...
...
@@ -61,8 +60,8 @@ BEGIN
FROM
current_accounts_delegations
d
WHERE
delegator
=
_account_id
)
row
),
'incoming_delegations'
,
(
),
'[]'
::
JSON
),
'incoming_delegations'
,
COALESCE
(
(
SELECT
to_json
(
array_agg
(
row
))
FROM
(
SELECT
(
SELECT
av
.
name
FROM
hive
.
accounts_view
av
WHERE
av
.
id
=
d
.
delegator
)
AS
delegator
,
...
...
@@ -72,7 +71,7 @@ BEGIN
FROM
current_accounts_delegations
d
WHERE
delegatee
=
_account_id
)
row
)
)
,
'[]'
::
JSON
)
)
);
END
...
...
This diff is collapsed.
Click to expand it.
scripts/install_app.sh
+
1
−
0
View file @
e79042b6
...
...
@@ -94,6 +94,7 @@ psql "$POSTGRES_ACCESS" -v ON_ERROR_STOP=on -c "SET SEARCH_PATH TO ${BTRACKER_S
psql
"
$POSTGRES_ACCESS
"
-v
ON_ERROR_STOP
=
on
-c
"SET SEARCH_PATH TO
${
BTRACKER_SCHEMA
}
;"
-f
"
$SCRIPTPATH
/../endpoints/account-balances/get_balance_history.sql"
psql
"
$POSTGRES_ACCESS
"
-v
ON_ERROR_STOP
=
on
-c
"SET SEARCH_PATH TO
${
BTRACKER_SCHEMA
}
;"
-f
"
$SCRIPTPATH
/../endpoints/account-balances/get_account_balances.sql"
psql
"
$POSTGRES_ACCESS
"
-v
ON_ERROR_STOP
=
on
-c
"SET SEARCH_PATH TO
${
BTRACKER_SCHEMA
}
;"
-f
"
$SCRIPTPATH
/../endpoints/account-balances/get_history_aggregation.sql"
psql
"
$POSTGRES_ACCESS
"
-v
ON_ERROR_STOP
=
on
-c
"SET SEARCH_PATH TO
${
BTRACKER_SCHEMA
}
;"
-f
"
$SCRIPTPATH
/../endpoints/account-balances/get_account_delegations.sql"
psql
"
$POSTGRES_ACCESS
"
-v
ON_ERROR_STOP
=
on
-c
"SET SEARCH_PATH TO
${
BTRACKER_SCHEMA
}
;"
-f
"
$SCRIPTPATH
/../dump_accounts/account_dump_schema.sql"
psql
"
$POSTGRES_ACCESS
"
-v
ON_ERROR_STOP
=
on
-c
"SET SEARCH_PATH TO
${
BTRACKER_SCHEMA
}
;"
-f
"
$SCRIPTPATH
/../dump_accounts/account_stats_btracker.sql"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment