 [source](https://pixabay.com/de/photos/%C3%A4pfel-bauernmarkt-gesch%C3%A4ft-kaufen-1841132/) Although not visible, the internal market is already working and HBD can be exchanged for HIVE. ## Prepare beempy You need to have an up to date [beem](https://github.com/holgern/beem) version 0.22.8 ``` beempy updatenodes --hive beempy currentnode ``` should return now ``` +----------+-----------------------+ | Key | Value | +----------+-----------------------+ | Node-Url | https://api.hive.blog | | Version | 0.23.0 | | HIVE | True | +----------+-----------------------+ ``` ## Check the orderbook ``` beempy orderbook --chart ``` ``` Orderbook 1701.93 $ ┼ 1595.59 $ ┼╮ 1489.25 $ ┤╰─╮ ┊ 1382.90 $ ┤ ╰─╮ ┊ ╭─────── 1276.56 $ ┤ ╰╮ ┊ ╭────╯ 1170.22 $ ┤ ╰───╮ ┊ ╭╯ 1063.87 $ ┤ ╰╮ ┊ │ 957.53 $ ┤ │ ┊ │ 851.19 $ ┤ │ ┊ ╭─╯ 744.84 $ ┤ │ ┊ │ 638.50 $ ┤ │ ┊ ╭─╯ 532.16 $ ┤ │ ┊ ╭╯ 425.81 $ ┤ ╰─────╮ ┊ │ 319.47 $ ┤ ╰────╮ ┊ ╭╯ 213.12 $ ┤ ╰─╮ ┊ │ 106.78 $ ┤ ╰╮┊ │ 0.44 $ ┤ ╰────╯ ``` and ``` beempy tradehistory ``` returns the last trades as plot ``` Trade history 2020-03-17T20:26:22 - 2020-03-24T20:26:22 HIVE/HBD 0.32 ┤ 0.31 ┤ ╭╮ 0.30 ┤ │╰╮ 0.29 ┤ ╭╯ │ 0.28 ┤ │ ╰╮ 0.27 ┤ │ │ ╭╮ ╭─ 0.26 ┤ ╭╮╭╯ │╭──╮ ╭╯│ │ 0.26 ┤ │││ ││ ╰╮ │ ╰─╯ 0.25 ┤ ╭╯╰╯ ╰╯ ╰─╯ 0.24 ┤ ╭╮ ╭╯ 0.23 ┤ ││╭╯ 0.22 ┤ │╰╯ 0.21 ┤ │ 0.20 ┤ │ 0.19 ┤ │ 0.18 ┤ ╭╯ 0.17 ┼───────╯ ``` a short info can be obtained by ``` beempy ticker ``` ``` +----------------+-------------------+ | Key | Value | +----------------+-------------------+ | highest_bid | 0.253913 HIVE/HBD | | latest | 0.300000 HIVE/HBD | | lowest_ask | 0.253994 HIVE/HBD | | percent_change | 0.00 % | | sbd_volume | 199.189 HBD | | steem_volume | 765.713 HIVE | +----------------+-------------------+ ``` ## Let's trade some HBD for HIVE First we should check our balance: ``` beempy balance holger80 ``` and then start to sell 1 HBD ``` beempy sell -a holger80 1 HBD ``` I'm now asked if the price is ok: ``` Is the following Price ok: 0.253913 HBD/HIVE [y/n]: ``` and should then enter my active wif: ``` Password to unlock wallet or posting/active wif: ``` I see then the broadcasted op: ``` Wif accepted! { "expiration": "2020-03-24T20:34:03", "ref_block_num": 63124, "ref_block_prefix": 2805668693, "operations": [ [ "limit_order_create", { "owner": "holger80", "orderid": 3815817900, "amount_to_sell": "1.000 HBD", "min_to_receive": "3.938 HIVE", "fill_or_kill": false, "expiration": "2020-03-31T20:33:33" } ] ], "extensions": [], "signatures": [ "206b30dd79130814b9f14468c573fd9154020148e43481f810343964b93bcf8c1865927d49d1e3b521ff9a2af12bd5461c2edee220b64f59108c04413c3b88cbb0" ] } ``` and can check my open orders: ``` beempy openorders holger80 ``` ``` +------------+---------------------+------------------------------------------+----------+ | Orderid | Created | Order | Account | +------------+---------------------+------------------------------------------+----------+ | 3815817900 | 2020-03-24T20:33:33 | 3.938 HIVE 1.000 HBD @ 0.253936 HBD/HIVE | holger80 | +------------+---------------------+------------------------------------------+----------+ ``` ## Cancel open orders I can cancel my order by ``` beempy cancel -a 3815817900 ``` Instead of selling 1 HBD, I can also buy 1 HIVE by ``` beempy buy -a holger80 1 HIVE ``` after checking the price and entering my wif, the order is placed. ## Using the orderbook to fulfill orders Let's check the first 5 orders: ``` beempy orderbook -l 5 ``` ``` +--------------+----------------------------------------------+--------------+-------------------------------------------+ | Asks Sum HBD | Sell Orders | Bids Sum HBD | Buy Orders | +--------------+----------------------------------------------+--------------+-------------------------------------------+ | 66.15 | 260.432 HIVE 66.148 HBD @ 0.253993 HBD/HIVE | 0.44 | 1.725 HIVE 0.438 HBD @ 0.253913 HBD/HIVE | | 240.43 | 637.769 HIVE 174.284 HBD @ 0.273271 HBD/HIVE | 0.70 | 1.032 HIVE 0.262 HBD @ 0.253876 HBD/HIVE | | 267.93 | 100.000 HIVE 27.500 HBD @ 0.275000 HBD/HIVE | 0.91 | 0.842 HIVE 0.211 HBD @ 0.250594 HBD/HIVE | | 283.93 | 53.344 HIVE 16.002 HBD @ 0.299978 HBD/HIVE | 0.91 | 0.004 HIVE 0.001 HBD @ 0.250000 HBD/HIVE | | 296.29 | 41.191 HIVE 12.357 HBD @ 0.299993 HBD/HIVE | 6.64 | 23.778 HIVE 5.731 HBD @ 0.241021 HBD/HIVE | +--------------+----------------------------------------------+--------------+-------------------------------------------+ ``` I can now sell 1 HBD @ 0.253993 HBD/HIVE as shown in the Asks column and the order should be fulfilled without waiting. Let's try: ``` beempy sell -a holger80 1 HBD 0.253993 ``` This time, I can enter the wif without asking for the price. The orderbook is empty this time: ``` beempy openorders holger80 ``` ``` +---------+---------+-------+---------+ | Orderid | Created | Order | Account | +---------+---------+-------+---------+ +---------+---------+-------+---------+ ``` The blockexplorer shows that my order was fulfilled:  I hope this help as long as the internal market has no interface.
author | holger80 |
---|---|
permlink | use-beempy-to-access-the-internal-hive-hbd-market |
category | hive |
json_metadata | {"app":"peakd/2020.03.10","format":"markdown","tags":["hive","beem","market","hbd"],"links":["https://pixabay.com/de/photos/%C3%A4pfel-bauernmarkt-gesch%C3%A4ft-kaufen-1841132/","https://github.com/holgern/beem"],"image":["https://files.peakd.com/file/peakd-hive/holger80/Vun5k1Ut-image.png","https://files.peakd.com/file/peakd-hive/holger80/FpiIlfLa-image.png"]} |
created | 2020-03-24 20:57:21 |
last_update | 2020-03-24 20:57:21 |
depth | 0 |
children | 9 |
last_payout | 2020-03-31 20:57:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 33.966 HBD |
curator_payout_value | 33.075 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 6,485 |
author_reputation | 358,857,509,568,825 |
root_title | "Use beempy to access the internal HIVE/HBD market" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,568,184 |
net_rshares | 160,081,227,198,901 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
fminerten | 0 | 2,382,541,152,714 | 100% | ||
steempty | 0 | 9,761,239,967,616 | 100% | ||
tombstone | 0 | 304,802,964,080 | 0.97% | ||
bue | 0 | 601,715,207,948 | 100% | ||
chris4210 | 0 | 24,229,659,382 | 2.7% | ||
flemingfarm | 0 | 78,387,166,800 | 100% | ||
oaldamster | 0 | 27,799,683,306 | 100% | ||
kevinwong | 0 | 155,380,152,015 | 1.89% | ||
leprechaun | 0 | 6,090,355,998 | 100% | ||
eric-boucher | 0 | 11,168,679,978 | 2.7% | ||
anwenbaumeister | 0 | 242,030,834 | 5.4% | ||
mammasitta | 0 | 1,942,889,964 | 0.27% | ||
gerber | 0 | 155,216,781,312 | 9% | ||
norbu | 0 | 43,403,829,103 | 25% | ||
kosimoos | 0 | 583,352,483 | 50% | ||
daan | 0 | 100,587,799,114 | 8% | ||
gidlark | 0 | 8,854,474,919 | 5% | ||
hitmeasap | 0 | 7,071,022,113 | 25% | ||
matt-a | 0 | 41,440,110,284 | 1.5% | ||
stranger27 | 0 | 8,359,029,724 | 100% | ||
ausbitbank | 0 | 1,672,185,787,770 | 100% | ||
arcange | 0 | 80,484,818,990 | 4% | ||
blueorgy | 0 | 14,986,432,272 | 4.05% | ||
exyle | 0 | 626,993,020,191 | 7% | ||
sharker | 0 | 15,185,359,936 | 70% | ||
arconite | 0 | 624,180,799 | 0.94% | ||
raphaelle | 0 | 3,072,385,665 | 4% | ||
kibela | 0 | 21,886,240,820 | 70% | ||
eztechwin | 0 | 2,199,391,878 | 2.7% | ||
pipokinha | 0 | 46,407,584,673 | 100% | ||
timcliff | 0 | 1,068,685,421,015 | 100% | ||
alinalazareva | 0 | 2,218,770,923 | 40% | ||
djennyfloro | 0 | 1,291,374,572 | 10% | ||
randomblock1 | 0 | 734,031,577 | 5.4% | ||
fooblic | 0 | 27,617,582,930 | 100% | ||
fingolfin | 0 | 15,685,511,038 | 100% | ||
lemouth | 0 | 272,678,976,460 | 22.5% | ||
alaqrab | 0 | 3,345,465,298 | 2.7% | ||
lamouthe | 0 | 2,407,223,138 | 30% | ||
aggroed | 0 | 4,892,646,106,560 | 100% | ||
mcsvi | 0 | 108,016,353,323 | 50% | ||
lk666 | 0 | 2,002,907,827 | 2.7% | ||
abh12345 | 0 | 185,257,756,335 | 15% | ||
funnyman | 0 | 258,119,639,959 | 20% | ||
justyy | 0 | 387,785,342,305 | 32% | ||
okean123 | 0 | 80,357,777,362 | 100% | ||
donchate | 0 | 2,011,269,050 | 100% | ||
curie | 0 | 122,211,934,230 | 5.4% | ||
techslut | 0 | 99,116,744,534 | 20% | ||
hendrikdegrote | 0 | 69,898,449,737 | 5.4% | ||
simonjay | 0 | 44,313,268,012 | 15% | ||
vact | 0 | 934,243,588 | 5.4% | ||
nonameslefttouse | 0 | 633,150,249,872 | 51% | ||
roguewriter | 0 | 31,536,476,412 | 15% | ||
steemstem | 0 | 751,770,342,820 | 30% | ||
dashfit | 0 | 568,053,585 | 2.7% | ||
tristancarax | 0 | 4,056,681,312 | 5.4% | ||
edb | 0 | 4,595,838,971 | 10% | ||
kaneyung | 0 | 1,067,969,036 | 50% | ||
beomelda | 0 | 1,061,957,959 | 50% | ||
nutman | 0 | 2,106,735,947 | 5.4% | ||
driptorchpress | 0 | 1,446,907,517 | 2.7% | ||
dna-replication | 0 | 8,237,710,278 | 30% | ||
shaunmza | 0 | 1,142,980,150 | 2.7% | ||
tarazkp | 0 | 1,564,662,974,911 | 50% | ||
mariaalmeida | 0 | 12,770,239,633 | 100% | ||
gmedley | 0 | 1,134,841,892 | 2.7% | ||
gifmaster | 0 | 38,943,857,296 | 100% | ||
decentral | 0 | 645,124,612 | 1.35% | ||
freebornsociety | 0 | 2,009,547,413 | 10% | ||
ocisly | 0 | 8,804,421,526 | 100% | ||
imperfect-one | 0 | 6,540,327,231 | 100% | ||
bloom | 0 | 105,782,694,284 | 30% | ||
arnel | 0 | 1,175,281,740 | 2.7% | ||
broncnutz | 0 | 7,698,484,190,219 | 100% | ||
iansart | 0 | 5,582,045,234 | 2.7% | ||
schlees | 0 | 394,447,934,492 | 100% | ||
mvd | 0 | 22,090,686,301 | 2.7% | ||
yeaho | 0 | 70,358,515,243 | 20% | ||
jagged | 0 | 3,398,272,339 | 1.08% | ||
bitrocker2020 | 0 | 3,911,634,788 | 0.27% | ||
farizal | 0 | 3,841,295,608 | 18% | ||
mblain | 0 | 887,795,028 | 100% | ||
mys | 0 | 18,830,825,654 | 5% | ||
rycharde | 0 | 1,507,457,943 | 9% | ||
helo | 0 | 18,423,629,244 | 15% | ||
freetissues | 0 | 6,256,404,073 | 2.7% | ||
samminator | 0 | 21,912,422,912 | 15% | ||
aditor | 0 | 4,657,346,133 | 100% | ||
wishmaiden | 0 | 589,804,349 | 2.7% | ||
mxzn | 0 | 3,379,865,031 | 2.7% | ||
jeanpi1908 | 0 | 37,643,866,107 | 60% | ||
zerotoone | 0 | 1,061,780,910 | 2.7% | ||
skepticology | 0 | 1,500,978,483 | 100% | ||
locikll | 0 | 2,217,897,854 | 10.8% | ||
maxer27 | 0 | 330,988,836,848 | 100% | ||
wf9877 | 0 | 626,126,126,256 | 100% | ||
ticopurelife | 0 | 61,410,362,438 | 100% | ||
mahdiyari | 0 | 45,153,685,542 | 15% | ||
lorenzor | 0 | 5,628,178,755 | 50% | ||
firstamendment | 0 | 5,561,052,447 | 15% | ||
aboutyourbiz | 0 | 1,008,655,157 | 5.4% | ||
derosnec | 0 | 580,584,514 | 2.7% | ||
alexander.alexis | 0 | 17,303,727,996 | 30% | ||
avisk | 0 | 1,217,033,254 | 100% | ||
rival | 0 | 3,143,593,607 | 2% | ||
whd | 0 | 6,423,490,058 | 5% | ||
gunthertopp | 0 | 134,532,209,836 | 2.7% | ||
binkyprod | 0 | 1,344,492,137 | 2.7% | ||
tngflx | 0 | 1,247,752,049 | 1.62% | ||
ludmila.kyriakou | 0 | 2,074,876,590 | 9% | ||
bubke | 0 | 1,872,693,135,158 | 100% | ||
flatman | 0 | 6,220,727,284 | 5.4% | ||
jacekw | 0 | 55,783,259,230 | 100% | ||
allcapsonezero | 0 | 2,721,033,092 | 2.7% | ||
minnowbooster | 0 | 3,163,273,788,760 | 20% | ||
drorion | 0 | 381,179,400,796 | 100% | ||
tsoldovieri | 0 | 2,183,756,906 | 15% | ||
shebe | 0 | 11,911,366,155 | 53% | ||
neumannsalva | 0 | 2,649,045,734 | 2.7% | ||
stayoutoftherz | 0 | 38,138,274,198 | 2.16% | ||
abigail-dantes | 0 | 515,053,120,166 | 30% | ||
yoogyart | 0 | 31,328,274,262 | 51% | ||
superhardness | 0 | 8,093,313,384,552 | 100% | ||
twoitguys | 0 | 686,076,080 | 5.4% | ||
zonguin | 0 | 4,050,735,420 | 7.5% | ||
supriya1993 | 0 | 5,736,111,803 | 15% | ||
prapanth | 0 | 586,806,732 | 2.7% | ||
mountain.phil28 | 0 | 1,053,997,155 | 25% | ||
val.halla | 0 | 2,869,753,262 | 10% | ||
vimukthi | 0 | 7,396,909,311 | 100% | ||
sharelovenothate | 0 | 2,071,554,049 | 100% | ||
techtek | 0 | 45,386,814,974 | 100% | ||
iamphysical | 0 | 5,400,148,687 | 90% | ||
hdmed | 0 | 3,098,576,026 | 5.4% | ||
dipom98 | 0 | 1,093,283,121 | 2.7% | ||
felixrodriguez | 0 | 941,337,605 | 15% | ||
revo | 0 | 21,244,347,140 | 5.4% | ||
azulear | 0 | 4,839,585,472 | 100% | ||
karja | 0 | 176,856,788,539 | 10% | ||
stickchumpion | 0 | 762,000,297 | 2.7% | ||
noloafing | 0 | 48,516,345,078 | 30% | ||
tipu | 0 | 46,614,914,289,440 | 100% | ||
kimzwarch | 0 | 8,011,184,320 | 4% | ||
olusolaemmanuel | 0 | 991,667,541 | 3.78% | ||
massivevibration | 0 | 9,317,565,678 | 5% | ||
crokkon | 0 | 38,690,262,318 | 100% | ||
accelerator | 0 | 107,151,000,987 | 9% | ||
nako1337 | 0 | 2,047,526,987 | 100% | ||
torico | 0 | 1,007,846,182 | 1.78% | ||
yangoldberg | 0 | 25,273,228,002 | 5.4% | ||
roleerob | 0 | 11,290,126,037 | 2.25% | ||
minnowpowerup | 0 | 1,226,856,484 | 2.7% | ||
scorer | 0 | 209,576,793,947 | 100% | ||
superbing | 0 | 5,128,931,133 | 16% | ||
majes.tytyty | 0 | 68,757,989,575 | 6% | ||
espoem | 0 | 266,839,956,156 | 100% | ||
infamousit | 0 | 4,123,076,828 | 25% | ||
cryptononymous | 0 | 659,784,323 | 2.7% | ||
creativetruth | 0 | 143,210,474,473 | 100% | ||
gotgame | 0 | 1,026,354,659 | 2.7% | ||
braveboat | 0 | 2,501,161,685 | 8% | ||
jlsplatts | 0 | 6,553,293,585 | 1.5% | ||
buttcoins | 0 | 4,624,127,926 | 1.08% | ||
isnochys | 0 | 21,724,695,755 | 18% | ||
fatkat | 0 | 1,122,983,728 | 2.69% | ||
peaceandwar | 0 | 841,061,020 | 2.7% | ||
enzor | 0 | 644,626,810 | 15% | ||
spacesheep | 0 | 3,687,242,504 | 100% | ||
florian-glechner | 0 | 1,349,735,428 | 0.54% | ||
carloserp-2000 | 0 | 9,644,799,110 | 100% | ||
battebilly | 0 | 792,794,530 | 2.7% | ||
eikejanssen | 0 | 38,911,498,553 | 100% | ||
lays | 0 | 15,489,694,556 | 2.7% | ||
lottje | 0 | 780,448,060 | 30% | ||
gra | 0 | 2,584,790,739 | 30% | ||
blockbrothers | 0 | 8,160,279,734 | 3.5% | ||
postpromoter | 0 | 1,473,258,990,331 | 30% | ||
omstavan | 0 | 1,522,983,220 | 21% | ||
bluefinstudios | 0 | 804,707,978 | 1.62% | ||
steveconnor | 0 | 2,181,224,908 | 2.7% | ||
sankysanket18 | 0 | 11,387,342,201 | 15% | ||
nicole-st | 0 | 2,243,094,726 | 2.7% | ||
drmake | 0 | 2,968,696,072 | 2.7% | ||
danile666 | 0 | 3,444,155,358 | 2.7% | ||
aboutcoolscience | 0 | 120,127,443,654 | 30% | ||
pechichemena | 0 | 1,073,561,192 | 1.08% | ||
andrepol | 0 | 35,224,210,872 | 100% | ||
mytechtrail | 0 | 41,864,176,794 | 20% | ||
amestyj | 0 | 3,623,445,370 | 100% | ||
ocupation | 0 | 240,538,215,274 | 100% | ||
skycae | 0 | 679,647,649 | 5.4% | ||
itchyfeetdonica | 0 | 5,294,802,845 | 1.08% | ||
kenadis | 0 | 7,745,523,772 | 30% | ||
steempsych | 0 | 7,818,032,061 | 30% | ||
robotics101 | 0 | 2,956,327,341 | 30% | ||
gentleshaid | 0 | 140,121,561,768 | 100% | ||
lextenebris | 0 | 734,042,307 | 2.7% | ||
steembasicincome | 0 | 158,482,176,168 | 100% | ||
cheva | 0 | 445,287,429,817 | 100% | ||
rajib2k5 | 0 | 2,803,165,136 | 0.75% | ||
solips | 0 | 202,549,741,994 | 100% | ||
fourfourfun | 0 | 6,462,395,577 | 25% | ||
venalbe | 0 | 688,921,084 | 2.7% | ||
danaedwards | 0 | 658,155,086 | 5.4% | ||
dechastre | 0 | 1,115,969,124 | 1.08% | ||
sco | 0 | 30,258,844,296 | 30% | ||
redcube | 0 | 2,964,814,183 | 2.7% | ||
abitcoinskeptic | 0 | 269,141,170,545 | 39% | ||
ennyta | 0 | 937,645,835 | 50% | ||
kissi | 0 | 16,190,959,469 | 75% | ||
gordon92 | 0 | 549,913,105 | 2.7% | ||
stahlberg | 0 | 1,231,279,432 | 2.7% | ||
gabrielatravels | 0 | 1,459,541,989 | 2.7% | ||
gexi | 0 | 7,956,996,289 | 100% | ||
eliaschess333 | 0 | 754,646,533 | 50% | ||
iamjadeline | 0 | 1,518,247,694 | 0.81% | ||
bartheek | 0 | 2,040,450,829 | 50% | ||
mstafford | 0 | 8,688,398,941 | 100% | ||
langford | 0 | 542,678,388 | 30% | ||
hijosdelhombre | 0 | 6,755,928,876 | 7.5% | ||
mathowl | 0 | 40,618,360,998 | 42% | ||
soufianechakrouf | 0 | 1,184,234,122 | 1.62% | ||
bji1203 | 0 | 922,255,243,822 | 58% | ||
shinedojo | 0 | 624,350,884 | 5.4% | ||
fragmentarion | 0 | 9,311,114,639 | 24% | ||
santarius | 0 | 1,502,407,420 | 100% | ||
bennettitalia | 0 | 917,805,536 | 1.35% | ||
acronyms | 0 | 1,155,440,999 | 100% | ||
belemo | 0 | 19,468,553,243 | 100% | ||
leslierevales | 0 | 1,901,758,035 | 50% | ||
durbisrodriguez | 0 | 623,013,478 | 100% | ||
terrylovejoy | 0 | 9,609,071,094 | 12% | ||
vaansteam | 0 | 97,462,409,946 | 30% | ||
neneandy | 0 | 6,217,118,407 | 5.4% | ||
gandalfthewhite | 0 | 536,892,284 | 100% | ||
steepup | 0 | 916,231,310 | 12% | ||
gribouille | 0 | 1,308,756,503 | 30% | ||
tobias-g | 0 | 479,653,714,386 | 100% | ||
stemng | 0 | 8,965,371,370 | 15% | ||
nobyeni | 0 | 2,218,932,948 | 5% | ||
investprosper | 0 | 589,315,767 | 4.36% | ||
kingabesh | 0 | 541,778,054 | 15% | ||
miguelangel2801 | 0 | 743,155,686 | 50% | ||
didic | 0 | 2,387,286,291 | 2.7% | ||
warpedpoetic | 0 | 6,032,593,781 | 30% | ||
cadawg | 0 | 20,773,602,238 | 6.3% | ||
emiliomoron | 0 | 6,464,516,437 | 50% | ||
beverages | 0 | 6,832,939,274 | 2.7% | ||
dexterdev | 0 | 873,121,559 | 15% | ||
sudefteri | 0 | 20,404,592,121 | 100% | ||
happy-soul | 0 | 437,011,538,666 | 50% | ||
nwjordan | 0 | 812,591,990 | 5.4% | ||
abdulhanan | 0 | 7,588,483,784 | 100% | ||
oghie | 0 | 1,163,369,469 | 50% | ||
geopolis | 0 | 1,897,830,848 | 30% | ||
robertbira | 0 | 3,197,939,967 | 7.5% | ||
condeas | 0 | 963,060,596,478 | 100% | ||
sashas | 0 | 3,618,800,513 | 100% | ||
dacx | 0 | 16,111,688,312 | 4.86% | ||
atomcollector | 0 | 26,777,105,743 | 25% | ||
thomasrobertgent | 0 | 16,190,001,179 | 100% | ||
alexdory | 0 | 33,732,426,895 | 30% | ||
asgarth | 0 | 2,014,210,901,343 | 100% | ||
flugschwein | 0 | 22,675,936,637 | 100% | ||
cyprianj | 0 | 13,206,529,088 | 100% | ||
cst90 | 0 | 19,572,440,678 | 100% | ||
matschi | 0 | 3,480,642,675 | 100% | ||
akifane | 0 | 3,454,767,350 | 100% | ||
francostem | 0 | 3,983,953,397 | 30% | ||
endopediatria | 0 | 685,584,523 | 20% | ||
forester-joe | 0 | 728,088,270 | 1.5% | ||
vicesrus | 0 | 5,961,384,348 | 2.7% | ||
croctopus | 0 | 1,378,471,338 | 100% | ||
zipporah | 0 | 2,669,234,165 | 1.08% | ||
siomarasalmeron | 0 | 502,010,480 | 100% | ||
backinblackdevil | 0 | 91,625,775,541 | 11% | ||
norwegianbikeman | 0 | 16,628,951,404 | 20% | ||
positiveninja | 0 | 715,448,637 | 2.7% | ||
deathlyhorror | 0 | 1,924,348,329 | 2.7% | ||
miroslavrc | 0 | 2,630,189,114 | 1.35% | ||
satren | 0 | 64,154,644,413 | 25% | ||
lauchmelder | 0 | 21,551,073,369 | 100% | ||
foxyspirit | 0 | 787,313,435 | 2.7% | ||
lordjames | 0 | 5,009,137,318 | 2.7% | ||
bscrypto | 0 | 2,455,426,429 | 1.35% | ||
kargul09 | 0 | 5,618,703,068 | 100% | ||
tomastonyperez | 0 | 14,765,222,462 | 50% | ||
beleg | 0 | 2,247,509,226 | 5% | ||
bil.prag | 0 | 543,074,745 | 0.27% | ||
elvigia | 0 | 10,501,109,192 | 50% | ||
bestboom | 0 | 70,721,093,279 | 9% | ||
eunsik | 0 | 289,774,675,258 | 50% | ||
safrizal.mus | 0 | 1,277,170,857 | 75% | ||
abrockman | 0 | 336,780,449,430 | 100% | ||
dotwin1981 | 0 | 43,822,116,908 | 25% | ||
sanderjansenart | 0 | 2,426,535,508 | 2.7% | ||
vittoriozuccala | 0 | 1,371,792,908 | 2.7% | ||
zainnyferdhoy | 0 | 813,461,231 | 100% | ||
adamada | 0 | 10,194,175,807 | 25% | ||
robin-mctities | 0 | 2,392,933,060 | 100% | ||
koenau | 0 | 3,087,190,452 | 2.7% | ||
qberry | 0 | 2,783,939,264 | 2.7% | ||
d-zero | 0 | 3,873,401,875 | 100% | ||
lesmouths-travel | 0 | 1,501,424,167 | 19.5% | ||
reversehitler88 | 0 | 1,093,116,658 | 50% | ||
sbi2 | 0 | 107,187,690,023 | 100% | ||
dera123 | 0 | 220,592,142,237 | 100% | ||
rambutan.art | 0 | 1,259,770,201 | 5.4% | ||
elleok | 0 | 3,892,773,861 | 100% | ||
freddio | 0 | 57,920,635,344 | 15% | ||
alitavirgen | 0 | 25,678,664,478 | 15.4% | ||
de-stem | 0 | 11,188,822,565 | 29.7% | ||
serylt | 0 | 1,339,702,200 | 29.4% | ||
dreimaldad | 0 | 66,034,074,259 | 50% | ||
josedelacruz | 0 | 8,563,157,865 | 50% | ||
joseangelvs | 0 | 2,542,399,924 | 100% | ||
dearw | 0 | 8,203,017,360 | 5.4% | ||
outtheshellvlog | 0 | 649,546,040 | 2.7% | ||
saboin | 0 | 8,845,040,531 | 1.35% | ||
thedevilsbride | 0 | 2,974,494,430 | 50% | ||
sawyn | 0 | 557,071,666 | 2.7% | ||
kendallron | 0 | 867,515,120 | 30% | ||
mraggaj | 0 | 1,554,422,490 | 5% | ||
menoski | 0 | 811,324,599 | 7.5% | ||
steamsteem | 0 | 232,214,728,535 | 100% | ||
stefannikolov | 0 | 3,460,929,765 | 50% | ||
srijana-gurung | 0 | 1,195,382,413 | 2.7% | ||
sbi3 | 0 | 107,487,761,684 | 100% | ||
yaraha | 0 | 18,953,545,667 | 100% | ||
promobot | 0 | 875,206,326,097 | 100% | ||
deholt | 0 | 1,668,559,204 | 25.5% | ||
superlao | 0 | 64,525,965,620 | 100% | ||
glodniwiedzy | 0 | 1,583,743,629 | 100% | ||
sbi4 | 0 | 105,301,134,986 | 100% | ||
luegenbaron | 0 | 44,351,692,629 | 100% | ||
indayclara | 0 | 638,539,392 | 15% | ||
musicvoter | 0 | 9,488,999,037 | 2% | ||
fw206 | 0 | 1,643,772,398,540 | 100% | ||
nickyhavey | 0 | 14,802,533,354 | 2.7% | ||
carlpei | 0 | 311,571,351,794 | 100% | ||
crystalhuman | 0 | 2,885,179,062 | 30% | ||
fibaroteam | 0 | 0 | 100% | ||
pladozero | 0 | 41,737,116,549 | 10% | ||
crimo | 0 | 5,153,800,088 | 50% | ||
temitayo-pelumi | 0 | 2,238,373,488 | 30% | ||
helpyou | 0 | 3,082,912,840 | 50% | ||
andrick | 0 | 808,248,635 | 50% | ||
archisteem | 0 | 4,606,568,019 | 7.5% | ||
steemjet | 0 | 616,468,851 | 2.7% | ||
yusvelasquez | 0 | 1,534,502,733 | 50% | ||
motherofalegend | 0 | 3,074,957,874 | 15% | ||
doctor-cog-diss | 0 | 1,119,468,454 | 30% | ||
pinas | 0 | 564,443,330 | 50% | ||
trisolaran | 0 | 1,233,472,433 | 2.7% | ||
musicvoter2 | 0 | 7,717,906,938 | 1% | ||
marcuz | 0 | 979,732,688 | 15% | ||
linnyplant | 0 | 43,286,814,651 | 100% | ||
itastem | 0 | 12,383,657,243 | 30% | ||
bluewall | 0 | 15,729,346,940 | 100% | ||
steempeak | 0 | 1,358,162,503,480 | 100% | ||
myfreebtc | 0 | 2,705,691,748 | 2.7% | ||
schroders | 0 | 2,129,242,814 | 1.62% | ||
anaestrada12 | 0 | 15,591,411,192 | 100% | ||
melissaofficial | 0 | 0 | 100% | ||
sbi5 | 0 | 106,178,797,760 | 100% | ||
swisswitness | 0 | 51,536,780,042 | 100% | ||
kahvesizlik | 0 | 1,278,119,125 | 100% | ||
aminealaoui | 0 | 2,348,812,908 | 2.7% | ||
moneybaby | 0 | 902,421,876 | 2.5% | ||
cheese4ead | 0 | 890,691,458 | 2.7% | ||
imtase | 0 | 23,844,366,647 | 65% | ||
remotehorst23 | 0 | 11,853,232,161 | 50% | ||
filebot | 0 | 695,089,134 | 50% | ||
blewitt | 0 | 7,601,493,916 | 0.27% | ||
sbi6 | 0 | 102,076,977,288 | 100% | ||
anyer-quantum | 0 | 542,844,829 | 100% | ||
scrawly | 0 | 113,643,938,449 | 100% | ||
gnomed0 | 0 | 3,020,878,977 | 100% | ||
ilovecryptopl | 0 | 837,301,181 | 4.32% | ||
urdreamscometrue | 0 | 29,705,915,233 | 100% | ||
bflanagin | 0 | 3,416,215,129 | 2.7% | ||
pagliozzo | 0 | 23,064,987,470 | 20% | ||
schlunior | 0 | 32,935,128,600 | 100% | ||
baiboua | 0 | 52,048,179,406 | 65% | ||
ubaldonet | 0 | 5,166,074,524 | 70% | ||
akioexzgamer | 0 | 3,343,153,925 | 65% | ||
lillywilton | 0 | 1,668,425,001 | 20% | ||
bestofph | 0 | 5,916,402,305 | 30% | ||
georgeknowsall | 0 | 35,196,891,240 | 100% | ||
gerdtrudroepke | 0 | 13,726,967,677 | 50% | ||
goblinknackers | 0 | 119,724,445,212 | 4% | ||
jk6276 | 0 | 1,191,339,526 | 1.62% | ||
french-tech | 0 | 14,721,641,886 | 65% | ||
yuza | 0 | 9,200,461,291 | 65% | ||
p4ragon | 0 | 3,851,430,372 | 50% | ||
pvinny69 | 0 | 1,407,223,331 | 5.4% | ||
goumao | 0 | 72,152,397,240 | 100% | ||
kylealex | 0 | 5,334,145,212 | 10% | ||
sbi7 | 0 | 92,338,844,801 | 100% | ||
julian2013 | 0 | 7,243,507,427 | 2.25% | ||
dlike | 0 | 148,660,086,049 | 2.7% | ||
triptolemus | 0 | 29,200,853,843 | 9% | ||
doldrums | 0 | 6,897,270,000 | 5% | ||
paopaoza | 0 | 8,313,736,931 | 65% | ||
minimining | 0 | 603,097,504 | 2.7% | ||
loveforlove | 0 | 2,915,226,368 | 30% | ||
spoke | 0 | 7,706,849,722 | 4.32% | ||
fran.frey | 0 | 3,893,784,638 | 50% | ||
coinmarketcal | 0 | 26,077,423,775 | 22% | ||
holger.random | 0 | 931,427,387 | 100% | ||
perpetuum-lynx | 0 | 844,415,292 | 29.4% | ||
ten-years-before | 0 | 9,443,933,178 | 65% | ||
engrave | 0 | 692,111,432,291 | 100% | ||
annaabi | 0 | 617,992,508 | 2.7% | ||
emperorhassy | 0 | 2,955,801,615 | 30% | ||
bobby.madagascar | 0 | 3,381,502,731 | 2.25% | ||
stem-espanol | 0 | 52,542,798,663 | 100% | ||
puza | 0 | 6,530,290,568 | 65% | ||
knightbjj | 0 | 837,626,275 | 4.05% | ||
the.success.club | 0 | 2,346,033,706 | 2.7% | ||
crypto.story | 0 | 60,973,854 | 65% | ||
chickenmeat | 0 | 1,067,984,869 | 2.7% | ||
macoolette | 0 | 14,766,585,425 | 1.08% | ||
javier.dejuan | 0 | 7,653,816,608 | 30% | ||
sbi8 | 0 | 86,878,253,362 | 100% | ||
jmkengineering | 0 | 5,616,757,138 | 30% | ||
gamer0815 | 0 | 1,067,550,298 | 25% | ||
univers.crypto | 0 | 190,880,980 | 65% | ||
tommyl33 | 0 | 674,275,953 | 2.7% | ||
mintrawa | 0 | 302,272,255 | 65% | ||
sbi9 | 0 | 73,105,254,755 | 100% | ||
scienze | 0 | 15,507,674,490 | 30% | ||
scienza | 0 | 15,665,461,794 | 30% | ||
besheda | 0 | 1,093,975,677 | 43% | ||
dubignyp | 0 | 1,315,256,130 | 50% | ||
adyorka | 0 | 1,167,606,516 | 40% | ||
giulyfarci52 | 0 | 1,603,167,647 | 50% | ||
pushpedal | 0 | 561,725,733 | 2.7% | ||
esthersanchez | 0 | 881,666,714 | 20% | ||
gameeit | 0 | 2,451,158,127 | 100% | ||
linuxbot | 0 | 1,414,869,714 | 100% | ||
deepsouthpiddlin | 0 | 3,382,387,693 | 20% | ||
mistia | 0 | 6,347,199,162 | 100% | ||
solarphasing | 0 | 686,459,648 | 5% | ||
the-rhapsodist | 0 | 33,394,563,098 | 30% | ||
sbi10 | 0 | 81,212,156,905 | 100% | ||
stem.witness | 0 | 48,146,553,461 | 30% | ||
empressteemah | 0 | 2,474,853,029 | 30% | ||
regularowl | 0 | 1,233,230,951 | 21% | ||
khan.dayyanz | 0 | 1,026,459,115 | 5.4% | ||
bluerobo | 0 | 24,040,473,968 | 100% | ||
wilmer14molina | 0 | 1,009,989,483 | 50% | ||
j-p-bs | 0 | 1,370,674,423 | 60% | ||
healthexpert | 0 | 5,593,052,367 | 2.7% | ||
dfen | 0 | 1,613,911,945 | 100% | ||
kaldewei | 0 | 2,943,055,735 | 25% | ||
vaultec | 0 | 4,026,326,188 | 12% | ||
bewarecenterbase | 0 | 238,244,233,439 | 100% | ||
tonalddrump | 0 | 7,031,495,023 | 50% | ||
permaculturedude | 0 | 1,739,705,677 | 4.5% | ||
travisung | 0 | 13,415,788,129 | 2.7% | ||
monster.oo7 | 0 | 729,822,722 | 50% | ||
circa | 0 | 225,311,437,451 | 29% | ||
crowdwitness | 0 | 18,120,532,365 | 15% | ||
ctime | 0 | 9,351,656,722,121 | 100% | ||
jamesbattler | 0 | 85,163,745,762 | 100% | ||
broxi | 0 | 11,699,429,553 | 50% | ||
brujas | 0 | 1,092,012,458 | 100% | ||
hairgistix | 0 | 2,621,582,581 | 2.7% | ||
rem-steem | 0 | 1,736,784,229 | 1.08% | ||
psytopia | 0 | 0 | 100% | ||
pulleyhead | 0 | 1,335,810,951 | 5.4% | ||
schlank | 0 | 26,139,190,586 | 100% | ||
realgoodcontent | 0 | 873,656,577 | 100% | ||
mia-cc | 0 | 13,883,565,270 | 100% | ||
richie.rich | 0 | 46,910,696,448 | 100% | ||
cryptological | 0 | 579,053,555 | 2.7% | ||
hashkings | 0 | 1,117,823,377 | 0.54% | ||
breakout101 | 0 | 609,276,981 | 2.7% | ||
bewithbreath | 0 | 6,519,732,457 | 5% | ||
pedrobrito2004 | 0 | 36,039,903,085 | 100% | ||
schlooster | 0 | 1,807,615,038 | 100% | ||
ttg | 0 | 561,648,467,479 | 100% | ||
jackramsey | 0 | 734,388,203 | 3.78% | ||
filosof103 | 0 | 778,439,430 | 2.7% | ||
maxsieg | 0 | 1,554,180,660 | 100% | ||
brendanweinhold | 0 | 537,937,714 | 100% | ||
szf | 0 | 956,750,527 | 50% | ||
wallvater | 0 | 6,485,667,702 | 100% | ||
begood2me | 0 | 598,438,307 | 2.7% | ||
epicdice | 0 | 30,148,618,044 | 1.62% | ||
raspibot | 0 | 3,816,067,535 | 100% | ||
spicywoman | 0 | 553,718,945 | 50% | ||
nextcolony | 0 | 267,811,861,475 | 100% | ||
deeanndmathews | 0 | 45,660,594,524 | 100% | ||
robibasa | 0 | 6,438,801,012 | 10% | ||
sparschwein | 0 | 19,707,899,082 | 50% | ||
naltedtirt | 0 | 7,236,004,995 | 50% | ||
steementertainer | 0 | 113,830,205,062 | 65% | ||
fractalfrank | 0 | 6,200,827,005 | 2.7% | ||
likwid | 0 | 31,350,581,348,772 | 100% | ||
swedishdragon76 | 0 | 2,488,827,304 | 50% | ||
dachcolony | 0 | 31,133,898,291 | 100% | ||
victartex | 0 | 1,194,453,229 | 15% | ||
captain.kirk | 0 | 23,090,256,994 | 50% | ||
leighscotford | 0 | 3,936,144,434 | 10% | ||
ph1102 | 0 | 4,977,653,822 | 4.86% | ||
jean-luc.picard | 0 | 3,731,133,734 | 100% | ||
afarina46 | 0 | 792,029,310 | 15% | ||
titan-c | 0 | 1,828,675,778 | 5.4% | ||
steemindian | 0 | 730,554,503 | 3.5% | ||
nalexadre | 0 | 309,335,228 | 65% | ||
cinefilm | 0 | 356,342,947,355 | 100% | ||
fsm-liquid | 0 | 965,535,457 | 7% | ||
juancho10 | 0 | 873,477,261 | 15% | ||
jalentakesphotos | 0 | 2,715,331,150 | 10% | ||
triplea.bot | 0 | 1,806,546,364 | 7% | ||
steem.leo | 0 | 162,022,761,516 | 8.64% | ||
everythingsmgirl | 0 | 1,446,107,040 | 50% | ||
leo.voter | 0 | 181,669,983,390 | 8.73% | ||
condeas.pal | 0 | 834,475,349 | 90% | ||
freddio.sport | 0 | 2,539,149,310 | 15% | ||
babytarazkp | 0 | 664,996,261 | 50% | ||
leo.syndication | 0 | 3,964,918,989 | 9% | ||
drlobes | 0 | 2,497,117,055 | 15% | ||
one.life | 0 | 53,783,145,009 | 8.98% | ||
maxuva | 0 | 635,817,443 | 9% | ||
maxuvb | 0 | 623,025,332 | 9% | ||
maxuvc | 0 | 649,491,991 | 9% | ||
maxuvd | 0 | 5,309,984,651 | 7.2% | ||
maxuve | 0 | 43,982,024,477 | 9% | ||
ctl001 | 0 | 592,247,861 | 100% | ||
shahzain7 | 0 | 31,667,798,676 | 100% | ||
steem.consultant | 0 | 664,863,487 | 1.08% | ||
joshmania | 0 | 37,861,536,386 | 15% | ||
steemstem-trig | 0 | 2,241,890,161 | 30% | ||
dmoonfire | 0 | 14,326,837,359 | 71% | ||
unpopular | 0 | 251,248,579,805 | 100% | ||
yourtop3 | 0 | 6,567,768,632 | 2.16% | ||
hjmarseille | 0 | 3,280,222,744 | 21% | ||
billybohner | 0 | 16,910,226,242 | 100% | ||
roamingsparrow | 0 | 1,185,304,380 | 4.05% | ||
suriel3000 | 0 | 1,908,012,993 | 100% | ||
likeup | 0 | 1,772,923,135 | 90% | ||
reghunter | 0 | 1,453,268,958 | 25% | ||
jeffmackinnon | 0 | 2,023,592,148 | 6% | ||
traveler-hwi | 0 | 1,172,841,428 | 2.7% | ||
yea-zoo | 0 | 692,635,644 | 80% | ||
traveledge | 0 | 295,794,720 | 100% | ||
suckmydick | 0 | 522,911,448 | 16% | ||
chromebook | 0 | 524,993,959 | 16% | ||
steemcityrewards | 0 | 58,198,340,293 | 9% | ||
ericandryan | 0 | 1,657,495,361 | 16% | ||
teach-me | 0 | 2,519,056,032 | 70% | ||
andelf | 0 | 0 | 100% | ||
vermaveenu | 0 | 0 | 100% | ||
focus.folks | 0 | 0 | 100% |
Finds großartig was du beem(py) leistest, danke für die Arbeit die du da reingesteck hast!
author | gexi |
---|---|
permlink | q7qwfg |
category | hive |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2020-03-25 10:42:54 |
last_update | 2020-03-25 10:42:54 |
depth | 1 |
children | 0 |
last_payout | 2020-04-01 10:42:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 90 |
author_reputation | 2,071,037,581,586 |
root_title | "Use beempy to access the internal HIVE/HBD market" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,574,080 |
net_rshares | 0 |
 but there is an interface by @mahdiyari https://wallet.mahdiyari.info/market its just been widely ignored...
author | maxsieg |
---|---|
permlink | re-holger80-q7pvja |
category | hive |
json_metadata | {"tags":["hive"],"app":"peakd/2020.03.12"} |
created | 2020-03-24 21:26:00 |
last_update | 2020-03-24 21:26:00 |
depth | 1 |
children | 4 |
last_payout | 2020-03-31 21:26:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 199 |
author_reputation | 4,035,631,210,399 |
root_title | "Use beempy to access the internal HIVE/HBD market" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,568,394 |
net_rshares | 0 |
Isn't that STEEM/SBD?
author | stupid |
---|---|
permlink | re-maxsieg-q7pxdz |
category | hive |
json_metadata | {"tags":["hive"],"app":"peakd/2020.03.12"} |
created | 2020-03-24 22:06:03 |
last_update | 2020-03-24 22:06:03 |
depth | 2 |
children | 3 |
last_payout | 2020-03-31 22:06:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 21 |
author_reputation | 20,051,924,899,809 |
root_title | "Use beempy to access the internal HIVE/HBD market" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,568,772 |
net_rshares | 0 |
Its a clone/fork of the original Steemit interface
author | donchate |
---|---|
permlink | q7tnfh |
category | hive |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2020-03-26 22:21:18 |
last_update | 2020-03-26 22:21:18 |
depth | 3 |
children | 0 |
last_payout | 2020-04-02 22:21:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 50 |
author_reputation | 956,784,034,700 |
root_title | "Use beempy to access the internal HIVE/HBD market" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,593,329 |
net_rshares | 0 |
nope dont be fooled by those words. this is hive :D
author | maxsieg |
---|---|
permlink | re-stupid-q7pxm2 |
category | hive |
json_metadata | {"tags":["hive"],"app":"peakd/2020.03.12"} |
created | 2020-03-24 22:10:51 |
last_update | 2020-03-24 22:10:51 |
depth | 3 |
children | 1 |
last_payout | 2020-03-31 22:10:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 51 |
author_reputation | 4,035,631,210,399 |
root_title | "Use beempy to access the internal HIVE/HBD market" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,568,811 |
net_rshares | 0 |
<div class='text-justify'> <div class='pull-left'> <img width='120' src='https://res.cloudinary.com/drrz8xekm/image/upload/v1553698283/weenlqbrqvvczjy6dayw.jpg'> </div> This post has been voted on by the <b>HiveSTEM curation team</b> and voting trail. It is elligible for support from @curie and @minnowbooster. If you appreciate the work we are doing, then consider supporting our witness [@stem.witness](https://hivesigner.com/sign/account_witness_vote?approve=1&witness=stem.witness). Additional witness support to the [curie witness](https://hivesigner.com/sign/account_witness_vote?approve=1&witness=curie) would be appreciated as well. For additional information please join us on the [SteemSTEM discord]( https://discord.gg/BPARaqn) and to get to know the rest of the community! Please consider using the <a href='https://stem.openhive.network'>stem.openhive.network</a> app and including @steemstem as a beneficiary of this post. This could yield a stronger support.
author | steemstem |
---|---|
permlink | re-holger80-use-beempy-to-access-the-internal-hive-hbd-market-20200327t011456900z |
category | hive |
json_metadata | {"app":"steemstem"} |
created | 2020-03-27 01:14:57 |
last_update | 2020-03-27 01:14:57 |
depth | 1 |
children | 0 |
last_payout | 2020-04-03 01:14:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 977 |
author_reputation | 262,017,435,115,313 |
root_title | "Use beempy to access the internal HIVE/HBD market" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,594,888 |
net_rshares | 0 |
I wonder how come there is so much of trade volume without even a friendly interface!
author | stupid |
---|---|
permlink | re-holger80-q7pxgi |
category | hive |
json_metadata | {"tags":["hive"],"app":"peakd/2020.03.12"} |
created | 2020-03-24 22:07:33 |
last_update | 2020-03-24 22:07:33 |
depth | 1 |
children | 1 |
last_payout | 2020-03-31 22:07:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 85 |
author_reputation | 20,051,924,899,809 |
root_title | "Use beempy to access the internal HIVE/HBD market" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,568,786 |
net_rshares | 0 |
Okay gotcha! All existing market orders on Steem internal market exist for Hive/HBD market too. I thought I missed the HBD airdrop for my SBD lying in the internal market. Thankfully, I found it here :)
author | stupid |
---|---|
permlink | re-stupid-q7pybp |
category | hive |
json_metadata | {"tags":["hive"],"app":"peakd/2020.03.12"} |
created | 2020-03-24 22:26:18 |
last_update | 2020-03-24 22:26:18 |
depth | 2 |
children | 0 |
last_payout | 2020-03-31 22:26:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 203 |
author_reputation | 20,051,924,899,809 |
root_title | "Use beempy to access the internal HIVE/HBD market" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,568,962 |
net_rshares | 0 |