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
a17a9e96
Commit
a17a9e96
authored
2 months ago
by
Michal Zander
Browse files
Options
Downloads
Patches
Plain Diff
Rename file to process_balances
parent
d33da28d
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
,
!153
New delegations
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
db/process_balances.sql
+0
-76
0 additions, 76 deletions
db/process_balances.sql
with
0 additions
and
76 deletions
db/process_b
lock_range
.sql
→
db/process_b
alances
.sql
+
0
−
76
View file @
a17a9e96
...
...
@@ -190,80 +190,4 @@ INTO __balance_history, __current_balances;
END
$$
;
CREATE
OR
REPLACE
FUNCTION
process_block_range_data
(
IN
_from
INT
,
IN
_to
INT
,
IN
_report_step
INT
=
1000
)
RETURNS
VOID
LANGUAGE
'plpgsql'
VOLATILE
SET
from_collapse_limit
=
16
SET
join_collapse_limit
=
16
SET
jit
=
OFF
AS
$$
DECLARE
_result
INT
;
BEGIN
--RAISE NOTICE 'Processing delegations, rewards, savings, withdraws';)
--delegations (40,41,62)
--savings (32,33,34,59,55)
--rewards (39,51,52,63,53)
--withdraws (4,20,56)
--hardforks (60)
WITH
process_block_range_data_b
AS
MATERIALIZED
(
SELECT
ov
.
body_binary
::
jsonb
AS
body
,
ov
.
id
AS
source_op
,
ov
.
block_num
as
source_op_block
,
ov
.
op_type_id
FROM
operations_view
ov
WHERE
ov
.
op_type_id
IN
(
40
,
41
,
62
,
4
,
20
,
56
,
60
,
77
,
70
,
68
)
AND
ov
.
block_num
BETWEEN
_from
AND
_to
),
insert_balance
AS
MATERIALIZED
(
SELECT
pbr
.
source_op
,
pbr
.
source_op_block
,
(
CASE
WHEN
pbr
.
op_type_id
=
40
THEN
process_delegate_vesting_shares_operation
(
pbr
.
body
,
pbr
.
source_op
,
pbr
.
source_op_block
)
WHEN
pbr
.
op_type_id
=
41
THEN
process_account_create_with_delegation_operation
(
pbr
.
body
,
pbr
.
source_op
,
pbr
.
source_op_block
)
WHEN
pbr
.
op_type_id
=
62
THEN
process_return_vesting_delegation_operation
(
pbr
.
body
,
pbr
.
source_op
,
pbr
.
source_op_block
)
WHEN
pbr
.
op_type_id
=
4
THEN
process_withdraw_vesting_operation
(
pbr
.
body
,
(
SELECT
withdraw_rate
FROM
btracker_app_status
))
WHEN
pbr
.
op_type_id
=
20
THEN
process_set_withdraw_vesting_route_operation
(
pbr
.
body
)
WHEN
pbr
.
op_type_id
=
56
THEN
process_fill_vesting_withdraw_operation
(
pbr
.
body
,
(
SELECT
start_delayed_vests
FROM
btracker_app_status
))
WHEN
pbr
.
op_type_id
=
77
AND
(
SELECT
start_delayed_vests
FROM
btracker_app_status
)
=
TRUE
THEN
process_transfer_to_vesting_completed_operation
(
pbr
.
body
)
WHEN
pbr
.
op_type_id
=
70
AND
(
SELECT
start_delayed_vests
FROM
btracker_app_status
)
=
TRUE
THEN
process_delayed_voting_operation
(
pbr
.
body
)
WHEN
pbr
.
op_type_id
=
68
THEN
process_hardfork_hive_operation
(
pbr
.
body
)
WHEN
pbr
.
op_type_id
=
60
THEN
process_hardfork
(((
pbr
.
body
)
->
'value'
->>
'hardfork_id'
)::
INT
)
END
)
FROM
process_block_range_data_b
pbr
ORDER
BY
pbr
.
source_op_block
,
pbr
.
source_op
)
SELECT
COUNT
(
*
)
INTO
_result
FROM
insert_balance
;
END
$$
;
RESET
ROLE
;
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