[WHAN] 가챠몬 개발 진척보고 by wonsama

View this thread on steempeak.com
· @wonsama · (edited)
$4.24
[WHAN] 가챠몬 개발 진척보고
![스팀잇표지_190409.003.jpeg](https://cdn.steemitimages.com/DQmNyLam56ty1H7wN154nEaiVMik9DbTogZtd5ddNX4Tads/%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_190409.003.jpeg)

---

# (가칭) 가챠몬이란 ?

> 스팀몬스터즈의 카드를 토큰화 시키고 해당 토큰을 가지고 스팀몬스터즈 카드를 뽑거나 교환해주는 dApp 입니다. 기존 시장에서 팔리지 않은 카드들의 소모를 늘려서 궁극으로 카드 가격의 상승과 실제 카드 수요를 증가시켜주는 것이 목표 입니다. 

# ROADMAP

> 현재 개발 진행 중 단계 이며, MVP 완료 후, 토큰 사전 판매를 진행할 예정 입니다.

* 기획 => ★개발★ => MVP(최소기능제품) 보고 => PRESALE => 베타 테스트 => 오픈

# 개발 담당

> 디자이너 절찬 모집중 ?!

* 기획/디자인 : @newbijohn
* 웹 화면 개발 : @happyberrysboy
* 백엔드 개발 : @wonsama
* 지갑 개발 : @anpigon

# 백엔드 개발 보고

> 본 업무 종료 이후 짬짬이로 하다 보니 시간이 많이 나지 않는 관계로 진척은 느리긴 하네요 :) 주기적으로 개발 관련 사항과 보고를 통해 주기적인 소통을 진행하도록 하겠습니다. 궁금하신 사항은 댓글문의 언제나 환영 입니다.

#### DB 설계 : 70%

*  테이블 목록 보완 및 수정 필요

#### 블록체인 모니터링 데몬 : 50% 

* 기본 모니터링 처리 완료
* DB 설계 이후 데이터 적재 및 연동 필요

#### 웹 REST API 서비스 : 0%

*  웹/앱 클라이언트 에서 사용하는 웹 API 서비스

#### 웹소캣 PUSH 서비스 : 0%

* 실시간 변경 정보 제공

#### 웹크롤링 데몬 : 0%

* 주기적으로 시세 정보 로딩 후 DB 적재

# 개발보고 #1 - 가챠 시뮬레이션 

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

> 거래아이디(trx_id)를 가지고 카드 풀에서 카드를 추출해 주는 예제 

```
const crypto = require('crypto');
const dateformat = require('dateformat');
const {generate_key} = require('./util/wcrypto');

const cards = require('./wonsama.json').cards;	// https://steemmonsters.com/cards/collection/계정명
const detail = require('./detail.json');	// https://steemmonsters.com/cards/get_details

/*
* hash 값에서 숫자를 생성한다
*/
const pick_num = (trx_id, idx) => parseInt(get_hash(trx_id).substr(idx*4, 4), 16);

/*
* 서버 트랜젝션 아이디 기준으로 64자리 해쉬코드를 얻어온다
*/
const get_hash = (trx_id) =>{
	const server_seed = dateformat(new Date(),'yyyymmddHHMMssSSS');	// 서버기준 시간을 서버시드로 설정
	let cryptoHmac = crypto.createHmac('sha256', server_seed); 
	let resultSeed = cryptoHmac.update(trx_id).digest('hex'); // 64자리 16진수
	return resultSeed;
}

/*
* rarity 기준으로 카드 분류
*/
const filtered_cards = ids => {
	return cards.filter(x=>{
		let my_ids = x.uid.split('-');
		let id = my_ids.length==3?parseInt(my_ids[1]):0;	// 구(알파 일부) 카드는 위 룰에 맞지 않는것도 있어서 제외
		return ids.includes(id);
	});
}

/*
* 카드를 뽑아준다
*/
const draw_cards = (trx_id) => {

	// 가챠 참가로 얻은 trx_id
	trx_id = trx_id || generate_key(40);	// 40자리로 이뤄진 해쉬 값
	console.log(trx_id);

	// id 기준 레어리티 확인용 값
	let ids_common = [], ids_rare = [], ids_epic = [], ids_legendary = [];	
	detail.filter(x=>parseInt(x.rarity)==1).reduce((a,b)=>ids_common.push(b.id), []);
	detail.filter(x=>parseInt(x.rarity)==2).reduce((a,b)=>ids_rare.push(b.id), []);
	detail.filter(x=>parseInt(x.rarity)==3).reduce((a,b)=>ids_epic.push(b.id), []);
	detail.filter(x=>parseInt(x.rarity)==4).reduce((a,b)=>ids_legendary.push(b.id), []);

	let my_common = filtered_cards(ids_common);
	let my_rare = filtered_cards(ids_rare);
	let my_epic = filtered_cards(ids_epic);
	let my_legendary = filtered_cards(ids_legendary);

	// 커먼 3장, 레어 3장, 에픽 2장, 레전더리 1장 추출
	let c_0 = my_common[pick_num(trx_id, 0)%my_common.length];
	let c_1 = my_common[pick_num(trx_id, 1)%my_common.length];
	let c_2 = my_common[pick_num(trx_id, 2)%my_common.length];
	let c_3 = my_rare[pick_num(trx_id, 3)%my_rare.length];
	let c_4 = my_rare[pick_num(trx_id, 4)%my_rare.length];
	let c_5 = my_rare[pick_num(trx_id, 5)%my_rare.length];
	let c_6 = my_epic[pick_num(trx_id, 6)%my_epic.length];
	let c_7 = my_epic[pick_num(trx_id, 7)%my_epic.length];
	let c_8 = my_legendary[pick_num(trx_id, 8)%my_legendary.length];

	let ids = [c_0, c_1, c_2, c_3, c_4, c_5, c_6, c_7, c_8];

	for(let w of ids){
		let item = detail[w.card_detail_id -1];
		console.log(item.rarity, item.name.padEnd(20, ' '), item.color.padEnd(10, ' '), item.type.padEnd(10, ' '), w.uid);
	}
}

// 진입점
(function(){
	draw_cards();
})();
```
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 96 others
properties (23)
post_id73,402,386
authorwonsama
permlinkwhan
categorywhan
json_metadata{"tags":["whan","kr","steemmonsters","jjm","busy"],"users":["newbijohn","happyberrysboy","wonsama","anpigon"],"image":["https:\/\/cdn.steemitimages.com\/DQmNyLam56ty1H7wN154nEaiVMik9DbTogZtd5ddNX4Tads\/%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_190409.003.jpeg","https:\/\/cdn.steemitimages.com\/DQmNXhvoiHsiFWmkW5VqqXdB8fX2oDhrXZde4vxhV9mPGwg\/image.png"],"app":"busy\/2.5.6","format":"markdown","community":"busy","links":["\/@newbijohn","\/@happyberrysboy","\/@wonsama","\/@anpigon"]}
created2019-04-20 02:08:54
last_update2019-04-20 02:10:33
depth0
children23
net_rshares8,019,158,708,071
last_payout2019-04-27 02:08:54
cashout_time1969-12-31 23:59:59
total_payout_value3.226 SBD
curator_payout_value1.015 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length3,776
author_reputation962,350,626,398,086
root_title"[WHAN] 가챠몬 개발 진척보고"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (160)
@kibumh ·
$0.03
!dramatoken

토큰 흥해라!!
👍  ,
properties (23)
post_id73,402,750
authorkibumh
permlinkre-wonsama-whan-20190420t023145723z
categorywhan
json_metadata{"tags":["whan"],"app":"steemit\/0.1"}
created2019-04-20 02:31:48
last_update2019-04-20 02:31:48
depth1
children2
net_rshares76,173,766,250
last_payout2019-04-27 02:31:48
cashout_time1969-12-31 23:59:59
total_payout_value0.030 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length21
author_reputation291,369,738,669,853
root_title"[WHAN] 가챠몬 개발 진척보고"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@wonsama ·
응원 감사합니다 :)
properties (22)
post_id73,402,873
authorwonsama
permlinkre-kibumh-re-wonsama-whan-20190420t023844593z
categorywhan
json_metadata{"tags":["whan"],"app":"steemit\/0.1"}
created2019-04-20 02:38:45
last_update2019-04-20 02:38:45
depth2
children0
net_rshares0
last_payout2019-04-27 02:38: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_reputation962,350,626,398,086
root_title"[WHAN] 가챠몬 개발 진척보고"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@bluengel ·
캬~ 언제나 멋졍~!

Posted using [Partiko Android](https://partiko.app/referral/bluengel)
properties (22)
post_id73,410,232
authorbluengel
permlinkbluengel-re-kibumh-re-wonsama-whan-20190420t062137065z
categorywhan
json_metadata{"app":"partiko","client":"android"}
created2019-04-20 06:21:39
last_update2019-04-20 06:21:39
depth2
children0
net_rshares0
last_payout2019-04-27 06:21:39
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_length82
author_reputation487,279,092,618,993
root_title"[WHAN] 가챠몬 개발 진척보고"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@dramatoken ·
<center>
  <img src="https://i.imgur.com/5FTrFXt.png" />
  <p>Such drama, you've earned a DRAMA!</p>
  <p><sup>To view or trade <code>DRAMA</code> go to <a href="https://steem-engine.com/?p=market&t=DRAMA">steem-engine.com</a>.</sup></p>
</center>
properties (22)
post_id73,402,756
authordramatoken
permlinkre-wonsama-whan-20190420t023210254z
categorywhan
json_metadata{"app":"plucky\/0.0.1","drama_trx_id":"ac6bef2827e394a63dff1b7bb6637266fde51202"}
created2019-04-20 02:32:09
last_update2019-04-20 02:32:09
depth1
children0
net_rshares0
last_payout2019-04-27 02:32:09
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_length248
author_reputation13,015,008,151,313
root_title"[WHAN] 가챠몬 개발 진척보고"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@fur2002ks ·
>기획/디자인 : @newbijohn
웹 화면 개발 : @happyberrysboy
백엔드 개발 : @wonsama
지갑 개발 : @anpigon

능력자분들이 여기 다 모이셨네요! ㅎㅎ 화이팅입니다^^
properties (22)
post_id73,402,965
authorfur2002ks
permlinkre-wonsama-whan-20190420t024148133z
categorywhan
json_metadata{"tags":["whan"],"users":["newbijohn","happyberrysboy","wonsama","anpigon"],"app":"steemit\/0.1"}
created2019-04-20 02:41:54
last_update2019-04-20 02:41:54
depth1
children2
net_rshares0
last_payout2019-04-27 02:41: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_length113
author_reputation1,183,949,922,229,304
root_title"[WHAN] 가챠몬 개발 진척보고"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@wonsama ·
응원 감사합니다 :)

Posted using [Partiko Android](https://partiko.app/referral/wonsama)
properties (22)
post_id73,405,817
authorwonsama
permlinkwonsama-re-fur2002ks-re-wonsama-whan-20190420t041035369z
categorywhan
json_metadata{"app":"partiko","client":"android"}
created2019-04-20 04:10:36
last_update2019-04-20 04:10:36
depth2
children0
net_rshares0
last_payout2019-04-27 04:10: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_length81
author_reputation962,350,626,398,086
root_title"[WHAN] 가챠몬 개발 진척보고"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@anpigon ·
화이팅~! 응원 감사합니다.
properties (22)
post_id73,473,755
authoranpigon
permlinkre-fur2002ks-re-wonsama-whan-20190421t093200767z
categorywhan
json_metadata{"tags":["whan"],"app":"steemit\/0.1"}
created2019-04-21 09:32:00
last_update2019-04-21 09:32:00
depth2
children0
net_rshares0
last_payout2019-04-28 09:32: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_length15
author_reputation106,878,140,422,651
root_title"[WHAN] 가챠몬 개발 진척보고"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@fenrir78 ·
$0.11
갸챠몬 전용 계정 파서 글 써주세용 ㅋㅋㅋ
👍  
properties (23)
post_id73,405,339
authorfenrir78
permlinkre-wonsama-whan-20190420t035707464z
categorywhan
json_metadata{"tags":["whan"],"app":"steempeak\/1.9.7"}
created2019-04-20 03:57:09
last_update2019-04-20 03:57:09
depth1
children2
net_rshares207,218,144,535
last_payout2019-04-27 03:57:09
cashout_time1969-12-31 23:59:59
total_payout_value0.082 SBD
curator_payout_value0.027 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length23
author_reputation1,338,648,842,069,994
root_title"[WHAN] 가챠몬 개발 진척보고"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@wonsama ·
아직은 개발 초기 단계라 mvp 정도 나오면요 :)

Posted using [Partiko Android](https://partiko.app/referral/wonsama)
properties (22)
post_id73,405,712
authorwonsama
permlinkwonsama-re-fenrir78-re-wonsama-whan-20190420t040652688z
categorywhan
json_metadata{"app":"partiko","client":"android"}
created2019-04-20 04:06:54
last_update2019-04-20 04:06:54
depth2
children0
net_rshares0
last_payout2019-04-27 04:06: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_length98
author_reputation962,350,626,398,086
root_title"[WHAN] 가챠몬 개발 진척보고"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@steem-bet ·
&#127873; Dear @fenrir78,<br /><p>SteemBet Seed round SPT sale is about to <strong><a href="https://steem-bet.com/">start in 2 days!</a></strong></p><p>When our started the development of SteemBet Dice game, we couldn’t imagine that our game would go so viral and that SteemBet would become one of the pioneers in this field. </p><p>In order to give back to our beloved community, we’ll distribute <a href="https://steem-bet.com/"><strong>4000 STEEM</strong> to SPT holders immediately</a> after Seed sale. Plus, investors in this earliest round will be given <a href="https://steem-bet.com/"><strong>60% more tokens</strong></a> as reward and overall <a href="https://steem-bet.com/">Return on Investment is estimated at 300%!</a></p><p>Join the whitelist on <strong><a href="https://steem-bet.com/">SteemBet webiste</a></strong> now and start investing! Feel free to ask us anything on <a href="https://discord.gg/tNWJEAD"><strong>Discord https://discord.gg/tNWJEAD</strong></a></p>![spt-sale-2-day.jpg](https://res.cloudinary.com/forgelab-io/image/upload/c_scale,w_400/v1555744963/steembet/spt-sale-2-day.jpg)
properties (22)
post_id73,448,736
authorsteem-bet
permlinkre-fenrir78-re-wonsama-whan-20190420t214609754z
categorywhan
json_metadata{}
created2019-04-20 21:46:09
last_update2019-04-20 21:46:09
depth2
children0
net_rshares0
last_payout2019-04-27 21:46:09
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_length1,112
author_reputation18,478,497,974,222
root_title"[WHAN] 가챠몬 개발 진척보고"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@goodhello ·
팀의 활력을 높여주는 응원 담당은 안 뽑으시나요??

팀의 사기가 +1 될것입니다~ ㅎㅎㅎㅎ

파이팅!!!!
properties (22)
post_id73,409,356
authorgoodhello
permlinkre-wonsama-whan-20190420t055310575z
categorywhan
json_metadata{"tags":["whan"],"app":"steemit\/0.1"}
created2019-04-20 05:53:12
last_update2019-04-20 05:53:12
depth1
children1
net_rshares0
last_payout2019-04-27 05:53: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_length60
author_reputation2,796,833,846,309,069
root_title"[WHAN] 가챠몬 개발 진척보고"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@wonsama ·
응원 늘 감사 합니다 :)
properties (22)
post_id73,417,256
authorwonsama
permlinkre-goodhello-re-wonsama-whan-20190420t094308841z
categorywhan
json_metadata{"tags":["whan"],"app":"steemit\/0.1"}
created2019-04-20 09:43:12
last_update2019-04-20 09:43:12
depth2
children0
net_rshares0
last_payout2019-04-27 09:43: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_length14
author_reputation962,350,626,398,086
root_title"[WHAN] 가챠몬 개발 진척보고"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@bluengel ·
가챠몬 흥해랏~!
@wonsama 님 바쁘신 와중에 블루엔젤 주사위 광고 보냈어용~♬

행복한 ♥ 오늘 보내셔용~*^^*

Posted using [Partiko Android](https://partiko.app/referral/bluengel)
properties (22)
post_id73,410,213
authorbluengel
permlinkbluengel-re-wonsama-whan-20190420t062104937z
categorywhan
json_metadata{"app":"partiko","client":"android"}
created2019-04-20 06:21:06
last_update2019-04-20 06:21:06
depth1
children2
net_rshares0
last_payout2019-04-27 06:21:06
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_length138
author_reputation487,279,092,618,993
root_title"[WHAN] 가챠몬 개발 진척보고"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@wonsama ·
환불해드렸습니다. 4월 광고 10구좌는 종료가 되서요.. 5월 광고 시작하게되면 게시글로 찾아 뵙겠습니다. 말일 기준 1주일 전 즈음해서 게시 예정 입니다
properties (22)
post_id73,417,243
authorwonsama
permlinkre-bluengel-bluengel-re-wonsama-whan-20190420t094221413z
categorywhan
json_metadata{"tags":["whan"],"app":"steemit\/0.1"}
created2019-04-20 09:42:24
last_update2019-04-20 09:42:24
depth2
children1
net_rshares0
last_payout2019-04-27 09:42: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_length86
author_reputation962,350,626,398,086
root_title"[WHAN] 가챠몬 개발 진척보고"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@bluengel ·
예~압~! 감사합니다~♥

Posted using [Partiko Android](https://partiko.app/referral/bluengel)
properties (22)
post_id73,418,081
authorbluengel
permlinkbluengel-re-wonsama-re-bluengel-bluengel-re-wonsama-whan-20190420t100705794z
categorywhan
json_metadata{"app":"partiko","client":"android"}
created2019-04-20 10:07:06
last_update2019-04-20 10:07:06
depth3
children0
net_rshares0
last_payout2019-04-27 10:07:06
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_length84
author_reputation487,279,092,618,993
root_title"[WHAN] 가챠몬 개발 진척보고"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@glory7 ·
매우 기대되는 프로젝트입니다!

Posted using [Partiko Android](https://partiko.app/referral/glory7)
properties (22)
post_id73,411,318
authorglory7
permlinkglory7-re-wonsama-whan-20190420t065540121z
categorywhan
json_metadata{"app":"partiko","client":"android"}
created2019-04-20 06:55:39
last_update2019-04-20 06:55:39
depth1
children1
net_rshares0
last_payout2019-04-27 06:55:39
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_length85
author_reputation1,498,150,886,337,498
root_title"[WHAN] 가챠몬 개발 진척보고"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@wonsama ·
응원 감사요 글로리님 :)
properties (22)
post_id73,417,743
authorwonsama
permlinkre-glory7-glory7-re-wonsama-whan-20190420t095803872z
categorywhan
json_metadata{"tags":["whan"],"app":"steemit\/0.1"}
created2019-04-20 09:58:06
last_update2019-04-20 09:58:06
depth2
children0
net_rshares0
last_payout2019-04-27 09:58:06
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_reputation962,350,626,398,086
root_title"[WHAN] 가챠몬 개발 진척보고"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@ioioioioi ·
천재개발자님!!
properties (22)
post_id73,415,296
authorioioioioi
permlinkre-wonsama-whan-20190420t085012748z
categorywhan
json_metadata{"tags":["whan"],"app":"steemit\/0.1"}
created2019-04-20 08:50:09
last_update2019-04-20 08:50:09
depth1
children2
net_rshares0
last_payout2019-04-27 08:50:09
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_length8
author_reputation464,158,883,361,279
root_title"[WHAN] 가챠몬 개발 진척보고"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@wonsama ·
팀원들이 대단하죵 ㅋ
properties (22)
post_id73,417,737
authorwonsama
permlinkre-ioioioioi-re-wonsama-whan-20190420t095752529z
categorywhan
json_metadata{"tags":["whan"],"app":"steemit\/0.1"}
created2019-04-20 09:57:54
last_update2019-04-20 09:57:54
depth2
children1
net_rshares0
last_payout2019-04-27 09:57: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_length11
author_reputation962,350,626,398,086
root_title"[WHAN] 가챠몬 개발 진척보고"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@anpigon ·
천재개발자님!!
properties (22)
post_id73,473,894
authoranpigon
permlinkre-wonsama-re-ioioioioi-re-wonsama-whan-20190421t093539005z
categorywhan
json_metadata{"tags":["whan"],"app":"steemit\/0.1"}
created2019-04-21 09:35:39
last_update2019-04-21 09:35:39
depth3
children0
net_rshares0
last_payout2019-04-28 09:35:39
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_length8
author_reputation106,878,140,422,651
root_title"[WHAN] 가챠몬 개발 진척보고"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@virus707 ·
Congratulations on your decision to become a holder in JJM. Did you know that the daily upvote is increasing for 1% for each 1000JJM you are holding? Get a max of 46% upvote from @virus707's 450K SP which would equal holding 45,000JJM.
properties (22)
post_id73,427,604
authorvirus707
permlinkre-whan-1555767602
categorywhan
json_metadata{"tags":["jjm"]}
created2019-04-20 13:40:03
last_update2019-04-20 13:40:03
depth1
children0
net_rshares0
last_payout2019-04-27 13:40: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_length235
author_reputation969,765,359,108,248
root_title"[WHAN] 가챠몬 개발 진척보고"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@tradingideas ·
멋져요.
properties (22)
post_id73,437,944
authortradingideas
permlinkre-wonsama-whan-20190420t174328365z
categorywhan
json_metadata{"tags":["whan"],"app":"steemit\/0.1"}
created2019-04-20 17:43:30
last_update2019-04-20 17:43:30
depth1
children1
net_rshares0
last_payout2019-04-27 17:43:30
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_length4
author_reputation3,162,277,660,168,379
root_title"[WHAN] 가챠몬 개발 진척보고"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@wonsama ·
감사합니다 :)
properties (22)
post_id73,464,514
authorwonsama
permlinkre-tradingideas-re-wonsama-whan-20190421t052008839z
categorywhan
json_metadata{"tags":["whan"],"app":"steemit\/0.1"}
created2019-04-21 05:20:12
last_update2019-04-21 05:20:12
depth2
children0
net_rshares0
last_payout2019-04-28 05:20: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_length8
author_reputation962,350,626,398,086
root_title"[WHAN] 가챠몬 개발 진척보고"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000