[steemmonsters] 내 계정들의 잔여 RC 정보 확인하기 by wonsama

View this thread on steempeak.com
· @wonsama ·
$2.39
[steemmonsters] 내 계정들의 잔여 RC 정보 확인하기
https://steemitimages.com/640x0/https://cdn.steemitimages.com/DQmXjqQDftESV8UPFbQHbS9yeCB2V3YDVidgW6vX8jk63kQ/190830_%E1%84%89%E1%85%B3%E1%84%90%E1%85%B5%E1%86%B7%E1%84%8B%E1%85%B5%E1%86%BA%E1%84%91%E1%85%AD%E1%84%8C%E1%85%B5.002.jpeg

# 서두

* 개인적으로 기록 보관 목적으로 글을 남겨 봅니다.
* 소스는 필요한 부분이 있다면 마음것 사용하셔도 됩니다.

# 개요

> RC를 손쉽게 확인하기 위해 만들어 봤습니다. 예전에는 스몬팀에서 계정당 20SP를 무상으로 임대해 줬으나, 이제 모두 회수해 갔네요 ㅜㅜ 그래서 부캐들이 자동 대전 중 정지되는 상황이 발생 되어 어떤 계정이 RC를 어느정도 보유하고 있는지 한눈에 볼 수 있도록 제작해 봤습니다. ( 덤으로 보팅파워 계산기 까지 만들어 봄 )

![](https://cdn.steemitimages.com/DQmPJbtUpq8uV6BCSLft2o7oV3rFbvjdL1jwDpBVdNopL1T/image.png)

# 처리 로직

1. API 호출
2. 시간 흐름에 따른 추가분 연산 (마지막 엑션 시점 정보를 가지고 있기 때문)
3. 조회 정보 정제 이후 반환처리

# 소스코드

#### RC(Resource Credit) 계산

```javascript
// 해당 계정의 RC 정보를 반환한다
const get_rc = async (authors) =>{
    
    const __MILLISEC = 1000;
    const __CHARGE_PER_SEC = 60 * 60 * 24 * 5;  // 432000, 1초당 충전되는 수치, *5는 하루 20% 1/5을 의미함

    const __parse = (r) =>{
        let curr_mana = parseInt(r.rc_manabar.current_mana);
        let max_mana = parseInt(r.max_rc);
        let per_sec = parseFloat(max_mana / __CHARGE_PER_SEC) ; // 1초당 차오르는 마나, * 5 는 하루 20% 1/5 을 의미함
        let prev_tm = parseInt(r.rc_manabar.last_update_time);
        let now_tm = parseInt(new Date().getTime()/ __MILLISEC);
        let gap = parseInt(now_tm - prev_tm);
        let mod_mana = Math.min(parseInt(per_sec*gap)+parseInt(curr_mana),max_mana);

        return {
            mana : {
                curr : curr_mana,
                max : max_mana,
                mod : mod_mana,
            },
            sec : { // 시간 전환시 x 1000
                last : prev_tm,
                now : now_tm,
                gap : gap
            },
            rate : parseFloat((mod_mana/max_mana).toFixed(4)),
            account : r.account
        };
    }

    if(authors && !Array.isArray(authors)){
        authors = [authors];
    }
    return wrpc.send_rpc('rc_api.find_rc_accounts',{"accounts": authors})
        .then(res=>res.rc_accounts.map(r=>__parse(r)));
}
```

#### 보팅파워 계산

```javascript
// 해당 계정의 보팅 파워를 계산해 준다
const get_vp = async (authors)=>{

    const __MAX_VOTING_POWER = 10000;
    const __CHARGE_PER_SEC = 60 * 60 * 24 * 5;  // 432000, 1초당 충전되는 수치, *5는 하루 20% 1/5을 의미함

    const __parse = (r) => {
        let account = r.name;
        let last = r.voting_power; //최근 투표일 기준 보팅파워 , 10000 is max
        let gap = new Date().getTime() - new Date(r.last_vote_time + "Z").getTime();    // 최종 보팅한 이후 흐른 시간, 초
        let vp = Math.min(__MAX_VOTING_POWER, parseInt(last +  ( gap / __CHARGE_PER_SEC ) * __MAX_VOTING_POWER));   // 시간차를 적용한 현재 보팅파워 10000 is max

        return {account, last, gap, vp};
    }

    if(authors && !Array.isArray(authors)){
        authors = [authors];
    }

    return wrpc.send_rpc('condenser_api.get_accounts',[authors])
        .then(res=>res.map(r=>__parse(r)));
}
```
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
properties (23)
post_id80,087,730
authorwonsama
permlinksteemmonsters-rc
categoryzzan
json_metadata{"tags":["zzan","sct","sct-freeboard","sct-kr","steemleo","palnet","liv","jjm","busy","spt"],"image":["https:\/\/steemitimages.com\/640x0\/https:\/\/cdn.steemitimages.com\/DQmXjqQDftESV8UPFbQHbS9yeCB2V3YDVidgW6vX8jk63kQ\/190830_%E1%84%89%E1%85%B3%E1%84%90%E1%85%B5%E1%86%B7%E1%84%8B%E1%85%B5%E1%86%BA%E1%84%91%E1%85%AD%E1%84%8C%E1%85%B5.002.jpeg","https:\/\/cdn.steemitimages.com\/DQmPJbtUpq8uV6BCSLft2o7oV3rFbvjdL1jwDpBVdNopL1T\/image.png"],"app":"steemzzang\/0.1","format":"markdown"}
created2019-09-17 15:37:54
last_update2019-09-17 15:37:54
depth0
children33
net_rshares7,714,296,976,601
last_payout2019-09-24 15:37:54
cashout_time1969-12-31 23:59:59
total_payout_value1.228 SBD
curator_payout_value1.159 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length2,874
author_reputation957,438,993,824,304
root_title"[steemmonsters] 내 계정들의 잔여 RC 정보 확인하기"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (61)
@wonsama ·
#wdice test
properties (22)
post_id80,089,103
authorwonsama
permlinkpxzi6k
categoryzzan
json_metadata{"tags":["zzan","wdice"],"app":"steemit\/0.1"}
created2019-09-17 16:37:33
last_update2019-09-17 16:37:33
depth1
children1
net_rshares0
last_payout2019-09-24 16:37:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length11
author_reputation957,438,993,824,304
root_title"[steemmonsters] 내 계정들의 잔여 RC 정보 확인하기"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@wdev ·
![](wdice is in test)
properties (22)
post_id80,089,490
authorwdev
permlinkpxzi6k-wdice
categoryzzan
json_metadata"{"tags":["wdice","bloque64","splintertalk","lassecash","mediaofficials","palnet","liv","jahm","attdummy","neoxian","zzan","iv","steemace","marlians","int","sportstalk","creativecoin","battle","aaa","naturalproducts","spanish","realityhubs","porn","ctp","sct","steemleo","sonicgroove","upfundme","weedcash","tripsteem","nga","dolphin","actnearn","stem"],"app":"wdice\/1.0","format":"markdown","num":26,"time":"2019-09-18 01:59:23"}"
created2019-09-17 16:59:24
last_update2019-09-17 16:59:24
depth2
children0
net_rshares0
last_payout2019-09-24 16:59:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length21
author_reputation32,775,970,160,151
root_title"[steemmonsters] 내 계정들의 잔여 RC 정보 확인하기"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@wonsama ·
start #wdice test
properties (22)
post_id80,089,597
authorwonsama
permlinkpxzjf9
categoryzzan
json_metadata{"tags":["zzan","wdice"],"app":"steemit\/0.1"}
created2019-09-17 17:04:21
last_update2019-09-17 17:04:21
depth1
children1
net_rshares0
last_payout2019-09-24 17:04:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length17
author_reputation957,438,993,824,304
root_title"[steemmonsters] 내 계정들의 잔여 RC 정보 확인하기"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@wdev ·
![](undefined)
properties (22)
post_id80,089,606
authorwdev
permlinkpxzjf9-wdice
categoryzzan
json_metadata"{"tags":["wdice","bloque64","splintertalk","lassecash","mediaofficials","palnet","liv","jahm","attdummy","neoxian","zzan","iv","steemace","marlians","int","sportstalk","creativecoin","battle","aaa","naturalproducts","spanish","realityhubs","porn","ctp","sct","steemleo","sonicgroove","upfundme","weedcash","tripsteem","nga","dolphin","actnearn","stem"],"app":"wdice\/1.0","format":"markdown","num":25,"time":"2019-09-18 02:04:39"}"
created2019-09-17 17:04:42
last_update2019-09-17 17:04:42
depth2
children0
net_rshares0
last_payout2019-09-24 17:04:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length14
author_reputation32,775,970,160,151
root_title"[steemmonsters] 내 계정들의 잔여 RC 정보 확인하기"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@wonsama ·
test 2 #wdice
properties (22)
post_id80,089,673
authorwonsama
permlinkpxzjkc
categoryzzan
json_metadata{"tags":["zzan","wdice"],"app":"steemit\/0.1"}
created2019-09-17 17:07:24
last_update2019-09-17 17:07:24
depth1
children1
net_rshares0
last_payout2019-09-24 17:07:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length13
author_reputation957,438,993,824,304
root_title"[steemmonsters] 내 계정들의 잔여 RC 정보 확인하기"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@wdev ·
![](wdice is in test)
properties (22)
post_id80,090,063
authorwdev
permlinkpxzjkc-wdice
categoryzzan
json_metadata"{"tags":["wdice","bloque64","splintertalk","lassecash","mediaofficials","palnet","liv","jahm","attdummy","neoxian","zzan","iv","steemace","marlians","int","sportstalk","creativecoin","battle","aaa","naturalproducts","spanish","realityhubs","porn","ctp","sct","steemleo","sonicgroove","upfundme","weedcash","tripsteem","nga","dolphin","actnearn","stem"],"app":"wdice\/1.0","format":"markdown","num":70,"time":"2019-09-18 02:25:51"}"
created2019-09-17 17:25:54
last_update2019-09-17 17:25:54
depth2
children0
net_rshares0
last_payout2019-09-24 17:25:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length21
author_reputation32,775,970,160,151
root_title"[steemmonsters] 내 계정들의 잔여 RC 정보 확인하기"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@wonsama ·
#wdice
👍  
properties (23)
post_id80,089,732
authorwonsama
permlinkpxzjop
categoryzzan
json_metadata{"tags":["zzan","wdice"],"app":"steemit\/0.1"}
created2019-09-17 17:10:03
last_update2019-09-17 17:10:03
depth1
children1
net_rshares9,149,861,930
last_payout2019-09-24 17:10:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length6
author_reputation957,438,993,824,304
root_title"[steemmonsters] 내 계정들의 잔여 RC 정보 확인하기"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@wdev ·
![](wdice is in test)
properties (22)
post_id80,090,066
authorwdev
permlinkpxzjop-wdice
categoryzzan
json_metadata"{"tags":["wdice","bloque64","splintertalk","lassecash","mediaofficials","palnet","liv","jahm","attdummy","neoxian","zzan","iv","steemace","marlians","int","sportstalk","creativecoin","battle","aaa","naturalproducts","spanish","realityhubs","porn","ctp","sct","steemleo","sonicgroove","upfundme","weedcash","tripsteem","nga","dolphin","actnearn","stem"],"app":"wdice\/1.0","format":"markdown","num":11,"time":"2019-09-18 02:25:57"}"
created2019-09-17 17:26:00
last_update2019-09-17 17:26:00
depth2
children0
net_rshares0
last_payout2019-09-24 17:26:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length21
author_reputation32,775,970,160,151
root_title"[steemmonsters] 내 계정들의 잔여 RC 정보 확인하기"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@wonsama ·
#wdice
properties (22)
post_id80,090,116
authorwonsama
permlinkpxzkiq
categoryzzan
json_metadata{"tags":["zzan","wdice"],"app":"steemit\/0.1"}
created2019-09-17 17:28:03
last_update2019-09-17 17:28:03
depth1
children1
net_rshares0
last_payout2019-09-24 17:28:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length6
author_reputation957,438,993,824,304
root_title"[steemmonsters] 내 계정들의 잔여 RC 정보 확인하기"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@wdev ·
![](undefined)
properties (22)
post_id80,090,123
authorwdev
permlinkpxzkiq-wdice
categoryzzan
json_metadata"{"tags":["wdice","bloque64","splintertalk","lassecash","mediaofficials","palnet","liv","jahm","attdummy","neoxian","zzan","iv","steemace","marlians","int","sportstalk","creativecoin","battle","aaa","naturalproducts","spanish","realityhubs","porn","ctp","sct","steemleo","sonicgroove","upfundme","weedcash","tripsteem","nga","dolphin","actnearn","stem"],"app":"wdice\/1.0","format":"markdown","num":15,"time":"2019-09-18 02:28:12"}"
created2019-09-17 17:28:15
last_update2019-09-17 17:28:15
depth2
children0
net_rshares0
last_payout2019-09-24 17:28:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length14
author_reputation32,775,970,160,151
root_title"[steemmonsters] 내 계정들의 잔여 RC 정보 확인하기"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@wonsama ·
#wdice
properties (22)
post_id80,090,327
authorwonsama
permlinkpxzkxb
categoryzzan
json_metadata{"tags":["zzan","wdice"],"app":"steemit\/0.1"}
created2019-09-17 17:36:48
last_update2019-09-17 17:36:48
depth1
children1
net_rshares0
last_payout2019-09-24 17:36:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length6
author_reputation957,438,993,824,304
root_title"[steemmonsters] 내 계정들의 잔여 RC 정보 확인하기"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@wdev ·
![](undefined)
properties (22)
post_id80,090,334
authorwdev
permlinkpxzkxb-wdice
categoryzzan
json_metadata"{"tags":["wdice","bloque64","splintertalk","lassecash","mediaofficials","palnet","liv","jahm","attdummy","neoxian","zzan","iv","steemace","marlians","int","sportstalk","creativecoin","battle","aaa","naturalproducts","spanish","realityhubs","porn","ctp","sct","steemleo","sonicgroove","upfundme","weedcash","tripsteem","nga","dolphin","actnearn","stem"],"app":"wdice\/1.0","format":"markdown","num":42,"time":"2019-09-18 02:36:58"}"
created2019-09-17 17:37:00
last_update2019-09-17 17:37:00
depth2
children0
net_rshares0
last_payout2019-09-24 17:37:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length14
author_reputation32,775,970,160,151
root_title"[steemmonsters] 내 계정들의 잔여 RC 정보 확인하기"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@wonsama ·
#wdice
properties (22)
post_id80,090,477
authorwonsama
permlinkpxzl6x
categoryzzan
json_metadata{"tags":["zzan","wdice"],"app":"steemit\/0.1"}
created2019-09-17 17:42:33
last_update2019-09-17 17:42:33
depth1
children1
net_rshares0
last_payout2019-09-24 17:42:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length6
author_reputation957,438,993,824,304
root_title"[steemmonsters] 내 계정들의 잔여 RC 정보 확인하기"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@wdev ·
![](undefined)
properties (22)
post_id80,090,480
authorwdev
permlinkpxzl6x-wdice
categoryzzan
json_metadata"{"tags":["wdice","bloque64","splintertalk","lassecash","mediaofficials","palnet","liv","jahm","attdummy","neoxian","zzan","iv","steemace","marlians","int","sportstalk","creativecoin","battle","aaa","naturalproducts","spanish","realityhubs","porn","ctp","sct","steemleo","sonicgroove","upfundme","weedcash","tripsteem","nga","dolphin","actnearn","stem"],"app":"wdice\/1.0","format":"markdown","num":78,"time":"2019-09-18 02:42:43"}"
created2019-09-17 17:42:45
last_update2019-09-17 17:42:45
depth2
children0
net_rshares0
last_payout2019-09-24 17:42:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length14
author_reputation32,775,970,160,151
root_title"[steemmonsters] 내 계정들의 잔여 RC 정보 확인하기"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@wonsama ·
#wdice test
properties (22)
post_id80,090,528
authorwonsama
permlinkpxzl9w
categoryzzan
json_metadata{"tags":["zzan","wdice"],"app":"steemit\/0.1"}
created2019-09-17 17:44:21
last_update2019-09-17 17:44:21
depth1
children1
net_rshares0
last_payout2019-09-24 17:44:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length11
author_reputation957,438,993,824,304
root_title"[steemmonsters] 내 계정들의 잔여 RC 정보 확인하기"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@wdev ·
![](undefined)
properties (22)
post_id80,090,531
authorwdev
permlinkpxzl9w-wdice
categoryzzan
json_metadata"{"tags":["wdice","bloque64","splintertalk","lassecash","mediaofficials","palnet","liv","jahm","attdummy","neoxian","zzan","iv","steemace","marlians","int","sportstalk","creativecoin","battle","aaa","naturalproducts","spanish","realityhubs","porn","ctp","sct","steemleo","sonicgroove","upfundme","weedcash","tripsteem","nga","dolphin","actnearn","stem"],"app":"wdice\/1.0","format":"markdown","num":24,"time":"2019-09-18 02:44:30"}"
created2019-09-17 17:44:33
last_update2019-09-17 17:44:33
depth2
children0
net_rshares0
last_payout2019-09-24 17:44:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length14
author_reputation32,775,970,160,151
root_title"[steemmonsters] 내 계정들의 잔여 RC 정보 확인하기"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@wonsama ·
#wdice test
properties (22)
post_id80,090,567
authorwonsama
permlinkpxzldm
categoryzzan
json_metadata{"tags":["zzan","wdice"],"app":"steemit\/0.1"}
created2019-09-17 17:46:36
last_update2019-09-17 17:46:36
depth1
children3
net_rshares0
last_payout2019-09-24 17:46:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length11
author_reputation957,438,993,824,304
root_title"[steemmonsters] 내 계정들의 잔여 RC 정보 확인하기"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@wdev ·
![](https://cdn.steemitimages.com/DQmf1GYQ3KJiQ1WknrAt9jDNZNh9uSrfVhaW2ihNfh3g78f/out.png)
properties (22)
post_id80,090,573
authorwdev
permlinkpxzldm-wdice
categoryzzan
json_metadata"{"tags":["wdice","bloque64","splintertalk","lassecash","mediaofficials","palnet","liv","jahm","attdummy","neoxian","zzan","iv","steemace","marlians","int","sportstalk","creativecoin","battle","aaa","naturalproducts","spanish","realityhubs","porn","ctp","sct","steemleo","sonicgroove","upfundme","weedcash","tripsteem","nga","dolphin","actnearn","stem"],"app":"wdice\/1.0","format":"markdown","num":17,"time":"2019-09-18 02:46:50"}"
created2019-09-17 17:46:51
last_update2019-09-17 17:46:51
depth2
children0
net_rshares0
last_payout2019-09-24 17:46:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length90
author_reputation32,775,970,160,151
root_title"[steemmonsters] 내 계정들의 잔여 RC 정보 확인하기"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@wonsama ·
#wdice
properties (22)
post_id80,090,612
authorwonsama
permlinkpxzlhq
categoryzzan
json_metadata{"tags":["zzan","wdice"],"app":"steemit\/0.1"}
created2019-09-17 17:49:03
last_update2019-09-17 17:49:03
depth2
children1
net_rshares0
last_payout2019-09-24 17:49:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length6
author_reputation957,438,993,824,304
root_title"[steemmonsters] 내 계정들의 잔여 RC 정보 확인하기"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@wdev ·
![](https://cdn.steemitimages.com/DQmSqDMPENGQW4BucGExbiK7TZxqATpTigosWegwdhGLVhw/out.png)
properties (22)
post_id80,090,618
authorwdev
permlinkpxzlhq-wdice
categoryzzan
json_metadata"{"tags":["wdice","bloque64","splintertalk","lassecash","mediaofficials","palnet","liv","jahm","attdummy","neoxian","zzan","iv","steemace","marlians","int","sportstalk","creativecoin","battle","aaa","naturalproducts","spanish","realityhubs","porn","ctp","sct","steemleo","sonicgroove","upfundme","weedcash","tripsteem","nga","dolphin","actnearn","stem"],"app":"wdice\/1.0","format":"markdown","num":34,"time":"2019-09-18 02:49:18"}"
created2019-09-17 17:49:18
last_update2019-09-17 17:49:18
depth3
children0
net_rshares0
last_payout2019-09-24 17:49:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length90
author_reputation32,775,970,160,151
root_title"[steemmonsters] 내 계정들의 잔여 RC 정보 확인하기"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@wonsama ·
#wdice
properties (22)
post_id80,090,655
authorwonsama
permlinkpxzllz
categoryzzan
json_metadata{"tags":["zzan","wdice"],"app":"steemit\/0.1"}
created2019-09-17 17:51:36
last_update2019-09-17 17:51:36
depth1
children1
net_rshares0
last_payout2019-09-24 17:51:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length6
author_reputation957,438,993,824,304
root_title"[steemmonsters] 내 계정들의 잔여 RC 정보 확인하기"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@wdev ·
![](https://cdn.steemitimages.com/DQmYYgo73trcQYePJnFj7HdCCxzEHuiJ9BoP7PVRBVYzi5M/out.png)
properties (22)
post_id80,090,657
authorwdev
permlinkpxzllz-wdice
categoryzzan
json_metadata"{"tags":["wdice","bloque64","splintertalk","lassecash","mediaofficials","palnet","liv","jahm","attdummy","neoxian","zzan","iv","steemace","marlians","int","sportstalk","creativecoin","battle","aaa","naturalproducts","spanish","realityhubs","porn","ctp","sct","steemleo","sonicgroove","upfundme","weedcash","tripsteem","nga","dolphin","actnearn","stem"],"app":"wdice\/1.0","format":"markdown","num":5,"time":"2019-09-18 02:51:51"}"
created2019-09-17 17:51:54
last_update2019-09-17 17:51:54
depth2
children0
net_rshares0
last_payout2019-09-24 17:51:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length90
author_reputation32,775,970,160,151
root_title"[steemmonsters] 내 계정들의 잔여 RC 정보 확인하기"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@wonsama ·
#wdice test in ubuntu
properties (22)
post_id80,090,991
authorwonsama
permlinkpxzmc2
categoryzzan
json_metadata{"tags":["zzan","wdice"],"app":"steemit\/0.1"}
created2019-09-17 18:07:15
last_update2019-09-17 18:07:15
depth1
children0
net_rshares0
last_payout2019-09-24 18:07:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length21
author_reputation957,438,993,824,304
root_title"[steemmonsters] 내 계정들의 잔여 RC 정보 확인하기"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@wonsama ·
#wdice
properties (22)
post_id80,091,036
authorwonsama
permlinkpxzmgm
categoryzzan
json_metadata{"tags":["zzan","wdice"],"app":"steemit\/0.1"}
created2019-09-17 18:10:00
last_update2019-09-17 18:10:00
depth1
children0
net_rshares0
last_payout2019-09-24 18:10:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length6
author_reputation957,438,993,824,304
root_title"[steemmonsters] 내 계정들의 잔여 RC 정보 확인하기"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@wonsama ·
#wdice
properties (22)
post_id80,091,107
authorwonsama
permlinkpxzmnc
categoryzzan
json_metadata{"tags":["zzan","wdice"],"app":"steemit\/0.1"}
created2019-09-17 18:14:00
last_update2019-09-17 18:14:00
depth1
children0
net_rshares0
last_payout2019-09-24 18:14:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length6
author_reputation957,438,993,824,304
root_title"[steemmonsters] 내 계정들의 잔여 RC 정보 확인하기"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@wonsama ·
#wdice
properties (22)
post_id80,091,144
authorwonsama
permlinkpxzmp1
categoryzzan
json_metadata{"tags":["zzan","wdice"],"app":"steemit\/0.1"}
created2019-09-17 18:15:03
last_update2019-09-17 18:15:03
depth1
children1
net_rshares0
last_payout2019-09-24 18:15:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length6
author_reputation957,438,993,824,304
root_title"[steemmonsters] 내 계정들의 잔여 RC 정보 확인하기"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@wdev ·
![](https://cdn.steemitimages.com/DQmZeW14raEQz1XfTQQqQoTMyt8zkFqQ2fAELunNiXdwiHF/out.png)
properties (22)
post_id80,091,151
authorwdev
permlinkwonsama-pxzmp1-wdice
categoryzzan
json_metadata"{"tags":["wdice","bloque64","splintertalk","lassecash","mediaofficials","palnet","liv","jahm","attdummy","neoxian","zzan","iv","steemace","marlians","int","sportstalk","creativecoin","battle","aaa","naturalproducts","spanish","realityhubs","porn","ctp","sct","steemleo","sonicgroove","upfundme","weedcash","tripsteem","nga","dolphin","actnearn","stem"],"app":"wdice\/1.0","format":"markdown","num":21,"time":"2019-09-18 03:15:16"}"
created2019-09-17 18:15:18
last_update2019-09-17 18:15:18
depth2
children0
net_rshares0
last_payout2019-09-24 18:15:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length90
author_reputation32,775,970,160,151
root_title"[steemmonsters] 내 계정들의 잔여 RC 정보 확인하기"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@wonsama ·
#wdice test
properties (22)
post_id80,091,181
authorwonsama
permlinkpxzmrw
categoryzzan
json_metadata{"tags":["zzan","wdice"],"app":"steemit\/0.1"}
created2019-09-17 18:16:45
last_update2019-09-17 18:16:45
depth1
children1
net_rshares0
last_payout2019-09-24 18:16:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length11
author_reputation957,438,993,824,304
root_title"[steemmonsters] 내 계정들의 잔여 RC 정보 확인하기"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@wdev ·
![](https://cdn.steemitimages.com/DQmTRUvnnCutnhSVhwp3fXNCVR79vbC1Xz6WgqSo8V9ayoR/out.png)
properties (22)
post_id80,091,188
authorwdev
permlinkwonsama-pxzmrw-wdice
categoryzzan
json_metadata"{"tags":["wdice","bloque64","splintertalk","lassecash","mediaofficials","palnet","liv","jahm","attdummy","neoxian","zzan","iv","steemace","marlians","int","sportstalk","creativecoin","battle","aaa","naturalproducts","spanish","realityhubs","porn","ctp","sct","steemleo","sonicgroove","upfundme","weedcash","tripsteem","nga","dolphin","actnearn","stem"],"app":"wdice\/1.0","format":"markdown","num":25,"time":"2019-09-18 03:17:01"}"
created2019-09-17 18:17:03
last_update2019-09-17 18:17:03
depth2
children0
net_rshares0
last_payout2019-09-24 18:17:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length90
author_reputation32,775,970,160,151
root_title"[steemmonsters] 내 계정들의 잔여 RC 정보 확인하기"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@virus707 ·
Thank you for your continued support towards JJM. For each 1000 JJM you are holding, you can get an additional 1% of upvote. 10,000JJM would give you a 11% daily voting from the 700K SP virus707 account.
properties (22)
post_id80,091,723
authorvirus707
permlinkre-steemmonsters-rc-1568745597
categoryzzan
json_metadata{"tags":["jjm"]}
created2019-09-17 18:39:54
last_update2019-09-17 18:39:54
depth1
children0
net_rshares0
last_payout2019-09-24 18:39:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length203
author_reputation969,765,359,108,248
root_title"[steemmonsters] 내 계정들의 잔여 RC 정보 확인하기"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@steemitboard ·
Congratulations @wonsama! You have completed the following achievement on the Steem blockchain and have been rewarded with new badge(s) :

<table><tr><td><img src="https://steemitimages.com/60x70/http://steemitboard.com/@wonsama/commented.png?201909171905"></td><td>You got more than 2250 replies. Your next target is to reach 2500 replies.</td></tr>
</table>

<sub>_You can view [your badges on your Steem Board](https://steemitboard.com/@wonsama) and compare to others on the [Steem Ranking](https://steemitboard.com/ranking/index.php?name=wonsama)_</sub>
<sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub>



###### [Vote for @Steemitboard as a witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1) to get one more award and increased upvotes!
properties (22)
post_id80,094,084
authorsteemitboard
permlinksteemitboard-notify-wonsama-20190917t201123000z
categoryzzan
json_metadata{"image":["https:\/\/steemitboard.com\/img\/notify.png"]}
created2019-09-17 20:11:21
last_update2019-09-17 20:11:21
depth1
children0
net_rshares0
last_payout2019-09-24 20:11:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length840
author_reputation38,705,954,145,809
root_title"[steemmonsters] 내 계정들의 잔여 RC 정보 확인하기"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@anpigon ·
#wdice 가자아

Posted using [Partiko Android](https://partiko.app/referral/anpigon)
properties (22)
post_id80,102,664
authoranpigon
permlinkanpigon-re-wonsama-steemmonsters-rc-20190918t041558709z
categoryzzan
json_metadata{"app":"partiko","client":"android"}
created2019-09-18 04:16:00
last_update2019-09-18 04:16:00
depth1
children1
net_rshares0
last_payout2019-09-25 04:16:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length80
author_reputation105,789,957,935,122
root_title"[steemmonsters] 내 계정들의 잔여 RC 정보 확인하기"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@wdev ·
![](https://cdn.steemitimages.com/DQmP5ByootbVwuF3TnS6QHr25D3WtMSAT2NSa72EvNeNLpF/out.png)
properties (22)
post_id80,102,669
authorwdev
permlinkanpigon-anpigon-re-wonsama-steemmonsters-rc-20190918t041558709z-wdice
categoryzzan
json_metadata"{"tags":["wdice","bloque64","splintertalk","lassecash","mediaofficials","palnet","liv","jahm","attdummy","neoxian","zzan","iv","steemace","marlians","int","sportstalk","creativecoin","battle","aaa","naturalproducts","spanish","realityhubs","porn","ctp","sct","steemleo","sonicgroove","upfundme","weedcash","tripsteem","nga","dolphin","actnearn","stem"],"app":"wdice\/1.0","format":"markdown","num":61,"time":"2019-09-18 01:16:11"}"
created2019-09-18 04:16:12
last_update2019-09-18 04:16:12
depth2
children0
net_rshares0
last_payout2019-09-25 04:16:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length90
author_reputation32,775,970,160,151
root_title"[steemmonsters] 내 계정들의 잔여 RC 정보 확인하기"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000