그동안 개발한 시뮬레이터를 기반으로 업비트 실거래를 해봅시다. 업비트에서는 websocket을 이용하여 실시간 체결 내역을 얻을 수 있습니다. websocket을 이용하여 실시간 시세를 받는 방법은 아래 글에 기술해 놓았습니다. https://money-expert.tistory.com/32?category=757693 그리고 그동안 개발한 시뮬레이터를 기반으로 실거래를 하는 프로그램을 만들어보겠습니다. 우선 upbit에서 API키를 받아야 거래가 가능합니다. API키를 받는 방법은 업빗거래소에서 고객센터/Open API안내로 간 후 Open API 사용하기를 누르면 됩니다.  이렇게 받은 API 키를 upbit.txt 파일에 아래와 같은 형태로 저장하면 됩니다. acess key secret key 옆에 있는 업비트 개발자 센터를 누르면 API관련 문서가 나옵니다. API에 대하여 궁금한 사항이 있을 때 확인하시면 됩니다. github에서 찾아보면 upbit api를 사용하기 쉽게 class로 만든 소스가 많이 있습니다. 이중 많이 사용하는 pyupbit을 fork하여 사용하도록 하겠습니다. pyupbit에는 대부분의 API가 구현되어 있지만 몇가지 함수도 추가하고, return 값을 변경하기도 하였습니다. 이렇게 변경한 소스는 아래 위치에서 다운받을 수 있습니다. github.com/multizone-quant/pyupbit 다만 위 링크에 접속한 후 아래 그림과 같이 브렌치인 my_upbit-0.2를 선택한 후 오른쪽에 있는 code download를 누릅니다. 소스 zip 파일이 다운되면 개발할 곳에 압축해제하시면 됩니다.  pyupbit을 바로 사용할 수 있겠지만 앞으로 다양한 거래소 자동매매를 개발할 예정이기 때문에 거래소에 독립적인 나만의 API가 필요합니다. 그래서 여러 거래소의 특성을 무시하고, 매매에 필요한 정보를 얻을 수 있는 wrapper class를 별도로 개발합니다. pyupbit class를 기반으로 class MyUpbit를 만들었습니다. 따라서 pyupbit을 직접 사용하지 않기 때문에 pyupbit에 있는 readme.txt는 무시하셔도 됩니다. 앞으로 개발할 upbit 거래소 자동 매매 프로그램은 아래 링크에서 다운받으시면 됩니다. github.com/multizone-quant/system-trading-crypto 거래소 관련 class를 먼저 올렸습니다. jpy_basic_ex.py : 거래소 base class jpy_dummy_ex.py : simulation을 위한 dummy class jpy_upbit.py : pyupbit wrapper class jpy_upbit.py가 앞으로 사용할 upbit 거래소에서 자동매매를 위한 class입니다. jpy_upbit.py 단독으로 실행을 하면 제공하는 API test를 하는 함수들이 동작을 합니다. jpy_upbit에서 제공하는 함수들의 return 값은 list의 array로 구성되어 있습니다. 만약 오류가 생기면 [0]번째 항목에 'error'라는 key word가 있습니다. 오류 message는 ret[0]['error']['message']에 포함되어 있습니다. 실제 매매하는 함수는 아래 5가지입니다. 이중 시장가 주문의 경우에는 buy의 경우에는 매수할 금액을 입력하고, sell의 경우에는 매도할 수량을 입력하면 됩니다. ~~~ buy_limit_order(ticker, price, qty) buy_market_order(ticker, amount) sell_limit_order(ticker, price, qty) sell_market_order(ticker, qty) cancel_order(uuid) ~~~ 아직 체결되지 않은 주문은 아래 함수를 사용합니다. 특정 코인에 대한 미체결 주문을 알 수 있을 뿐 아니라, 'ALL'을 입력하면 현재 체결되지 않은 모든 코인 정보를 얻어올 수 있습니다. ~~~ pending_orders(ticker) # or 'ALL' ~~~ 잔고를 확인하는 방법입니다. 'KRW'를 인자로 넣으면 현재 원화 잔고가 특정 암호화폐 (예, 'BTC')를 넣으면 해당 암호화폐가, 'ALL'을 인자로 넣으면 모든 잔고를 얻을 수 있습니다. return값은 list의 array로 [0]번째 값에 하나 혹은 복수 코인의 잔고가 들어있습니다. 또한 오류인 경우에는 'error' keyword가 포함되어 있습니다. 사용예는 jpy_upbit.py에 밑 부분에 있습니다. 잔고는 ['total']과 ['orderable'] 항목이 있는데, 'orderable'은 잔고 중 신규 주문이 가능한 수량입니다. 다음에는 이전에 기술한 전략 시뮬레이터와 거래소 API를 합쳐서 upbit에서 특정 전략으로 자동매매를 하는 방법을 기술하도록 하겠습니다.
post_id | 88,734,513 |
---|---|
author | tradingideas |
permlink | b4ns5 |
category | hive-101145 |
json_metadata | {"tags":["hive-101145","sct-kr","sct-freeboard","s","union","mini","jjm","lgt","sct"],"image":["https:\/\/cdn.steemitimages.com\/DQmWLQsZPVA22uRdWYinP4rw6P9ukLQpqLup2JfD5q3tv8y\/image.png","https:\/\/cdn.steemitimages.com\/DQmRnpD5P5f9X8tTRtfBghmPkgxvCSWA3xzyQsqpRVoYQgE\/image.png"],"links":["https:\/\/money-expert.tistory.com\/32?category=757693"],"app":"steemcoinpan\/0.1","format":"markdown","canonical_url":"https:\/\/www.steemcoinpan.com\/@tradingideas\/b4ns5"} |
created | 2020-12-11 13:49:00 |
last_update | 2020-12-11 13:49:00 |
depth | 0 |
children | 4 |
net_rshares | 201,590,517,772,786 |
last_payout | 2020-12-18 13:49:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 44.706 SBD |
curator_payout_value | 39.788 SBD |
pending_payout_value | 0.000 SBD |
promoted | 0.000 SBD |
body_length | 2,613 |
author_reputation | 1,239,747,763,028,945 |
root_title | "[암호화폐] 업비트에서 실거래를 해 봅시다." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 SBD |
percent_steem_dollars | 10,000 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cheolwoo-kim | 0 | 164,158,187 | 50% | ||
geoffrey | 0 | 2,825,539,583,518 | 100% | ||
gerber | 0 | 4,977,813,203 | 18.39% | ||
helle | 0 | 11,797,522,523 | 30% | ||
ezzy | 0 | 981,905,710,956 | 18.39% | ||
nascimentoab | 0 | 153,495,662 | 50% | ||
konti | 0 | 32,897,876,625 | 100% | ||
exyle | 0 | 1,185,647,220,049 | 18.39% | ||
kopasi | 0 | 82,696,877,162 | 79.01% | ||
jphamer1 | 0 | 4,924,264,755,973 | 100% | ||
jack8831 | 0 | 20,246,130,677 | 100% | ||
planosdeunacasa | 0 | 2,577,089,227 | 29% | ||
abdullar | 0 | 68,398,952,976 | 100% | ||
ramires | 0 | 32,100,945,991 | 100% | ||
diebaasman | 0 | 928,531,786 | 50% | ||
taspingo | 0 | 5,507,471,956 | 100% | ||
happyberrysboy | 0 | 18,636,782,799 | 100% | ||
ribalinux | 0 | 94,202,113,441 | 100% | ||
vimva | 0 | 166,115,869,925 | 100% | ||
enomujjass | 0 | 3,658,072,775 | 100% | ||
bitcoinflood | 0 | 1,293,374,915,710 | 64% | ||
sonki999 | 0 | 89,499,245,818 | 30% | ||
realmankwon | 0 | 1,812,182,033 | 100% | ||
techken | 0 | 18,057,955,717 | 50% | ||
offgridlife | 0 | 244,107,836,184 | 100% | ||
chaostheory | 0 | 130,105,731 | 7% | ||
butterfly-effect | 0 | 200,367,272 | 7% | ||
thegrandestine | 0 | 578,430,288 | 5.6% | ||
benedict08 | 0 | 73,613,538,283 | 20% | ||
mirrorforce | 0 | 65,404,512 | 7% | ||
lilith | 0 | 64,886,909 | 7% | ||
dreamya | 0 | 31,921,043,914 | 100% | ||
mysticalword | 0 | 69,361,047 | 7% | ||
otom | 0 | 28,731,539,023 | 100% | ||
udibekwe | 0 | -131,896,236,595 | -100% | ||
fur2002ks | 0 | 48,978,068,729 | 17% | ||
richi0927 | 0 | 3,239,985,076 | 100% | ||
dine77 | 0 | 620,036,465,918 | 25.93% | ||
paradoxofchoice | 0 | 91,712,131 | 7% | ||
sakhone | 0 | 56,267,889,501 | 100% | ||
dineroconopcion | 0 | 3,514,299,214 | 29% | ||
leemikyung | 0 | 786,603,857,867 | 100% | ||
djkrad | 0 | 1,478,111,315 | 29% | ||
chetanpadliya | 0 | 165,690,028,345 | 75% | ||
sevillaespino | 0 | 147,172,426,610 | 29% | ||
omegacore | 0 | 565,729,476 | 7% | ||
karja | 0 | 62,341,603,997 | 3% | ||
accelerator | 0 | 119,298,816,602 | 18.39% | ||
ogejoy | 0 | 2,227,175,631 | 50% | ||
robertoueti | 0 | 266,059,794 | 29% | ||
deathwing | 0 | 1,755,805,819 | 45.98% | ||
jsquare | 0 | 1,602,695,838,945 | 14% | ||
hotmangoes | 0 | 4,966,360,405 | 100% | ||
jondoe | 0 | 5,858,806,290,152 | 100% | ||
daisyphotography | 0 | 6,545,204,977 | 99.95% | ||
khaleelkazi | 0 | 1,012,575,457 | 18.39% | ||
galorum | 0 | 4,198,560,836 | 100% | ||
meincluyo | 0 | 1,740,538,815 | 100% | ||
tradingideas | 0 | 248,711,937,943 | 100% | ||
hendersonp | 0 | 25,128,980,286 | 29% | ||
steeminer4up | 0 | 118,719,422 | 50% | ||
fjcalduch | 0 | 16,777,959,795 | 29% | ||
rimon24 | 0 | 298,998,914 | 100% | ||
yjs3694 | 0 | 102,740,506,796 | 100% | ||
goodhello | 0 | 427,516,227 | 100% | ||
zzings | 0 | 32,587,106,356 | 100% | ||
r351574nc3 | 0 | 47,451,149,116 | 30% | ||
hetty-rowan | 0 | 396,748,237 | 50% | ||
mmmmkkkk311 | 0 | 929,928,930,662 | 100% | ||
codingman | 0 | 58,254,318,295 | 100% | ||
harryji | 0 | 32,343,689,728 | 30% | ||
nealmcspadden | 0 | 12,084,629,931 | 18.39% | ||
criptonotas | 0 | 1,790,572,978 | 100% | ||
gfriend96 | 0 | 7,270,398,238 | 100% | ||
omega.wallet | 0 | 1,101,000,912 | 100% | ||
ikrahch | 0 | 319,349,042,281 | 100% | ||
platomaniac | 0 | 6,898,077,681 | 100% | ||
the-reaper | 0 | 79,716,404 | 7% | ||
skybreaker | 0 | 257,208,286 | 7% | ||
sudefteri | 0 | 16,118,624,175 | 100% | ||
heinzgugu | 0 | 69,187,668 | 100% | ||
fyah | 0 | 311,750,609,284 | 100% | ||
magicbirds | 0 | 1,714,292,653 | 100% | ||
royfletcher | 0 | 25,953,217,191 | 100% | ||
blueproject | 0 | 1,695,589,406 | 100% | ||
django137 | 0 | 1,708,909,941 | 100% | ||
fiveelements5 | 0 | 1,771,226,503 | 100% | ||
goldeneye64 | 0 | 1,662,250,320 | 100% | ||
ludezma | 0 | 1,720,095,092 | 100% | ||
oleg5430 | 0 | 1,721,424,031 | 100% | ||
yann03 | 0 | 7,775,073,161 | 25% | ||
akifane | 0 | 2,385,371,780 | 100% | ||
futurecurrency | 0 | 8,251,580,884 | 42% | ||
supreme-verdict | 0 | 13,975,379,269 | 7% | ||
retrocausality | 0 | 152,117,639 | 7% | ||
henlicps | 0 | 3,309,836,627 | 29% | ||
steemitcolombia | 0 | 171,991,660,676 | 100% | ||
monster-reborn | 0 | 123,781,111 | 7% | ||
bongje | 0 | 49,815,336,011 | 100% | ||
jan23com | 0 | 11,190,888,287 | 100% | ||
moiscapsesii | 0 | 2,751,300,594 | 29% | ||
juanmanuellopez1 | 0 | 2,784,705,680 | 29% | ||
alwaysbaked | 0 | 4,794,259,070 | 4.2% | ||
jungch98 | 0 | 4,559,543,052 | 100% | ||
allnews | 0 | 5,404,266,517 | 50% | ||
chain-reaction | 0 | 148,932,789 | 7% | ||
megalithic | 0 | 1,187,243,046 | 7% | ||
jaydih | 0 | 979,806,093,453 | 20% | ||
machellin | 0 | 26,630,040,887 | 20% | ||
savagebits | 0 | 11,101,307,079 | 88% | ||
kimseun | 0 | 169,685,432,872 | 20% | ||
kcc | 0 | 3,744,136,304 | 100% | ||
kadoshmenorah | 0 | 218,241,395 | 29% | ||
tapu333 | 0 | 8,691,229,486 | 100% | ||
luminaryhmo | 0 | 3,627,395,761 | 100% | ||
esinhur | 0 | 181,238,293 | 50% | ||
alsqo0104 | 0 | 628,856,391 | 100% | ||
newbijohn | 0 | 29,898,789,612 | 100% | ||
nerminc | 0 | 238,706,059 | 50% | ||
sibeldur | 0 | 228,057,491 | 50% | ||
lucky2 | 0 | 84,329,048,325 | 100% | ||
anderson18 | 0 | 35,273,380,316 | 100% | ||
ihal0001 | 0 | 1,011,221,855 | 50% | ||
exifr | 0 | 30,211,789,690 | 30% | ||
robertojavier | 0 | 980,511,797 | 29% | ||
prudencia | 0 | 1,665,655,789 | 100% | ||
gorka | 0 | 1,687,320,388 | 100% | ||
suley | 0 | 1,690,266,981 | 100% | ||
greenlatte | 0 | 28,464,788,664 | 100% | ||
zulema | 0 | 1,713,699,296 | 100% | ||
herencia | 0 | 1,676,390,916 | 100% | ||
zoraida | 0 | 1,666,704,468 | 100% | ||
embera | 0 | 1,666,116,861 | 100% | ||
medula | 0 | 1,684,445,965 | 100% | ||
chavela | 0 | 1,662,681,613 | 100% | ||
tierra | 0 | 1,798,589,029 | 100% | ||
loveecho | 0 | 7,819,377,157 | 20% | ||
abcor | 0 | 5,954,138,325 | 100% | ||
halekork | 0 | 198,491,623 | 50% | ||
under-dog | 0 | 3,080,997,254 | 100% | ||
thehiv | 0 | 600,503,206 | 100% | ||
exifr0 | 0 | 30,524,540,272 | 30% | ||
jerr | 0 | 133,882,309 | 64% | ||
light-hearted | 0 | 783,540,470 | 100% | ||
harkar | 0 | 99,779,424,190 | 15% | ||
idakarlsen | 0 | 28,687,130,408 | 10% | ||
dlike | 0 | 62,058,065,976 | 6% | ||
peterpa | 0 | 92,418,372,812 | 100% | ||
buzzbee | 0 | 1,167,676,009 | 100% | ||
stimcity | 0 | 152,793,260,233 | 75% | ||
sj-jeong | 0 | 1,404,317,316,968 | 20% | ||
wondumyungga | 0 | 72,100,941,106 | 20% | ||
cultus-forex | 0 | 63,459,770,671 | 100% | ||
ayisigi | 0 | 316,632,700 | 100% | ||
priyanarc | 0 | 19,922,782,956 | 20% | ||
honeybeerbear | 0 | 595,008,124 | 100% | ||
budapestguide | 0 | 20,198,034,205 | 30% | ||
ringit | 0 | 237,300,126 | 20% | ||
coreabeforekorea | 0 | 484,758,904,155 | 20% | ||
smonia | 0 | 16,834,032,733 | 100% | ||
fredfred1 | 0 | 819,141,586 | 100% | ||
cyberrn | 0 | 40,154,294,479 | 5% | ||
playsteemmonster | 0 | 241,584,449 | 100% | ||
tr77 | 0 | 2,532,638,933 | 100% | ||
iamyourfather | 0 | 0 | 100% | ||
ctime | 0 | 587,497,347,036 | 100% | ||
goodmonster | 0 | 11,267,095 | 100% | ||
shallwedance | 0 | 0 | 100% | ||
pirateking | 0 | 18,525,868 | 100% | ||
piratequeen | 0 | 0 | 100% | ||
piratekiller | 0 | 15,891,633 | 100% | ||
smplayer | 0 | 0 | 100% | ||
shallwebegin | 0 | 34,198,742 | 100% | ||
smon-joa | 0 | 20,619,807,112 | 100% | ||
k-league | 0 | 0 | 100% | ||
andresurrego | 0 | 10,866,500,609 | 50% | ||
goodcontentbot | 0 | 5,480,618,172 | 100% | ||
skymin | 0 | 22,318,396,929 | 50% | ||
cpt-sparrow | 0 | 9,137,747,767 | 100% | ||
yunaremaia | 0 | 1,248,813,036 | 100% | ||
skysung | 0 | 65,553,207 | 100% | ||
j-car | 0 | 503,581,274,541 | 24% | ||
newmacho | 0 | 1,039,219,890 | 100% | ||
trxjjbtc | 0 | 2,491,356,199 | 29% | ||
minigame | 0 | 4,745,498,380,652 | 29.9% | ||
kr-fund | 0 | 47,523,284,226 | 100% | ||
sjgod4018 | 0 | 634,344,394,827 | 20% | ||
mustard-seed | 0 | 9,913,805,180 | 20% | ||
jcarvoting | 0 | 730,241,248 | 24% | ||
wacol413 | 0 | 51,109,916,005 | 100% | ||
kahmuhkahzee | 0 | 525,582,225 | 100% | ||
catchmeinside | 0 | 70,049,038 | 100% | ||
azzez | 0 | 414,986,226 | 80% | ||
bangraccoon | 0 | 529,195,809 | 100% | ||
bishezz | 0 | 528,092,092 | 100% | ||
hmmaybe | 0 | 65,530,909 | 100% | ||
idktho | 0 | 456,733,940 | 100% | ||
coldcases | 0 | 536,335,236 | 100% | ||
shegay | 0 | 68,141,038 | 100% | ||
sitdownkid | 0 | 69,113,026 | 100% | ||
knowyourrole | 0 | 526,088,613 | 100% | ||
mysterychick | 0 | 65,559,426 | 100% | ||
pingit | 0 | 524,345,131 | 100% | ||
fuckdis | 0 | 65,697,427 | 100% | ||
oofmate | 0 | 65,858,520 | 100% | ||
fuckitmate | 0 | 65,875,982 | 100% | ||
mysturee | 0 | 65,579,059 | 100% | ||
ragehamster | 0 | 527,306,683 | 100% | ||
sooperstoned | 0 | 66,012,232 | 100% | ||
demjooks | 0 | 68,992,364 | 100% | ||
dankestnug | 0 | 68,699,219 | 100% | ||
fiyabuds | 0 | 65,717,414 | 100% | ||
datstank | 0 | 68,855,676 | 100% | ||
blazeitdood | 0 | 68,680,123 | 100% | ||
sweeden | 0 | 65,757,284 | 100% | ||
cannuhbiss | 0 | 68,776,075 | 100% | ||
danknugz | 0 | 65,895,155 | 100% | ||
stickybudz | 0 | 68,207,259 | 100% | ||
flyinhigh | 0 | 65,518,736 | 100% | ||
reallyhigh | 0 | 65,558,949 | 100% | ||
sct.tom | 0 | 1,539,327,541 | 30% | ||
sct.adv | 0 | 22,452,990,952 | 79.01% | ||
wonsama.sct | 0 | 193,795,589 | 100% | ||
goodhello.spt | 0 | 0 | 100% | ||
suchshit | 0 | 65,935,616 | 100% | ||
lookplz | 0 | 897,335,755 | 12% | ||
moonwalkin | 0 | 67,933,464 | 100% | ||
idkwhat | 0 | 65,796,667 | 100% | ||
longtrails | 0 | 66,033,753 | 100% | ||
murdah | 0 | 65,935,140 | 100% | ||
soopermane | 0 | 65,935,137 | 100% | ||
bagginbirds | 0 | 68,637,737 | 100% | ||
freesignup | 0 | 67,933,505 | 100% | ||
dashoota | 0 | 68,092,075 | 100% | ||
imarobot | 0 | 65,915,044 | 100% | ||
solidturd | 0 | 66,014,149 | 100% | ||
ragingboner | 0 | 67,854,097 | 100% | ||
sadface | 0 | 66,073,214 | 100% | ||
madface | 0 | 66,112,557 | 100% | ||
trulysad | 0 | 66,073,975 | 100% | ||
sct.min | 0 | 19,450,864,846 | 79.01% | ||
goodhello.sct | 0 | 5,874,011 | 100% | ||
union.sct | 0 | 2,250,293,722 | 100% | ||
team1p | 0 | 1,397,599,737 | 100% | ||
steem.leo | 0 | 21,852,263,525 | 18.39% | ||
realmankwon.scot | 0 | 4,038,531,407 | 50% | ||
leo.voter | 0 | 1,291,010,362 | 18.39% | ||
perrymine | 0 | 90,902,155 | 10% | ||
elgranpoeta | 0 | 11,972,123,603 | 29% | ||
sixsixsix | 0 | 527,551,570 | 100% | ||
howzit | 0 | 65,796,471 | 100% | ||
crowhd | 0 | 68,679,256 | 100% | ||
beatdapussy | 0 | 68,560,269 | 100% | ||
steppedinit | 0 | 65,875,455 | 100% | ||
iod | 0 | 66,013,554 | 100% | ||
onehundredmen | 0 | 66,076,995 | 100% | ||
helloson | 0 | 66,053,672 | 100% | ||
sixfootfour | 0 | 65,944,708 | 100% | ||
ohnoo | 0 | 69,924,662 | 100% | ||
subzer0 | 0 | 66,385,264 | 100% | ||
isthisover | 0 | 65,856,109 | 100% | ||
lastonehere | 0 | 67,853,403 | 100% | ||
helengutier2 | 0 | 8,968,830,954 | 29% | ||
sct.krwp | 0 | 42,154,474,934,400 | 91.82% | ||
chris94 | 0 | 27,256,800,828 | 90% | ||
hugo1954 | 0 | 175,534,294 | 100% | ||
acta | 0 | 405,220,457,845 | 100% | ||
adsacto | 0 | 4,251,306,375 | 90% | ||
maxuvd | 0 | 7,080,777,936 | 12% | ||
maxuve | 0 | 53,536,991,555 | 18.39% | ||
jaydih.bank | 0 | 339,822,675,513 | 20% | ||
jhzzanglove | 0 | 144,951,080 | 100% | ||
loop-manager | 0 | 3,632,213,817 | 100% | ||
sct.curator | 0 | 27,292,022,295 | 30.3% | ||
jaykayw | 0 | 62,271,627,947 | 20% | ||
inandout | 0 | 156,452,459 | 50% | ||
cerpilates | 0 | 1,660,774,098 | 100% | ||
mcgome | 0 | 1,821,167,259 | 50% | ||
youngtopia | 0 | 44,603,664 | 50% | ||
ysm1360 | 0 | 190,242,674 | 50% | ||
zzan.sct | 0 | 151,245,455 | 100% | ||
goodhellonode | 0 | 199,908,004 | 100% | ||
nano-gamer | 0 | 14,722,785,413 | 100% | ||
love83 | 0 | 28,377,155 | 3% | ||
goodhihello | 0 | 15,996,223 | 100% | ||
gettinghigh | 0 | 68,118,652 | 100% | ||
realhyooman | 0 | 67,903,748 | 100% | ||
burnindoobies | 0 | 68,001,411 | 100% | ||
leftnipplering | 0 | 67,746,784 | 100% | ||
bicdic | 0 | 67,942,098 | 100% | ||
lildix | 0 | 67,884,023 | 100% | ||
illbok | 0 | 68,001,419 | 100% | ||
lyinghonestly | 0 | 67,786,301 | 100% | ||
justswell | 0 | 67,864,525 | 100% | ||
tailah.bayu | 0 | 3,344,724,516 | 100% | ||
coin-doubler | 0 | 1,735,466,332,980 | 22.88% | ||
photosnap | 0 | 2,320,544,514 | 20% | ||
jasondonovan | 0 | 65,149,740 | 50% | ||
jarrel | 0 | 176,424,401 | 50% | ||
giannella | 0 | 249,421,486 | 100% | ||
heikkiville | 0 | 183,167,495 | 50% | ||
successgr | 0 | 776,176,221,615 | 10% | ||
doyoy | 0 | 6,655,333,891 | 100% | ||
kjinhyun | 0 | 163,236,604,685 | 65% | ||
dev.supporters | 0 | 148,456,697,152 | 10% | ||
gotogether | 0 | 12,451,505,224,778 | 14.78% | ||
black2 | 0 | 264,912,521 | 100% | ||
gopower | 0 | 28,709,467,461 | 14.78% | ||
krwp.abc | 0 | 2,431,361,333 | 61.52% | ||
taptap | 0 | 214,767,568,217 | 20% | ||
bugabuga | 0 | 8,803,713,822 | 3.5% | ||
upvu | 0 | 102,585,425,507,705 | 35.69% | ||
nahidhasan23 | 0 | 6,702,669,057 | 100% | ||
okoyejoshua | 0 | 782,373,026 | 15% | ||
saany | 0 | 6,606,080,799 | 100% | ||
onlyonehand | 0 | 530,959,451 | 100% | ||
stayingsafe | 0 | 526,949,224 | 100% | ||
justadaydreamer | 0 | 529,020,082 | 100% | ||
hailtheking | 0 | 528,802,042 | 100% | ||
alifedebt | 0 | 526,611,970 | 100% | ||
buyingcrypto | 0 | 1,324,482,966 | 91% | ||
truecalifornian | 0 | 535,734,483 | 100% | ||
meaningoflife | 0 | 527,121,791 | 100% | ||
leafmealone | 0 | 457,521,871 | 88% | ||
jaedongkim | 0 | 526,476,969 | 100% | ||
oneblackman | 0 | 528,659,258 | 100% | ||
tastedrainbow | 0 | 528,079,483 | 100% | ||
greatpyramids | 0 | 1,398,356,666 | 100% | ||
thatsalie | 0 | 532,297,093 | 100% | ||
heyhihello | 0 | 539,011,692 | 100% | ||
dachosenone | 0 | 438,226,932 | 84% | ||
lifeequals42 | 0 | 438,001,984 | 84% | ||
jamesdeen | 0 | 414,351,539 | 80% | ||
antiquated | 0 | 414,225,438 | 80% | ||
hothotheat | 0 | 416,757,474 | 80% | ||
vivabrazilia | 0 | 416,523,500 | 80% | ||
usedsextoy | 0 | 520,842,584 | 100% | ||
reallymoist | 0 | 525,752,810 | 100% | ||
tomahawkthrow | 0 | 535,256,625 | 100% | ||
iceprincess | 0 | 528,861,420 | 100% | ||
doda69bby | 0 | 457,201,060 | 88% | ||
concertpiano | 0 | 454,656,261 | 88% | ||
loscafeteros | 0 | 105,438,210 | 25% | ||
turbotaxgangsta | 0 | 413,111,906 | 80% | ||
jeungsenpai | 0 | 413,130,224 | 80% | ||
crabcakes | 0 | 529,261,943 | 100% | ||
purplepill | 0 | 526,988,572 | 100% | ||
sct.value | 0 | 528,542,599 | 100% | ||
the.heretic | 0 | 460,045,618 | 88% | ||
zeebutton | 0 | 529,336,714 | 100% | ||
brokegambler | 0 | 528,019,016 | 100% | ||
coldweather | 0 | 519,442,478 | 100% | ||
hallowedsoul | 0 | 456,314,674 | 88% | ||
ezvote | 0 | 5,438,526,324 | 0.8% | ||
sanjeev.kumar | 0 | 6,027,743,819 | 100% | ||
ezpromote | 0 | 1,652,608,860 | 88% | ||
alwaysgrateful | 0 | 720,616,817,022 | 60% | ||
thetacore | 0 | 113,839,540 | 7% | ||
gammacore | 0 | 136,244,834 | 7% | ||
knightcore | 0 | 326,762,723 | 7% | ||
nano-votes | 0 | 242,637,505,679 | 100% | ||
psicore | 0 | 95,827,709 | 7% | ||
chess-evolved | 0 | 76,998,604 | 7% | ||
chessevolved | 0 | 67,659,538 | 7% | ||
game-of-kings | 0 | 1,020,048,540 | 7% | ||
alpha-and-omega | 0 | 138,721,526 | 7% | ||
zetacore | 0 | 66,769,491 | 7% | ||
ezcurate | 0 | 208,143,159 | 0.8% | ||
stonervotes | 0 | 22,898,688,855 | 21% | ||
zhaozhao | 0 | 537,240,620 | 100% | ||
forgottenpath | 0 | 525,325,852 | 100% | ||
psilently | 0 | 528,399,240 | 100% | ||
theyknownot | 0 | 525,294,713 | 100% | ||
yinsunlee | 0 | 525,179,724 | 100% | ||
etherealblade | 0 | 525,249,498 | 100% | ||
slicensplice | 0 | 525,275,359 | 100% | ||
dminus | 0 | 525,298,033 | 100% | ||
apsycho | 0 | 524,595,227 | 100% | ||
iamdaddy | 0 | 524,614,383 | 100% | ||
jackthriller | 0 | 525,258,354 | 100% | ||
tokyo.drip | 0 | 527,390,345 | 100% | ||
mrsizzle | 0 | 527,296,398 | 100% | ||
e5t0n1a | 0 | 524,923,377 | 100% | ||
sweeptheleg | 0 | 536,151,498 | 100% | ||
ruth.less | 0 | 516,596,552 | 100% | ||
quitslackin | 0 | 527,463,942 | 100% | ||
walkingmiles | 0 | 524,674,482 | 100% | ||
coryann | 0 | 524,923,377 | 100% | ||
ibiz | 0 | 527,409,655 | 100% | ||
sod0pe | 0 | 524,575,944 | 100% | ||
drmng | 0 | 526,881,221 | 100% | ||
voidcore | 0 | 526,957,103 | 100% | ||
notaroboto | 0 | 517,859,241 | 100% | ||
watdahell | 0 | 517,029,617 | 100% | ||
oneway2tell | 0 | 524,545,778 | 100% | ||
pea.nuts | 0 | 524,484,312 | 100% | ||
yeungman | 0 | 524,029,320 | 100% | ||
fiulong | 0 | 527,181,903 | 100% | ||
sixthirty | 0 | 523,489,783 | 100% | ||
slipshod | 0 | 524,484,439 | 100% | ||
espanich | 0 | 526,383,977 | 100% | ||
psychicblast | 0 | 523,536,214 | 100% | ||
wildride | 0 | 517,504,820 | 100% | ||
icebandit | 0 | 524,633,699 | 100% | ||
galaxius | 0 | 524,040,588 | 100% | ||
xylodrone | 0 | 527,039,329 | 100% | ||
minhao | 0 | 524,614,449 | 100% | ||
mostsavage | 0 | 517,858,501 | 100% | ||
yeano | 0 | 519,628,524 | 100% | ||
thatscute | 0 | 520,113,781 | 100% | ||
hmmletssee | 0 | 523,639,004 | 100% | ||
howboutnah | 0 | 523,639,004 | 100% | ||
howutried | 0 | 523,601,618 | 100% | ||
justsad | 0 | 523,639,004 | 100% | ||
jehoshua-shey | 0 | 94,530,453,816 | 100% | ||
clocks | 0 | 524,143,094 | 100% | ||
s1nful | 0 | 517,951,275 | 100% | ||
icouldbe | 0 | 518,514,910 | 100% | ||
justfin | 0 | 520,172,477 | 100% | ||
sav.age | 0 | 528,329,934 | 100% | ||
nasa.liftoff | 0 | 518,035,566 | 100% | ||
xaobashen | 0 | 518,048,627 | 100% | ||
whatitdo | 0 | 527,140,026 | 100% | ||
fkkaren | 0 | 516,416,747 | 100% | ||
chaotic.order | 0 | 527,982,983 | 100% | ||
exitleft | 0 | 516,554,247 | 100% | ||
jssavant | 0 | 517,981,896 | 100% | ||
onlyaruse | 0 | 527,550,356 | 100% | ||
mourningstar | 0 | 523,874,198 | 100% | ||
restinslime | 0 | 526,681,019 | 100% | ||
unalia | 0 | 526,349,372 | 100% | ||
forged | 0 | 525,385,686 | 100% | ||
icegod | 0 | 533,130,934 | 100% | ||
billbux | 0 | 517,552,894 | 100% | ||
totempole | 0 | 587,058,747 | 100% | ||
universus | 0 | 527,741,053 | 100% | ||
dimensionalis | 0 | 535,627,079 | 100% | ||
bloodrain | 0 | 523,617,978 | 100% | ||
acidreign | 0 | 524,342,669 | 100% | ||
piercingeyes | 0 | 517,799,873 | 100% | ||
fisticuffs | 0 | 523,955,914 | 100% | ||
paradoxus | 0 | 517,134,856 | 100% | ||
wreckedangle | 0 | 519,792,001 | 100% | ||
main-gi | 0 | 258,363,103 | 7% | ||
pickitup | 0 | 518,146,444 | 100% | ||
fireinthehole | 0 | 523,493,463 | 100% | ||
yaobehn | 0 | 517,753,345 | 100% | ||
crowned | 0 | 517,517,084 | 100% | ||
endoftime | 0 | 517,443,003 | 100% | ||
cokemule | 0 | 517,470,076 | 100% | ||
alienforce | 0 | 517,739,100 | 100% | ||
onecarpileup | 0 | 519,712,134 | 100% | ||
jaylyn | 0 | 517,578,250 | 100% | ||
shortlived | 0 | 517,609,214 | 100% | ||
apirate | 0 | 526,658,046 | 100% | ||
slurpee | 0 | 517,757,336 | 100% | ||
anominous | 0 | 517,490,187 | 100% | ||
godsentme | 0 | 523,493,463 | 100% | ||
imill | 0 | 517,578,250 | 100% | ||
yeaman | 0 | 517,605,854 | 100% | ||
temp0 | 0 | 527,590,834 | 100% | ||
notkaren | 0 | 524,166,686 | 100% | ||
xati | 0 | 520,158,810 | 100% | ||
ixixi | 0 | 526,520,802 | 100% | ||
kitari | 0 | 517,892,201 | 100% | ||
onett | 0 | 526,443,855 | 100% | ||
blackmajicks | 0 | 527,277,177 | 100% | ||
rollingstoned | 0 | 519,602,622 | 100% | ||
solidsumo | 0 | 526,923,210 | 100% | ||
anteup | 0 | 527,162,323 | 100% | ||
acknowledge | 0 | 526,366,442 | 100% | ||
jiujitzu | 0 | 526,559,213 | 100% | ||
tanaki | 0 | 524,887,650 | 100% | ||
fearnothing | 0 | 526,941,006 | 100% | ||
thedivine | 0 | 525,329,545 | 100% | ||
endlesswisdom | 0 | 525,578,369 | 100% | ||
great-a | 0 | 187,684,521,904 | 50% | ||
godoftomatoes | 0 | 77,640,953 | 6.93% | ||
steemmeme | 0 | 527,040,793 | 100% | ||
porque | 0 | 434,985,051 | 88% | ||
tumadre | 0 | 526,543,720 | 100% | ||
esdiablo | 0 | 526,764,692 | 100% | ||
polygons | 0 | 517,338,993 | 100% | ||
payyourdues | 0 | 527,140,026 | 100% | ||
alarms | 0 | 517,211,298 | 100% | ||
bigbag | 0 | 527,086,324 | 100% | ||
thickness | 0 | 526,658,575 | 100% | ||
disasterstrikes | 0 | 519,802,648 | 100% | ||
guidedmissile | 0 | 527,165,036 | 100% | ||
ralphwiggum | 0 | 527,178,262 | 100% | ||
inspiredby | 0 | 295,197,256 | 32% | ||
alaraf | 0 | 2,764,679,738 | 80% | ||
imaginaryfriend | 0 | 527,178,262 | 100% | ||
jsforloop | 0 | 517,229,595 | 100% | ||
angryspirit | 0 | 519,539,278 | 100% | ||
ewno | 0 | 527,178,262 | 100% | ||
metabolic | 0 | 519,598,287 | 100% | ||
drinkingliquor | 0 | 519,640,145 | 100% | ||
tlshandshake | 0 | 529,233,321 | 100% | ||
bitchslapped | 0 | 526,757,661 | 100% | ||
charred | 0 | 526,719,331 | 100% | ||
thelabel | 0 | 527,002,651 | 100% | ||
eye-of-the-storm | 0 | 279,386,888 | 5.25% | ||
boysuper | 0 | 248,489,960 | 50% | ||
mecurry | 0 | 104,487,417 | 3.5% | ||
minnowsupport3 | 0 | 3,162,233,067 | 100% | ||
izraelinspired | 0 | 436,832,617 | 50% | ||
nutbox.mine | 0 | 3,992,233,065,016 | 8.9% | ||
isitlove | 0 | 520,881,920 | 100% | ||
howlow | 0 | 520,624,645 | 100% | ||
iambob | 0 | 520,700,636 | 100% | ||
sodamndumb | 0 | 520,640,424 | 100% | ||
donggong | 0 | 520,545,299 | 100% | ||
jumpingdog | 0 | 520,631,811 | 100% | ||
pussyeater | 0 | 520,655,181 | 100% | ||
neverknowing | 0 | 520,658,773 | 100% | ||
zerocare | 0 | 520,643,101 | 100% | ||
cuckoldingyou | 0 | 520,700,148 | 100% | ||
rank1 | 0 | 529,216,220 | 100% | ||
voided | 0 | 520,552,262 | 100% | ||
leaking | 0 | 520,658,985 | 100% | ||
itslit | 0 | 520,598,288 | 100% | ||
jackdaripper | 0 | 520,776,220 | 100% | ||
thickwood | 0 | 520,666,371 | 100% | ||
calibrate | 0 | 520,730,413 | 100% | ||
deathsdoor | 0 | 520,612,752 | 100% | ||
theslayer | 0 | 529,405,923 | 100% | ||
spiritanimal | 0 | 526,703,864 | 100% | ||
darknesses | 0 | 526,703,864 | 100% | ||
bleeding | 0 | 526,703,864 | 100% | ||
atlarge | 0 | 526,703,864 | 100% | ||
victoree | 0 | 526,359,787 | 100% | ||
melikey | 0 | 526,244,933 | 100% | ||
totallyrandom | 0 | 519,255,034 | 100% | ||
humanlife | 0 | 526,551,099 | 100% | ||
userfriendly | 0 | 526,359,787 | 100% | ||
zeran | 0 | 526,283,263 | 100% | ||
brutal | 0 | 528,692,810 | 100% | ||
yvettelong | 0 | 526,244,933 | 100% | ||
itsyesterday | 0 | 526,703,864 | 100% | ||
jahmeen | 0 | 526,206,621 | 100% | ||
notvalid | 0 | 526,244,933 | 100% | ||
doitman | 0 | 526,169,151 | 100% | ||
wutwut | 0 | 526,703,864 | 100% | ||
myvotes | 0 | 526,359,787 | 100% | ||
twolegit | 0 | 526,551,099 | 100% | ||
tonydee | 0 | 519,243,485 | 100% | ||
lickit | 0 | 526,245,793 | 100% | ||
satansdaddy | 0 | 526,502,391 | 100% | ||
simpsonbart | 0 | 526,502,391 | 100% | ||
lilboom | 0 | 526,502,391 | 100% | ||
feedmelol | 0 | 525,977,835 | 100% | ||
cannons | 0 | 525,977,835 | 100% | ||
mmmyum | 0 | 518,930,485 | 100% | ||
floods | 0 | 520,174,717 | 100% | ||
strikers | 0 | 519,044,642 | 100% | ||
risingfever | 0 | 526,502,391 | 100% | ||
ogkwon | 0 | 518,972,570 | 100% | ||
masteries | 0 | 518,927,120 | 100% | ||
longsword | 0 | 518,931,042 | 100% | ||
three3 | 0 | 525,977,835 | 100% | ||
javacode | 0 | 429,687,621 | 88% | ||
javascriptcode | 0 | 431,411,843 | 88% | ||
poot | 0 | 519,025,524 | 100% | ||
rubyonrails | 0 | 519,025,372 | 100% | ||
phpcode | 0 | 431,441,480 | 88% | ||
swiftcode | 0 | 450,123,383 | 88% | ||
scalacode | 0 | 445,532,439 | 88% | ||
notreal | 0 | 525,977,835 | 100% | ||
godsent | 0 | 526,016,165 | 100% | ||
devilsent | 0 | 526,092,690 | 100% | ||
letuspray | 0 | 525,939,523 | 100% | ||
letusprey | 0 | 525,977,835 | 100% | ||
iamdeath | 0 | 525,977,835 | 100% | ||
iampain | 0 | 518,886,923 | 100% | ||
iamrage | 0 | 518,872,177 | 100% | ||
soheavy | 0 | 518,911,988 | 100% | ||
iameternal | 0 | 518,862,223 | 100% | ||
sleeps | 0 | 525,897,671 | 100% | ||
sonofdad | 0 | 518,824,573 | 100% | ||
tyranus | 0 | 525,976,808 | 100% | ||
nullll | 0 | 525,859,359 | 100% | ||
thedd | 0 | 525,900,166 | 100% | ||
dirtyshiv | 0 | 526,012,526 | 100% | ||
deepcover | 0 | 526,012,526 | 100% | ||
dipped | 0 | 526,318,366 | 100% | ||
urgrllovesme | 0 | 525,938,478 | 100% | ||
nomorals | 0 | 526,356,657 | 100% | ||
swer | 0 | 526,435,551 | 100% | ||
poisondart | 0 | 525,859,359 | 100% | ||
dprogress | 0 | 14,817,057,549 | 100% | ||
ccl7 | 0 | 65,307,178 | 100% | ||
ngbusinesses | 0 | -477,528,864 | -100% | ||
gakulquto85 | 0 | 497,863,039 | 100% | ||
joueurgear | 0 | 499,714,028 | 100% |
<a href="https://coupa.ng/bHgxg2" target="_blank"><img src="https://ads-partners.coupang.com/banners/273554?subId=&traceId=V0-301-879dd1202e5c73b2-I273554&w=728&h=90" alt=""></a> <div class='shr_item' style='position:relative; min-height:158px; margin:12px 0; padding:9px 10px; border:1px solid #dbdbdb; border-radius:1px; background-color:#fff;'><div class='item_dtl' style='position:relative; height:158px; padding:5px; border:1px solid #f0f1f4;'><span class='thmb' style='float:left; overflow:hidden; width:156px; height:156px; margin-right:9px; border:1px solid #e7e7e7;'><a href='https://qoo.tn/AoaPVR/Q163214049'><img src='https://steemitimages.com/240x0/https://gd.image-gmkt.com/li/061/293/1455293061.g_400-w-st_g.jpg' width='156' alt='' style='vertical-align: middle; border: 0 none;'></a></span><p class='tit' style='overflow:hidden; max-height:68px; margin-bottom:7px; line-height:17px; color:#000;'>[US$49.00](▼14%)[Nespresso]스타벅스 네스프레소 호환 캡슐 7종 / 120 캡슐 골라담기 / 20개씩 총 6종류 교차 선택 가능 / 중복 선택 가능 / 재고 확보 / 무료배송 / 개당 약 486원 최저가★</p><span class='url' style='position:absolute; left:170px; bottom:10px; display:block; font-weight:bold; color:#9197a3;'>WWW.QOO10.COM</span></div></div>
post_id | 88,734,541 |
---|---|
author | upvu |
permlink | re--b4ns5-20201211t135207667z |
category | hive-101145 |
json_metadata | {"tags":["hive-101145","sct-kr","sct-freeboard","s","union","mini","jjm","lgt","sct"]} |
created | 2020-12-11 13:52:09 |
last_update | 2020-12-11 13:52:09 |
depth | 1 |
children | 0 |
net_rshares | 488,735,675 |
last_payout | 2020-12-18 13:52:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 SBD |
curator_payout_value | 0.000 SBD |
pending_payout_value | 0.000 SBD |
promoted | 0.000 SBD |
body_length | 1,191 |
author_reputation | 1,778,279,410,038 |
root_title | "[암호화폐] 업비트에서 실거래를 해 봅시다." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 SBD |
percent_steem_dollars | 10,000 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
joueurgear | 0 | 488,735,675 | 100% |
@tradingideas transfered 10 KRWP to @krwp.burn. voting percent : 91.82%, voting power : 60.46%, steem power : 1986659.70, STU KRW : 1200. @tradingideas staking status : 7500 KRWP @tradingideas limit for KRWP voting service : 15 KRWP (rate : 0.002) What you sent : 10 KRWP [49358459 - 2ecdea80274759de61867b6f4e6f691d756fa6ac]
post_id | 88,734,574 |
---|---|
author | sct.krwp |
permlink | re--b4ns5-20201211t135535885z |
category | hive-101145 |
json_metadata | {"tags":["hive-101145","sct-kr","sct-freeboard","s","union","mini","jjm","lgt","sct"]} |
created | 2020-12-11 13:55:36 |
last_update | 2020-12-11 13:55:36 |
depth | 1 |
children | 0 |
net_rshares | 0 |
last_payout | 2020-12-18 13:55:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 SBD |
curator_payout_value | 0.000 SBD |
pending_payout_value | 0.000 SBD |
promoted | 0.000 SBD |
body_length | 390 |
author_reputation | 9,872,893,322,408 |
root_title | "[암호화폐] 업비트에서 실거래를 해 봅시다." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 SBD |
percent_steem_dollars | 10,000 |
흥미롭군요
post_id | 88,736,452 |
---|---|
author | uplus |
permlink | ql6p4b |
category | hive-101145 |
json_metadata | {"app":"steemit\/0.2"} |
created | 2020-12-11 16:43:30 |
last_update | 2020-12-11 16:43:30 |
depth | 1 |
children | 0 |
net_rshares | 0 |
last_payout | 2020-12-18 16:43:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 SBD |
curator_payout_value | 0.000 SBD |
pending_payout_value | 0.000 SBD |
promoted | 0.000 SBD |
body_length | 5 |
author_reputation | 9,672,874,554,958 |
root_title | "[암호화폐] 업비트에서 실거래를 해 봅시다." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 SBD |
percent_steem_dollars | 10,000 |
nice idea !
post_id | 88,739,035 |
---|---|
author | joueurgear |
permlink | ql76jt |
category | hive-101145 |
json_metadata | {"app":"steemit\/0.2"} |
created | 2020-12-11 22:59:54 |
last_update | 2020-12-11 22:59:54 |
depth | 1 |
children | 0 |
net_rshares | 277,205,554 |
last_payout | 2020-12-18 22:59:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 SBD |
curator_payout_value | 0.000 SBD |
pending_payout_value | 0.000 SBD |
promoted | 0.000 SBD |
body_length | 11 |
author_reputation | 3,004,538,530 |
root_title | "[암호화폐] 업비트에서 실거래를 해 봅시다." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 SBD |
percent_steem_dollars | 10,000 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
joueurgear | 0 | 277,205,554 | 100% |