@beblurt/blurt-nodes-checker 1.0.1 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +70 -83
- package/dist/blurt-nodes-checker.min.js +48 -5
- package/lib/helpers/index.d.ts +28 -10
- package/lib/helpers/index.js +20 -0
- package/lib/helpers/index.js.map +1 -1
- package/lib/index.d.ts +7 -4
- package/lib/index.js +130 -57
- package/lib/index.js.map +1 -1
- package/lib/test.d.ts +3 -1
- package/lib/test.js +86 -13
- package/lib/test.js.map +1 -1
- package/package.json +12 -11
- package/lib/helpers/BLOCK_API/GET_BLOCK.d.ts +0 -26
- package/lib/helpers/BLOCK_API/GET_BLOCK.js +0 -2
- package/lib/helpers/BLOCK_API/GET_BLOCK.js.map +0 -1
- package/lib/helpers/CONDENSER_API/DYNAMIC_GLOBAL_PROPERTIES.d.ts +0 -67
- package/lib/helpers/CONDENSER_API/DYNAMIC_GLOBAL_PROPERTIES.js +0 -2
- package/lib/helpers/CONDENSER_API/DYNAMIC_GLOBAL_PROPERTIES.js.map +0 -1
- package/lib/helpers/CONDENSER_API/GET_ACCOUNT.d.ts +0 -73
- package/lib/helpers/CONDENSER_API/GET_ACCOUNT.js +0 -2
- package/lib/helpers/CONDENSER_API/GET_ACCOUNT.js.map +0 -1
- package/lib/helpers/CONDENSER_API/GET_BLOG_ENTRY.d.ts +0 -7
- package/lib/helpers/CONDENSER_API/GET_BLOG_ENTRY.js +0 -2
- package/lib/helpers/CONDENSER_API/GET_BLOG_ENTRY.js.map +0 -1
- package/lib/helpers/CONDENSER_API/GET_CONFIG.d.ts +0 -174
- package/lib/helpers/CONDENSER_API/GET_CONFIG.js +0 -2
- package/lib/helpers/CONDENSER_API/GET_CONFIG.js.map +0 -1
- package/lib/helpers/CONDENSER_API/GET_CONTENT.d.ts +0 -54
- package/lib/helpers/CONDENSER_API/GET_CONTENT.js +0 -2
- package/lib/helpers/CONDENSER_API/GET_CONTENT.js.map +0 -1
- package/lib/helpers/CONDENSER_API/GET_DISCUSSION.d.ts +0 -39
- package/lib/helpers/CONDENSER_API/GET_DISCUSSION.js +0 -2
- package/lib/helpers/CONDENSER_API/GET_DISCUSSION.js.map +0 -1
|
@@ -1,67 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Large number that may be unsafe to represent natively in JavaScript.
|
|
3
|
-
*/
|
|
4
|
-
export declare type Bignum = string;
|
|
5
|
-
export declare type DYNAMIC_GLOBAL_PROPERTIES = {
|
|
6
|
-
id: number;
|
|
7
|
-
/**
|
|
8
|
-
* Current block height.
|
|
9
|
-
*/
|
|
10
|
-
head_block_number: number;
|
|
11
|
-
head_block_id: string;
|
|
12
|
-
/**
|
|
13
|
-
* UTC Server time, e.g. 2020-01-15T00:42:00
|
|
14
|
-
*/
|
|
15
|
-
time: string;
|
|
16
|
-
/**
|
|
17
|
-
* Currently elected witness.
|
|
18
|
-
*/
|
|
19
|
-
current_witness: string;
|
|
20
|
-
/**
|
|
21
|
-
* Current Supply
|
|
22
|
-
*/
|
|
23
|
-
current_supply: string;
|
|
24
|
-
/**
|
|
25
|
-
* Total asset held.
|
|
26
|
-
*/
|
|
27
|
-
total_vesting_fund_blurt: string;
|
|
28
|
-
total_vesting_shares: string;
|
|
29
|
-
total_reward_fund_blurt: string;
|
|
30
|
-
/**
|
|
31
|
-
* The running total of REWARD^2.
|
|
32
|
-
*/
|
|
33
|
-
total_reward_shares2: string;
|
|
34
|
-
pending_rewarded_vesting_shares: string;
|
|
35
|
-
pending_rewarded_vesting_blurt: string;
|
|
36
|
-
/**
|
|
37
|
-
* Maximum block size is decided by the set of active witnesses which change every round.
|
|
38
|
-
* Each witness posts what they think the maximum size should be as part of their witness
|
|
39
|
-
* properties, the median size is chosen to be the maximum block size for the round.
|
|
40
|
-
*
|
|
41
|
-
* @note the minimum value for maximum_block_size is defined by the protocol to prevent the
|
|
42
|
-
* network from getting stuck by witnesses attempting to set this too low.
|
|
43
|
-
*/
|
|
44
|
-
maximum_block_size: number;
|
|
45
|
-
/**
|
|
46
|
-
* The current absolute slot number. Equal to the total
|
|
47
|
-
* number of slots since genesis. Also equal to the total
|
|
48
|
-
* number of missed slots plus head_block_number.
|
|
49
|
-
*/
|
|
50
|
-
current_aslot: number;
|
|
51
|
-
/**
|
|
52
|
-
* Used to compute witness participation.
|
|
53
|
-
*/
|
|
54
|
-
recent_slots_filled: Bignum;
|
|
55
|
-
participation_count: number;
|
|
56
|
-
last_irreversible_block_num: number;
|
|
57
|
-
vote_power_reserve_rate: number;
|
|
58
|
-
delegation_return_period: number;
|
|
59
|
-
reverse_auction_seconds: number;
|
|
60
|
-
available_account_subsidies: number;
|
|
61
|
-
next_maintenance_time: string;
|
|
62
|
-
last_budget_time: string;
|
|
63
|
-
content_reward_percent: number;
|
|
64
|
-
vesting_reward_percent: number;
|
|
65
|
-
sps_fund_percent: number;
|
|
66
|
-
sps_interval_ledger: string;
|
|
67
|
-
};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"DYNAMIC_GLOBAL_PROPERTIES.js","sourceRoot":"","sources":["../../../src/helpers/CONDENSER_API/DYNAMIC_GLOBAL_PROPERTIES.ts"],"names":[],"mappings":""}
|
|
@@ -1,73 +0,0 @@
|
|
|
1
|
-
export declare type GET_ACCOUNT = {
|
|
2
|
-
id: number;
|
|
3
|
-
name: string;
|
|
4
|
-
owner: {
|
|
5
|
-
weight_threshold: number;
|
|
6
|
-
account_auths: Array<[string, number]>;
|
|
7
|
-
key_auths: Array<[string, number]>;
|
|
8
|
-
};
|
|
9
|
-
active: {
|
|
10
|
-
weight_threshold: number;
|
|
11
|
-
account_auths: Array<[string, number]>;
|
|
12
|
-
key_auths: Array<[string, number]>;
|
|
13
|
-
};
|
|
14
|
-
posting: {
|
|
15
|
-
weight_threshold: number;
|
|
16
|
-
account_auths: Array<[string, number]>;
|
|
17
|
-
key_auths: Array<[string, number]>;
|
|
18
|
-
};
|
|
19
|
-
memo_key: string;
|
|
20
|
-
json_metadata: string;
|
|
21
|
-
posting_json_metadata: string;
|
|
22
|
-
proxy: string;
|
|
23
|
-
last_owner_update: string;
|
|
24
|
-
last_account_update: string;
|
|
25
|
-
created: string;
|
|
26
|
-
mined: boolean;
|
|
27
|
-
recovery_account: string;
|
|
28
|
-
last_account_recovery: string;
|
|
29
|
-
reset_account: string;
|
|
30
|
-
comment_count: number;
|
|
31
|
-
lifetime_vote_count: number;
|
|
32
|
-
post_count: number;
|
|
33
|
-
can_vote: boolean;
|
|
34
|
-
voting_manabar: {
|
|
35
|
-
current_mana: string;
|
|
36
|
-
last_update_time: number;
|
|
37
|
-
};
|
|
38
|
-
voting_power: number;
|
|
39
|
-
balance: string;
|
|
40
|
-
savings_balance: string;
|
|
41
|
-
savings_withdraw_requests: number;
|
|
42
|
-
reward_blurt_balance: string;
|
|
43
|
-
reward_vesting_balance: string;
|
|
44
|
-
reward_vesting_blurt: string;
|
|
45
|
-
vesting_shares: string;
|
|
46
|
-
delegated_vesting_shares: string;
|
|
47
|
-
received_vesting_shares: string;
|
|
48
|
-
vesting_withdraw_rate: string;
|
|
49
|
-
post_voting_power: string;
|
|
50
|
-
next_vesting_withdrawal: string;
|
|
51
|
-
withdrawn: number;
|
|
52
|
-
to_withdraw: number;
|
|
53
|
-
withdraw_routes: number;
|
|
54
|
-
curation_rewards: number;
|
|
55
|
-
posting_rewards: number;
|
|
56
|
-
proxied_vsf_votes: Array<number>;
|
|
57
|
-
witnesses_voted_for: number;
|
|
58
|
-
last_post: string;
|
|
59
|
-
last_root_post: string;
|
|
60
|
-
last_vote_time: string;
|
|
61
|
-
post_bandwidth: number;
|
|
62
|
-
pending_claimed_accounts: number;
|
|
63
|
-
vesting_balance: string;
|
|
64
|
-
transfer_history: Array<unknown>;
|
|
65
|
-
market_history: Array<unknown>;
|
|
66
|
-
post_history: Array<unknown>;
|
|
67
|
-
vote_history: Array<unknown>;
|
|
68
|
-
other_history: Array<unknown>;
|
|
69
|
-
witness_votes: Array<string>;
|
|
70
|
-
tags_usage: Array<unknown>;
|
|
71
|
-
guest_bloggers: Array<unknown>;
|
|
72
|
-
governance_vote_expiration_ts: string;
|
|
73
|
-
};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"GET_ACCOUNT.js","sourceRoot":"","sources":["../../../src/helpers/CONDENSER_API/GET_ACCOUNT.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"GET_BLOG_ENTRY.js","sourceRoot":"","sources":["../../../src/helpers/CONDENSER_API/GET_BLOG_ENTRY.ts"],"names":[],"mappings":""}
|
|
@@ -1,174 +0,0 @@
|
|
|
1
|
-
export declare type GET_CONFIG = {
|
|
2
|
-
IS_TEST_NET: false;
|
|
3
|
-
BLURT_REDUCED_VOTE_POWER_RATE: number;
|
|
4
|
-
BLURT_100_PERCENT: number;
|
|
5
|
-
BLURT_1_PERCENT: number;
|
|
6
|
-
BLURT_ACCOUNT_RECOVERY_REQUEST_EXPIRATION_PERIOD: string;
|
|
7
|
-
BLURT_ACTIVE_CHALLENGE_COOLDOWN: string;
|
|
8
|
-
BLURT_ACTIVE_CHALLENGE_FEE: {
|
|
9
|
-
amount: string;
|
|
10
|
-
precision: number;
|
|
11
|
-
nai: string;
|
|
12
|
-
};
|
|
13
|
-
BLURT_ADDRESS_PREFIX: string;
|
|
14
|
-
BLURT_APR_PERCENT_MULTIPLY_PER_BLOCK: string;
|
|
15
|
-
BLURT_APR_PERCENT_MULTIPLY_PER_HOUR: string;
|
|
16
|
-
BLURT_APR_PERCENT_MULTIPLY_PER_ROUND: string;
|
|
17
|
-
BLURT_APR_PERCENT_SHIFT_PER_BLOCK: number;
|
|
18
|
-
BLURT_APR_PERCENT_SHIFT_PER_HOUR: number;
|
|
19
|
-
BLURT_APR_PERCENT_SHIFT_PER_ROUND: number;
|
|
20
|
-
BLURT_BANDWIDTH_AVERAGE_WINDOW_SECONDS: number;
|
|
21
|
-
BLURT_BANDWIDTH_PRECISION: number;
|
|
22
|
-
BLURT_BENEFICIARY_LIMIT: number;
|
|
23
|
-
BLURT_BLOCKCHAIN_PRECISION: number;
|
|
24
|
-
BLURT_BLOCKCHAIN_PRECISION_DIGITS: number;
|
|
25
|
-
BLURT_BLOCKCHAIN_HARDFORK_VERSION: string;
|
|
26
|
-
BLURT_BLOCKCHAIN_VERSION: string;
|
|
27
|
-
BLURT_BLOCK_INTERVAL: number;
|
|
28
|
-
BLURT_BLOCKS_PER_DAY: number;
|
|
29
|
-
BLURT_BLOCKS_PER_HOUR: number;
|
|
30
|
-
BLURT_BLOCKS_PER_YEAR: number;
|
|
31
|
-
BLURT_CASHOUT_WINDOW_SECONDS: number;
|
|
32
|
-
BLURT_CHAIN_ID: string;
|
|
33
|
-
BLURT_COMMENT_TITLE_LIMIT: number;
|
|
34
|
-
BLURT_REWARD_CONSTANT: string;
|
|
35
|
-
BLURT_CONTENT_REWARD_PERCENT_HF21: number;
|
|
36
|
-
BLURT_CUSTOM_OP_DATA_MAX_LENGTH: number;
|
|
37
|
-
BLURT_CUSTOM_OP_ID_MAX_LENGTH: number;
|
|
38
|
-
BLURT_GENESIS_TIME: string;
|
|
39
|
-
BLURT_HARDFORK_REQUIRED_WITNESSES: number;
|
|
40
|
-
BLURT_HF21_CONVERGENT_LINEAR_RECENT_CLAIMS: string;
|
|
41
|
-
BLURT_INFLATION_NARROWING_PERIOD: number;
|
|
42
|
-
BLURT_INFLATION_RATE_START_PERCENT: number;
|
|
43
|
-
BLURT_INFLATION_RATE_STOP_PERCENT: number;
|
|
44
|
-
BLURT_INIT_MINER_NAME: string;
|
|
45
|
-
BLURT_INIT_PUBLIC_KEY_STR: string;
|
|
46
|
-
BLURT_INIT_SUPPLY: string;
|
|
47
|
-
BLURT_IRREVERSIBLE_THRESHOLD: number;
|
|
48
|
-
BLURT_MAX_ACCOUNT_CREATION_FEE: number;
|
|
49
|
-
BLURT_MAX_ACCOUNT_NAME_LENGTH: number;
|
|
50
|
-
BLURT_MAX_ACCOUNT_WITNESS_VOTES: number;
|
|
51
|
-
BLURT_MAX_ASSET_WHITELIST_AUTHORITIES: number;
|
|
52
|
-
BLURT_MAX_AUTHORITY_MEMBERSHIP: number;
|
|
53
|
-
BLURT_MAX_BLOCK_SIZE: number;
|
|
54
|
-
BLURT_SOFT_MAX_BLOCK_SIZE: number;
|
|
55
|
-
BLURT_MAX_CASHOUT_WINDOW_SECONDS: number;
|
|
56
|
-
BLURT_MAX_COMMENT_DEPTH: number;
|
|
57
|
-
BLURT_MAX_INSTANCE_ID: string;
|
|
58
|
-
BLURT_MAX_MEMO_SIZE: number;
|
|
59
|
-
BLURT_MAX_WITNESSES: number;
|
|
60
|
-
BLURT_MAX_PERMLINK_LENGTH: number;
|
|
61
|
-
BLURT_MAX_PROXY_RECURSION_DEPTH: number;
|
|
62
|
-
BLURT_MAX_RUNNER_WITNESSES_HF17: number;
|
|
63
|
-
BLURT_MAX_SATOSHIS: string;
|
|
64
|
-
BLURT_MAX_SHARE_SUPPLY: string;
|
|
65
|
-
BLURT_MAX_SIG_CHECK_DEPTH: number;
|
|
66
|
-
BLURT_MAX_SIG_CHECK_ACCOUNTS: number;
|
|
67
|
-
BLURT_MAX_TIME_UNTIL_EXPIRATION: number;
|
|
68
|
-
BLURT_MAX_TRANSACTION_SIZE: number;
|
|
69
|
-
BLURT_MAX_UNDO_HISTORY: number;
|
|
70
|
-
BLURT_MAX_URL_LENGTH: number;
|
|
71
|
-
BLURT_MAX_VOTE_CHANGES: number;
|
|
72
|
-
BLURT_MAX_VOTED_WITNESSES_HF17: number;
|
|
73
|
-
BLURT_MAX_WITHDRAW_ROUTES: number;
|
|
74
|
-
BLURT_MAX_WITNESS_URL_LENGTH: number;
|
|
75
|
-
BLURT_MIN_ACCOUNT_CREATION_FEE: number;
|
|
76
|
-
BLURT_MIN_ACCOUNT_NAME_LENGTH: number;
|
|
77
|
-
BLURT_MIN_BLOCK_SIZE_LIMIT: number;
|
|
78
|
-
BLURT_MIN_BLOCK_SIZE: number;
|
|
79
|
-
BLURT_MIN_CONTENT_REWARD: {
|
|
80
|
-
amount: string;
|
|
81
|
-
precision: number;
|
|
82
|
-
nai: string;
|
|
83
|
-
};
|
|
84
|
-
BLURT_MIN_CURATE_REWARD: {
|
|
85
|
-
amount: string;
|
|
86
|
-
precision: number;
|
|
87
|
-
nai: string;
|
|
88
|
-
};
|
|
89
|
-
BLURT_MIN_PERMLINK_LENGTH: number;
|
|
90
|
-
BLURT_MIN_REPLY_INTERVAL_HF20: number;
|
|
91
|
-
BLURT_MIN_ROOT_COMMENT_INTERVAL: number;
|
|
92
|
-
BLURT_MIN_COMMENT_EDIT_INTERVAL: number;
|
|
93
|
-
BLURT_MIN_VOTE_INTERVAL_SEC: number;
|
|
94
|
-
BLURT_MINER_ACCOUNT: string;
|
|
95
|
-
BLURT_MIN_PAYOUT: {
|
|
96
|
-
amount: string;
|
|
97
|
-
precision: number;
|
|
98
|
-
nai: string;
|
|
99
|
-
};
|
|
100
|
-
BLURT_MIN_PRODUCER_REWARD: {
|
|
101
|
-
amount: string;
|
|
102
|
-
precision: number;
|
|
103
|
-
nai: string;
|
|
104
|
-
};
|
|
105
|
-
BLURT_MIN_TRANSACTION_EXPIRATION_LIMIT: number;
|
|
106
|
-
BLURT_MIN_TRANSACTION_SIZE_LIMIT: number;
|
|
107
|
-
BLURT_MIN_UNDO_HISTORY: number;
|
|
108
|
-
BLURT_NULL_ACCOUNT: string;
|
|
109
|
-
BLURT_OWNER_AUTH_RECOVERY_PERIOD: string;
|
|
110
|
-
BLURT_OWNER_CHALLENGE_COOLDOWN: string;
|
|
111
|
-
BLURT_OWNER_CHALLENGE_FEE: {
|
|
112
|
-
amount: string;
|
|
113
|
-
precision: number;
|
|
114
|
-
nai: string;
|
|
115
|
-
};
|
|
116
|
-
BLURT_OWNER_UPDATE_LIMIT: number;
|
|
117
|
-
BLURT_POST_REWARD_FUND_NAME: string;
|
|
118
|
-
BLURT_PROXY_TO_SELF_ACCOUNT: string;
|
|
119
|
-
BLURT_SECONDS_PER_YEAR: number;
|
|
120
|
-
BLURT_PROPOSAL_FUND_PERCENT_HF21: number;
|
|
121
|
-
BLURT_RECENT_RSHARES_DECAY_TIME_HF19: string;
|
|
122
|
-
BLURT_REVERSE_AUCTION_WINDOW_SECONDS_HF21: number;
|
|
123
|
-
BLURT_ROOT_POST_PARENT: string;
|
|
124
|
-
BLURT_SAVINGS_WITHDRAW_REQUEST_LIMIT: number;
|
|
125
|
-
BLURT_SAVINGS_WITHDRAW_TIME: string;
|
|
126
|
-
BLURT_SOFT_MAX_COMMENT_DEPTH: number;
|
|
127
|
-
BLURT_TEMP_ACCOUNT: string;
|
|
128
|
-
BLURT_UPVOTE_LOCKOUT_HF17: string;
|
|
129
|
-
BLURT_UPVOTE_LOCKOUT_SECONDS: number;
|
|
130
|
-
BLURT_VESTING_FUND_PERCENT_HF16: number;
|
|
131
|
-
BLURT_VESTING_WITHDRAW_INTERVALS: number;
|
|
132
|
-
BLURT_VESTING_WITHDRAW_INTERVALS_HF5: number;
|
|
133
|
-
BLURT_VESTING_WITHDRAW_INTERVAL_SECONDS: number;
|
|
134
|
-
BLURT_VOTE_DUST_THRESHOLD: number;
|
|
135
|
-
BLURT_VOTING_MANA_REGENERATION_SECONDS: number;
|
|
136
|
-
BLURT_SYMBOL: {
|
|
137
|
-
nai: string;
|
|
138
|
-
decimals: number;
|
|
139
|
-
};
|
|
140
|
-
VESTS_SYMBOL: {
|
|
141
|
-
nai: string;
|
|
142
|
-
decimals: number;
|
|
143
|
-
};
|
|
144
|
-
BLURT_VIRTUAL_SCHEDULE_LAP_LENGTH2: string;
|
|
145
|
-
BLURT_DELEGATION_RETURN_PERIOD_HF20: number;
|
|
146
|
-
BLURT_RD_MIN_DECAY_BITS: number;
|
|
147
|
-
BLURT_RD_MAX_DECAY_BITS: number;
|
|
148
|
-
BLURT_RD_DECAY_DENOM_SHIFT: number;
|
|
149
|
-
BLURT_RD_MAX_POOL_BITS: number;
|
|
150
|
-
BLURT_RD_MAX_BUDGET_1: string;
|
|
151
|
-
BLURT_RD_MAX_BUDGET_2: number;
|
|
152
|
-
BLURT_RD_MAX_BUDGET_3: number;
|
|
153
|
-
BLURT_RD_MAX_BUDGET: number;
|
|
154
|
-
BLURT_RD_MIN_DECAY: number;
|
|
155
|
-
BLURT_RD_MIN_BUDGET: number;
|
|
156
|
-
BLURT_RD_MAX_DECAY: number;
|
|
157
|
-
BLURT_ACCOUNT_SUBSIDY_PRECISION: number;
|
|
158
|
-
BLURT_WITNESS_SUBSIDY_BUDGET_PERCENT: number;
|
|
159
|
-
BLURT_WITNESS_SUBSIDY_DECAY_PERCENT: number;
|
|
160
|
-
BLURT_DEFAULT_ACCOUNT_SUBSIDY_DECAY: number;
|
|
161
|
-
BLURT_DEFAULT_ACCOUNT_SUBSIDY_BUDGET: number;
|
|
162
|
-
BLURT_DECAY_BACKSTOP_PERCENT: number;
|
|
163
|
-
BLURT_BLOCK_GENERATION_POSTPONED_TX_LIMIT: number;
|
|
164
|
-
BLURT_PENDING_TRANSACTION_EXECUTION_LIMIT: number;
|
|
165
|
-
BLURT_TREASURY_ACCOUNT: string;
|
|
166
|
-
BLURT_TREASURY_FEE: number;
|
|
167
|
-
BLURT_PROPOSAL_MAINTENANCE_PERIOD: number;
|
|
168
|
-
BLURT_PROPOSAL_MAINTENANCE_CLEANUP: number;
|
|
169
|
-
BLURT_PROPOSAL_SUBJECT_MAX_LENGTH: number;
|
|
170
|
-
BLURT_PROPOSAL_MAX_IDS_NUMBER: number;
|
|
171
|
-
BLURT_PROPOSAL_MAX_END_DATE: number;
|
|
172
|
-
BLURT_PROPOSAL_EXPIRATION_UNFUNDED: number;
|
|
173
|
-
BLURT_INIT_POST_REWARD_BALANCE: number;
|
|
174
|
-
};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"GET_CONFIG.js","sourceRoot":"","sources":["../../../src/helpers/CONDENSER_API/GET_CONFIG.ts"],"names":[],"mappings":""}
|
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
export declare type GET_CONTENT = {
|
|
2
|
-
id: number;
|
|
3
|
-
author: string;
|
|
4
|
-
permlink: string;
|
|
5
|
-
category: string;
|
|
6
|
-
parent_author: string | '';
|
|
7
|
-
parent_permlink: string | '';
|
|
8
|
-
title: string | '';
|
|
9
|
-
body: string;
|
|
10
|
-
json_metadata: string;
|
|
11
|
-
last_update: string;
|
|
12
|
-
created: string;
|
|
13
|
-
active: string;
|
|
14
|
-
last_payout: string;
|
|
15
|
-
depth: number;
|
|
16
|
-
children: number;
|
|
17
|
-
net_rshares: string;
|
|
18
|
-
abs_rshares: string;
|
|
19
|
-
vote_rshares: string;
|
|
20
|
-
children_abs_rshares: string;
|
|
21
|
-
cashout_time: string;
|
|
22
|
-
max_cashout_time: string;
|
|
23
|
-
total_vote_weight: number;
|
|
24
|
-
reward_weight: number;
|
|
25
|
-
total_payout_value: string;
|
|
26
|
-
curator_payout_value: string;
|
|
27
|
-
author_rewards: number;
|
|
28
|
-
net_votes: number;
|
|
29
|
-
root_author: string;
|
|
30
|
-
root_permlink: string;
|
|
31
|
-
max_accepted_payout: string;
|
|
32
|
-
percent_blurt: number;
|
|
33
|
-
allow_replies: boolean;
|
|
34
|
-
allow_votes: boolean;
|
|
35
|
-
allow_curation_rewards: boolean;
|
|
36
|
-
beneficiaries: [[string, number]];
|
|
37
|
-
url: string;
|
|
38
|
-
root_title: string;
|
|
39
|
-
pending_payout_value: string;
|
|
40
|
-
total_pending_payout_value: string;
|
|
41
|
-
active_votes: [
|
|
42
|
-
{
|
|
43
|
-
voter: string;
|
|
44
|
-
weight: number;
|
|
45
|
-
rshares: number;
|
|
46
|
-
percent: number;
|
|
47
|
-
time: string;
|
|
48
|
-
}
|
|
49
|
-
];
|
|
50
|
-
replies: Array<unknown>;
|
|
51
|
-
promoted: "0.000 BLURT";
|
|
52
|
-
body_length: 0;
|
|
53
|
-
reblogged_by: Array<unknown>;
|
|
54
|
-
};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"GET_CONTENT.js","sourceRoot":"","sources":["../../../src/helpers/CONDENSER_API/GET_CONTENT.ts"],"names":[],"mappings":""}
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
export declare type GET_DISCUSSION = {
|
|
2
|
-
"author": string;
|
|
3
|
-
"permlink": string;
|
|
4
|
-
"category": string;
|
|
5
|
-
"title": string;
|
|
6
|
-
"body": string;
|
|
7
|
-
"json_metadata": string;
|
|
8
|
-
"created": string;
|
|
9
|
-
"last_update": string;
|
|
10
|
-
"depth": number;
|
|
11
|
-
"children": number;
|
|
12
|
-
"last_payout": string;
|
|
13
|
-
"cashout_time": string;
|
|
14
|
-
"total_payout_value": string;
|
|
15
|
-
"curator_payout_value": string;
|
|
16
|
-
"pending_payout_value": string;
|
|
17
|
-
"promoted": string;
|
|
18
|
-
"replies": Array<string>;
|
|
19
|
-
"body_length": number;
|
|
20
|
-
"author_reputation": number;
|
|
21
|
-
"parent_author": string;
|
|
22
|
-
"parent_permlink": string;
|
|
23
|
-
"url": string;
|
|
24
|
-
"root_title": string;
|
|
25
|
-
"beneficiaries": Array<{
|
|
26
|
-
account: string;
|
|
27
|
-
weight: number;
|
|
28
|
-
}>;
|
|
29
|
-
"max_accepted_payout": string;
|
|
30
|
-
"percent_hbd": number;
|
|
31
|
-
"post_id": number;
|
|
32
|
-
"net_rshares": number;
|
|
33
|
-
"active_votes": Array<{
|
|
34
|
-
"percent": string;
|
|
35
|
-
"reputation": number;
|
|
36
|
-
"rshares": number;
|
|
37
|
-
"voter": string;
|
|
38
|
-
}>;
|
|
39
|
-
};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"GET_DISCUSSION.js","sourceRoot":"","sources":["../../../src/helpers/CONDENSER_API/GET_DISCUSSION.ts"],"names":[],"mappings":""}
|