# The future of Mulitsigs & cryptography on HIVE  Greetings HIVE community! In this post we'd like to go into detail about the underlying technology of HIVE, specifically multisigs, and what changes we need for the L1. As many of you already know, HIVE lacks L1 smart contracts. Not only is this a problem for the community in general, but also creates major pain points for L2s. Luckily, HIVE has always had native multisigs for it's accounting. A native function that can be hit or miss on other blockchains. However, while this is a useful tool for in general use, it has major limitations for L2s like VSC. In this blog I will go into depth about the problem space, and the suggested changes the VSC project is proposing to the HIVE core team. ### Counterparty risk on HIVE Many of you have already heard of this term one way or another. Almost universally, this carries a negative connotation and rightfully so. With many bridge hacks, insecure L2s, it's easy to lose trust in a system, especially when lots of money is at stake. But, what is counterparty risk? And how does it affect HIVE? For starters, counterparty risk is essentially the assumed risk when a user entrusts their funds into another entity out of their control. This can take the form of DEXs, bridges, and even smart contracts. Luckily for us, a good smart contract with no admin keys, securely audited, and on a safe L1 network has almost zero counterparty risk. On the otherhand, for L2s this is a lot more complicated to answer, while L2s might have perfect security within themselves, to interact with the L1 (i.e own funds), someone or something (a smart contract) MUST own the L1 funds, and thus create the potential for counterparty risk. Typically L2s employ a trusted entity to hold funds for network. This might be a centralized party or a small mulitsig with a few trusted members depending on the L2. Unfortunately, the reality is most of the top Ethereum L2s solely employ centralized custody or mulitsigs that are not under the control of the community. The controlling entity has complete authority and ability to steal users funds. How can anyone say these so called L2s are secure and *decentralized*? You can't. On HIVE, we have native multisig capabilities, which is great! Using this technology in combination with a consensus system, we can help reduce counterparty risk for VSC. Making VSC more decentralized and secure than top Ethereum L2s. VSC node operators are actually in control of L1 funds, and not a single centralized entity. With all this in mind, there are limitations. We have a maximum of 40 signers on any multisig, which boils down to approximately 30 signers with full control (for a 3/4 consensus). This is still better than an Eth L2 with only two or 3 signers for entire network of thousands of nodes and billions of dollars. However, it's still not enough to address modern concerns around L2 security. While this point is not directly relevant to security, the data cost of operating a multisig on HIVE is not practical. As more signers are added to the multisig, the larger the minimum transaction size becomes. Each transaction for a multisig of 30 signer is a minimum of 2kb, which might not sound like a lot, but it's 30x bigger than regular transactions and larger than the average size of 99% of transactions on HIVE. As a result, the large transaction size imposes significant costs to a L2 and adds significant chain bloat with heavy usage. ### Cryptography to the rescue! Given everything above, it's clear that the current approach to multisigs is not optimal for L2 networks. To solve this HIVE must implement BonehโLynnโShacham (BLS) signatures into the L1 network. BLS is very similar to the current signature algorithms implemented on HIVE, except it allows for very efficient signature and public key aggregation. Signature aggregation allows for combining all of the signatures from hundreds of even thousands of public keys into a single one while proving the exact same information. The result is a massive storage space savings for mulitsig operations and allows for a significant expansion of the maximum allowed signers. Mulitsigs on HIVE could easily have hundreds of even thousands of signers inside nearly the same data footprint as a single signature. For VSC, this makes a significant difference in the security of on chain custody. ### Technical details *this section goes more into the technical details while still keeping fairly high level. Feel free to comment any further questions below.* BLS properties: - Private Keys: 32 Bytes. - Public Keys: 48 Bytes. - Signatures: 96 Bytes. Above, are the sizes of BLS private keys, public keys, and signatures. If you are familiar with ECC cryptography, you will notice the public key and signatures are larger than regular secp256k1 or ECDSA algorithms. However, despite the larger data footprint of a single signature, the aggregation of signatures results in siginficant size decrease at scale. To do this process, the following concepts must be noted: - A Bitvector - a series of pointers that indicate which public keys signed a transaction. The bitvector is the only part of a transaction that increases in size as more signers are added. - Key identifier - identifies the entire signing group for a multisig. All signing parties and their associated weights. - Aggregated signature - signature created from combining all signatures from each party. Steps: 1) The multisig registers all the public keys and their associated weights. This produces a key identifier unique for that particular group. Note: the public keys are sorted in a deterministic order. 2) *From this point HIVE nodes have enough information coupled with the transaction can verify any signature from any combination of signers* 3) A transaction is then constructed and signed by several signers in the multisig. 4) The aggregate signature is created as a result 5) A bitvector is created from the list of public keys involved in the transaction against the entire signer group. This creates a compressed representation of each public involved and scales on the basis of 1 bit per public key. 6) HIVE nodes will then use the key identifier & bitvector to compute the combined public key for the signers involved in a transaction 7) The aggregated public key can then be used to verify the signature of the newly created transaction. - The result is a transaction with a constant aggregated signature size and a highly space efficient bitvector - Using this approach, it allows us to scale to hundreds of even thousands of signers participating in a multisig with significantly less overhead. - This technique becomes more efficient as more signers are added. For 3 signers, there is only a storage reduction of 1.4x, where as for 500 signers, the size reduction becomes 170x smaller and continues to scale to a theoretical maximum of 520x (1/8 byte per signer vs 65b per signer)  Legend: - Y Axis: total transaction size in bytes - X Axis: total number of signers - Red line: traditional multisig on HIVE - Blue line: mulitisig using BLS signatures w/aggregation on HIVE. The graph above shows you how the storage usage of a traditional multisig scales vs multisig using BLS signatures. You can clearly see how a traditional approach quickly skyrockets in size, where as BLS signatures only marginally increase the transaction size as bitvector increases in size. This does NOT take into account gross storage usage of key identifier, registered public keys, or computational costs and only looks at individual transaction size. ### Call to Action! We urge the HIVE core team to implement BLS signatures & aggregation technology into the HIVE L1. We strongly believe implementing this technology would be easier and safer than L1 smart contracts and opens major possibilities for VSC & Other L2s alike. By HIVE implementing this technology, it would join the ranks of Polkadot, Ethereum, and other chains using attempting to build similar technology. We could be one of the first to fully implement this technology and make it directly available to end users. We also acknowledge there is even more that can be done to further decrease transaction overhead regarding multisig, such as zero knowledge proofs and signed merkle trees. We aim to make this only a fraction of a compressive set of improvements to the L1 for supporting VSC and future projects on HIVE. This is only the beginning **I intend to meet with the core team to present this information directly and start the process of building into the next hard fork.** ### Resources https://wiki.polkadot.network/docs/learn-cryptography https://eth2book.info/capella/part2/building_blocks/signatures/ ### Socials Website: https://vsc.eco Twitter: [@vsc_eco](https://twitter.com/vsc_eco) Hive: https://peakd.com/@vsc.network Github: https://github.com/vsc-eco **VSC is funded by the HIVE DHF. By voting for our proposal below, we can continue building** [](https://peakd.com/proposals/279) [Vote on peakd](https://peakd.com/proposals/279) [Vote on Ecency](https://ecency.com/proposals/279) [Vote on Hivesigner](https://hivesigner.com/sign/update_proposal_votes?proposal_ids=%5B%22279%22%5D&approve=true)
author | vsc.network |
---|---|
permlink | the-future-of-multisigs-and-cryptography-on-hive |
category | vsc |
json_metadata | "{"app":"peakd/2023.11.3","format":"markdown","author":"vaultec","description":"The future of Multisigs & cryptography on HIVE: Our proposal to the HIVE core team.","tags":["vsc","hive-core","core-team"],"users":["vsc","vsc.network"],"image":["https://files.peakd.com/file/peakd-hive/vsc.network/23vsojq13eW6onfHarEErsexD49By627RfcJzs3WHHxwVkJuwcyZsBHMf36Y4t4LbhZvv.png","https://files.peakd.com/file/peakd-hive/vsc.network/23sxozwpRAAeZ6cWbYR6bmvmTNXFwga4wjjJP6cn7zuV59MGVamXdRLYgbpF8oQtJB38S.png","https://files.peakd.com/file/peakd-hive/vsc.network/23sxpXQpkhtZ5wzYA6jBnfztswswMJHYkJR3VyamGeNMGzN1Mc626GJQWh258ebarHEPz.gif"]}" |
created | 2023-12-14 01:20:00 |
last_update | 2023-12-14 02:27:18 |
depth | 0 |
children | 28 |
last_payout | 2023-12-21 01:20:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 85.617 HBD |
curator_payout_value | 85.511 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 9,696 |
author_reputation | 201,142,791,999,699 |
root_title | "The future of Multisigs & cryptography on HIVE" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 129,653,659 |
net_rshares | 370,931,241,243,282 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
boatymcboatface | 0 | 156,276,492,373 | 8% | ||
kencode | 0 | 887,534,873,152 | 100% | ||
kingscrown | 0 | 12,068,223,012 | 8% | ||
flemingfarm | 0 | 472,150,003,439 | 75% | ||
leprechaun | 0 | 1,989,061,144 | 26% | ||
theshell | 0 | 41,820,346,721 | 8% | ||
churdtzu | 0 | 23,319,817,456 | 33% | ||
paradise-paradox | 0 | 1,044,622,106 | 100% | ||
kennyskitchen | 0 | 32,153,436,075 | 100% | ||
gtg | 0 | 9,850,344,871,269 | 25% | ||
gerber | 0 | 49,040,604,586 | 20% | ||
daan | 0 | 56,395,046,561 | 8% | ||
ezzy | 0 | 3,296,062,780 | 20% | ||
bryanj4 | 0 | 600,738,388 | 25% | ||
ausbitbank | 0 | 2,692,062,983,448 | 100% | ||
arcange | 0 | 10,487,109,225,186 | 50% | ||
lichtblick | 0 | 181,742,471,150 | 100% | ||
demotruk | 0 | 1,237,112,940,875 | 100% | ||
deanliu | 0 | 3,708,230,344,617 | 100% | ||
exyle | 0 | 188,480,388,095 | 20% | ||
ace108 | 0 | 489,662,972,654 | 11% | ||
josepimpo | 0 | 24,475,626,934 | 100% | ||
jphamer1 | 0 | 8,526,658,472,187 | 100% | ||
borran | 0 | 1,059,866,186,761 | 100% | ||
treaphort | 0 | 728,342,792 | 15% | ||
elamental | 0 | 5,707,617,925 | 13% | ||
stevescoins | 0 | 1,285,825,001 | 13% | ||
catherinebleish | 0 | 10,468,821,516 | 50% | ||
dannyshine | 0 | 29,487,642,106 | 35% | ||
brightstar | 0 | 5,406,082,067 | 15% | ||
penguinpablo | 0 | 213,219,779,179 | 14% | ||
wakeupnd | 0 | 111,224,377,690 | 50% | ||
tftproject | 0 | 664,691,160 | 3.9% | ||
dbroze | 0 | 2,815,690,520 | 26% | ||
jimbobbill | 0 | 2,278,982,639 | 15% | ||
funnyman | 0 | 1,418,507,923 | 5.6% | ||
disregardfiat | 0 | 1,808,299,532,488 | 100% | ||
catotune | 0 | 18,730,819,293 | 100% | ||
jang | 0 | 129,816,846,482 | 100% | ||
ssekulji | 0 | 29,117,934,145 | 100% | ||
dylanhobalart | 0 | 543,314,068,455 | 100% | ||
ura-soul | 0 | 41,513,756,250 | 26% | ||
techslut | 0 | 84,140,245,291 | 12.5% | ||
makinstuff | 0 | 60,561,866,381 | 50% | ||
ancolie | 0 | 7,572,404,029 | 11.37% | ||
igormuba | 0 | 67,017,279,509 | 100% | ||
mow | 0 | 1,901,852,804 | 100% | ||
justinw | 0 | 39,194,945,436 | 8.25% | ||
bigtakosensei | 0 | 14,699,996,345 | 12.5% | ||
walterjay | 0 | 216,876,372,604 | 16.25% | ||
vcelier | 0 | 5,565,199,374,624 | 100% | ||
v4vapid | 0 | 15,577,052,622,597 | 100% | ||
chiren | 0 | 19,446,962,949 | 100% | ||
sudutpandang | 0 | 1,298,307,614 | 100% | ||
thereikiforest | 0 | 721,633,234 | 10% | ||
yuslindwi | 0 | 1,452,297,253 | 50% | ||
teammo | 0 | 248,157,626,382 | 100% | ||
bloghound | 0 | 9,397,234,434 | 20% | ||
oneshot | 0 | 42,317,358,403 | 100% | ||
trafalgar | 0 | 31,272,746,770,288 | 67% | ||
lordneroo | 0 | 24,336,529,585 | 100% | ||
freebornsociety | 0 | 2,637,443,466 | 5.1% | ||
detlev | 0 | 41,799,543,586 | 5% | ||
haileyscomet | 0 | 762,174,297 | 20% | ||
lizanomadsoul | 0 | 4,668,492,451 | 2% | ||
raindrop | 0 | 484,062,409,950 | 67% | ||
sepracore | 0 | 5,216,794,223 | 100% | ||
l337m45732 | 0 | 45,640,915,651 | 100% | ||
passion-fruit | 0 | 11,710,042,341 | 92% | ||
fortune-master | 0 | 11,510,702,469 | 92% | ||
lugaxker | 0 | 598,935,157 | 25.74% | ||
frankydoodle | 0 | 855,975,407 | 6.5% | ||
mes | 0 | 487,306,980,806 | 100% | ||
whatamidoing | 0 | 2,847,777,342 | 4% | ||
forykw | 0 | 49,462,657,808 | 10% | ||
rt395 | 0 | 2,049,226,245 | 1.5% | ||
uruiamme | 0 | 6,853,041,594 | 60% | ||
newsflash | 0 | 603,527,154,119 | 25% | ||
bitcoinflood | 0 | 584,660,737,496 | 32% | ||
alphacore | 0 | 2,039,151,379 | 2.15% | ||
ammonite | 0 | 363,446,832,661 | 100% | ||
colinhoward | 0 | 6,919,877,689 | 13% | ||
techken | 0 | 10,826,546,582 | 13% | ||
joeyarnoldvn | 0 | 474,083,763 | 1.47% | ||
bluemist | 0 | 24,384,645,498 | 10% | ||
diegoameerali | 0 | 5,597,146,439 | 30% | ||
unyimeetuk | 0 | 1,214,745,909 | 50% | ||
theguruasia | 0 | 7,081,582,598 | 100% | ||
hope-on-fire | 0 | 66,942,594,086 | 9% | ||
heart-to-heart | 0 | 12,744,040,736 | 20% | ||
shitsignals | 0 | 662,732,204 | 20% | ||
appreciator | 0 | 39,037,402,484,383 | 10% | ||
hairyfairy | 0 | 8,236,057,256 | 10% | ||
bambukah | 0 | 80,455,675,798 | 100% | ||
vikisecrets | 0 | 648,336,499,684 | 30% | ||
zonguin | 0 | 3,492,488,165 | 16.25% | ||
pocketrocket | 0 | 19,160,672,216 | 100% | ||
khalil319 | 0 | 4,783,835,473 | 25% | ||
francosteemvotes | 0 | 4,661,626,422 | 32.5% | ||
jasonbu | 0 | 41,008,111,647 | 28% | ||
chetanpadliya | 0 | 77,499,676,819 | 100% | ||
jeanlucsr | 0 | 1,154,614,171 | 2% | ||
vimukthi | 0 | 1,570,248,976 | 100% | ||
holisticmom | 0 | 1,390,895,427 | 3% | ||
authors.leage | 0 | 781,812,467 | 25% | ||
nuthman | 0 | 1,127,691,692,249 | 50% | ||
zyx066 | 0 | 79,500,309,858 | 30% | ||
tribesteemup | 0 | 147,439,100,753 | 100% | ||
herosujin | 0 | 1,157,867,223 | 50% | ||
htotoo | 0 | 2,891,226,739 | 100% | ||
felander | 0 | 105,363,424,453 | 20% | ||
santigs | 0 | 451,859,085,741 | 100% | ||
floatinglin | 0 | 6,337,004,532 | 100% | ||
tipu | 0 | 1,803,486,387,190 | 10% | ||
evildido | 0 | 1,904,401,459 | 16.25% | ||
aidefr | 0 | 5,462,571,701 | 26% | ||
cconn | 0 | 2,517,834,084 | 20% | ||
solarsupermama | 0 | 2,188,348,941 | 11% | ||
yogacoach | 0 | 4,499,246,447 | 20% | ||
drax | 0 | 388,815,189,406 | 100% | ||
sorin.cristescu | 0 | 83,775,816,442 | 16.25% | ||
tomwafula | 0 | 662,918,747 | 20% | ||
taskmaster4450 | 0 | 2,421,636,273,537 | 100% | ||
roleerob | 0 | 230,107,379,587 | 50% | ||
deathwing | 0 | 603,821,504,010 | 20% | ||
silversaver888 | 0 | 104,837,994,542 | 27.1% | ||
insanityisfree | 0 | 493,150,512 | 26% | ||
diosarich | 0 | 679,304,189 | 5% | ||
rakkasan84 | 0 | 3,292,352,826 | 100% | ||
yabapmatt | 0 | 17,795,392,018,802 | 100% | ||
risemultiversity | 0 | 1,898,582,780 | 13% | ||
canadianrenegade | 0 | 10,464,338,777 | 5% | ||
technicalside | 0 | 10,553,762,690 | 25% | ||
tobetada | 0 | 109,635,037,491 | 58% | ||
kieranpearson | 0 | 1,678,098,790 | 33% | ||
minnowspower | 0 | 773,885,930 | 100% | ||
afterglow | 0 | 4,832,734,750 | 50% | ||
petrolinivideo | 0 | 1,239,880,576 | 12.5% | ||
informationwar | 0 | 105,479,679,208 | 26% | ||
mightpossibly | 0 | 172,659,679,457 | 50% | ||
sunsea | 0 | 4,682,601,624 | 5% | ||
emrebeyler | 0 | 308,892,746,717 | 18% | ||
bobinson | 0 | 908,409,385,252 | 100% | ||
libertyepodcast | 0 | 553,298,502 | 50% | ||
dbddv01 | 0 | 2,391,249,004 | 16.25% | ||
trucklife-family | 0 | 107,986,068,350 | 30% | ||
popurri | 0 | 577,367,948 | 25% | ||
belleamie | 0 | 5,472,412,813 | 25% | ||
mytechtrail | 0 | 28,730,307,130 | 25% | ||
traf | 0 | 2,627,615,833,135 | 67% | ||
fjcalduch | 0 | 427,595,499,704 | 100% | ||
lpv | 0 | 2,105,369,406 | 6.5% | ||
breelikeatree | 0 | 221,909,534,887 | 100% | ||
drunksamurai | 0 | 899,816,156 | 15% | ||
statorcrime | 0 | 1,093,335,208 | 16.25% | ||
spiritabsolute | 0 | 35,605,166,462 | 100% | ||
dmwh | 0 | 35,803,898,503 | 13% | ||
wiseagent | 0 | 10,052,265,655 | 15% | ||
cryptonized | 0 | 236,792,408 | 14% | ||
fourfourfun | 0 | 4,030,109,778 | 12.5% | ||
eaglespirit | 0 | 9,704,374,813 | 5% | ||
jim888 | 0 | 4,629,683,784,266 | 100% | ||
phortun | 0 | 674,538,374,054 | 100% | ||
daltono | 0 | 148,602,759,203 | 10% | ||
sagescrub | 0 | 1,419,278,141 | 25% | ||
gabrielatravels | 0 | 88,639,608,682 | 100% | ||
jongolson | 0 | 400,498,099,731 | 35% | ||
bartheek | 0 | 41,068,927,770 | 10% | ||
roundbeargames | 0 | 1,727,609,360 | 100% | ||
moxieme | 0 | 1,386,089,383 | 20% | ||
roadstories | 0 | 8,104,964,924 | 20% | ||
epic-fail | 0 | 226,312,743,484 | 100% | ||
criptomaster | 0 | 4,468,373,285 | 100% | ||
manncpt | 0 | 3,280,750,886 | 2% | ||
empress-eremmy | 0 | 10,603,775,330 | 13% | ||
dynamicrypto | 0 | 2,458,140,736 | 1% | ||
jnmarteau | 0 | 792,470,166 | 2% | ||
a-quarius | 0 | 154,651,436,157 | 100% | ||
thetroublenotes | 0 | 226,337,754,944 | 100% | ||
gribouille | 0 | 1,228,171,085 | 26% | ||
newageinv | 0 | 51,107,306,929 | 17.5% | ||
tobias-g | 0 | 17,477,719,780 | 5% | ||
chronocrypto | 0 | 22,352,424,591 | 50% | ||
unconditionalove | 0 | 2,667,708,701 | 10% | ||
kittima | 0 | 5,193,418,704 | 100% | ||
oredebby | 0 | 1,138,791,230 | 25% | ||
ericburgoyne | 0 | 11,300,895,318 | 25% | ||
anderssinho | 0 | 11,051,357,246 | 100% | ||
galam | 0 | 706,356,985 | 26% | ||
tomhall | 0 | 25,444,142,125 | 100% | ||
fireguardian | 0 | 1,209,333,356 | 39.85% | ||
eddiespino | 0 | 4,419,330,504,370 | 100% | ||
hempress | 0 | 1,008,818,804 | 11% | ||
saltycat | 0 | 5,958,302,966 | 100% | ||
rubelynmacion | 0 | 34,670,840,213 | 100% | ||
darkpylon | 0 | 790,563,185 | 20% | ||
nataboo | 0 | 1,245,095,491 | 50% | ||
onlavu | 0 | 124,620,933,153 | 100% | ||
illuminaticongo | 0 | 2,128,115,976 | 100% | ||
vegan.niinja | 0 | 4,430,896,660 | 22% | ||
opeyemioguns | 0 | 773,855,472 | 50% | ||
bertrayo | 0 | 5,226,324,470 | 5% | ||
eugenekul | 0 | 927,635,867 | 22% | ||
lisfabian | 0 | 12,343,225,841 | 50% | ||
homestead-guru | 0 | 36,851,141,042 | 50% | ||
russellstockley | 0 | 35,831,411,053 | 30% | ||
chrislybear | 0 | 90,603,753,246 | 100% | ||
cryptictruth | 0 | 2,021,690,051 | 0.5% | ||
amigoponc | 0 | 1,785,273,737 | 26.8% | ||
honeymoon-1611 | 0 | 647,947,278 | 20% | ||
asimo | 0 | 8,546,905,908 | 100% | ||
andablackwidow | 0 | 54,744,480,794 | 100% | ||
bestboom | 0 | 2,906,945,679 | 20% | ||
onepercentbetter | 0 | 131,637,212,293 | 89% | ||
celestialcow | 0 | 5,203,421,735 | 22% | ||
ravenmus1c | 0 | 10,834,389,703 | 0.5% | ||
sanderjansenart | 0 | 9,427,090,945 | 5% | ||
louis88 | 0 | 77,227,854,927 | 20% | ||
koenau | 0 | 14,672,822,061 | 44.5% | ||
dera123 | 0 | 41,814,008,031 | 100% | ||
m2nnari | 0 | 2,201,527,888 | 100% | ||
braaiboy | 0 | 18,828,980,415 | 5% | ||
jungch98 | 0 | 269,428,941 | 100% | ||
gadrian | 0 | 381,912,260,615 | 50% | ||
inciter | 0 | 7,010,417,790 | 10% | ||
themightyvolcano | 0 | 7,369,236,505 | 20% | ||
iseeyouvee | 0 | 7,650,587,878 | 20% | ||
springlining | 0 | 35,227,519,799 | 100% | ||
tsnaks | 0 | 730,907,028 | 100% | ||
kgakakillerg | 0 | 18,472,892,538 | 10% | ||
steemer-x | 0 | 505,834,913 | 50% | ||
el-dee-are-es | 0 | 5,938,270,004 | 10% | ||
thomaskatan | 0 | 1,462,803,479 | 70% | ||
fw206 | 0 | 1,219,351,061,088 | 18.8% | ||
techcoderx | 0 | 116,587,992,467 | 100% | ||
valentin86 | 0 | 67,997,543,947 | 100% | ||
pladozero | 0 | 29,308,255,282 | 10% | ||
nateaguila | 0 | 131,776,031,002 | 8% | ||
crypticat | 0 | 2,852,475,195 | 0.8% | ||
annemariemay | 0 | 489,858,564 | 50% | ||
alfrednoyed | 0 | 15,979,617,874 | 100% | ||
cambridgeport90 | 0 | 11,564,094,988 | 50% | ||
commonlaw | 0 | 5,155,473,709 | 35% | ||
bluewall | 0 | 30,256,880,138 | 100% | ||
kstop1 | 0 | 14,803,139,226 | 100% | ||
merlion | 0 | 6,810,891,381 | 89% | ||
gregorypatrick | 0 | 563,309,634 | 33% | ||
the.rocket.panda | 0 | 11,101,227,821 | 100% | ||
topbooster | 0 | 594,063,465 | 39.85% | ||
numasi | 0 | 213,326,277 | 100% | ||
simplegame | 0 | 33,411,775,206 | 100% | ||
elmundodexao | 0 | 1,135,034,087 | 10% | ||
marblely | 0 | 11,117,943,929 | 10% | ||
haccolong | 0 | 530,119,375 | 6.5% | ||
apshamilton | 0 | 890,134,422,321 | 50% | ||
gaottantacinque | 0 | 434,570,573 | 100% | ||
mannacurrency | 0 | 20,276,238,105 | 10% | ||
longer | 0 | 822,986,489 | 2.5% | ||
dgi | 0 | 1,059,491,011 | 25% | ||
revueh | 0 | 1,735,174,424 | 32.5% | ||
bflanagin | 0 | 176,916,509,467 | 100% | ||
zaibkang | 0 | 3,459,466,358 | 100% | ||
phillyc | 0 | 1,646,311,210 | 50% | ||
rufruf | 0 | 757,253,080 | 100% | ||
sadbear | 0 | 555,507,158 | 5% | ||
hamismsf | 0 | 304,986,317,978 | 50% | ||
mariaogliastre | 0 | 3,610,066,566 | 100% | ||
hoaithu | 0 | 1,584,384,451 | 5.52% | ||
yaelg | 0 | 31,119,030,431 | 45% | ||
aconsciousness | 0 | 2,351,333,692 | 95% | ||
deepdives | 0 | 131,871,656,817 | 26% | ||
gasaeightyfive | 0 | 793,277,172 | 100% | ||
dlike | 0 | 60,228,215,815 | 20% | ||
anhvu | 0 | 1,007,097,501 | 5.2% | ||
gubbatv | 0 | 293,433,621,539 | 100% | ||
marcocasario | 0 | 53,333,630,893 | 11.24% | ||
bobby.madagascar | 0 | 4,963,523,846 | 10% | ||
cribbio | 0 | 1,761,827,819 | 100% | ||
mk992039 | 0 | 1,196,252,819 | 25% | ||
guurry123 | 0 | 7,636,286,437 | 15% | ||
bonnie30 | 0 | 587,269,669 | 50% | ||
harpreetjanda | 0 | 20,848,693,224 | 50% | ||
thevil | 0 | 1,086,578,993,496 | 100% | ||
riskneutral | 0 | 2,996,802,632 | 26% | ||
thrasher666 | 0 | 2,410,127,817 | 60% | ||
brianoflondon | 0 | 5,736,225,870,005 | 100% | ||
vasigo | 0 | 19,403,343,495 | 100% | ||
nmcdougal94 | 0 | 1,490,971,432 | 10% | ||
theycallmedan | 0 | 71,324,305,869,353 | 100% | ||
cakemonster | 0 | 5,789,208,056 | 10% | ||
jpbliberty | 0 | 498,483,988,403 | 100% | ||
shainemata | 0 | 120,892,723,811 | 50% | ||
kork75 | 0 | 3,009,924,251 | 50% | ||
jacuzzi | 0 | 3,033,431,923 | 1.4% | ||
primeradue | 0 | 1,666,493,423 | 100% | ||
determine | 0 | 1,224,468,092 | 20% | ||
permaculturedude | 0 | 1,720,581,030 | 20% | ||
elikast | 0 | 56,137,297,319 | 100% | ||
dlstudios | 0 | 4,814,767,450 | 100% | ||
josehany | 0 | 154,124,422,836 | 100% | ||
baasdebeer | 0 | 801,739,024 | 5% | ||
perfilbrasil | 0 | 5,710,057,450 | 10% | ||
steemitmonsters | 0 | 728,241,222 | 100% | ||
mia-cc | 0 | 1,241,754,381 | 10% | ||
hungrybear | 0 | 622,440,322 | 14% | ||
haikusailor | 0 | 693,959,326 | 20% | ||
mr-wallstreet | 0 | 512,558,163 | 25% | ||
afternoondrinks | 0 | 826,078,918 | 5% | ||
vikvitnik | 0 | 842,178,569 | 100% | ||
kryptogames | 0 | 22,291,912,874 | 10% | ||
ilanisnapshots | 0 | 516,292,784 | 5% | ||
alenox | 0 | 743,032,222 | 5% | ||
rocketpower | 0 | 1,363,917,136 | 50% | ||
photographercr | 0 | 32,689,266,104 | 13.4% | ||
bigmoneyman | 0 | 899,891,070 | 50% | ||
threespeak | 0 | 41,062,146,424,543 | 100% | ||
deeanndmathews | 0 | 38,383,286,425 | 100% | ||
beerlover | 0 | 6,865,968,955 | 5% | ||
clownworld | 0 | 1,188,713,285 | 13% | ||
fighter4-freedom | 0 | 344,762,301,327 | 100% | ||
cryptogambit | 0 | 1,438,546,174 | 7.5% | ||
imbartley | 0 | 791,740,231 | 25% | ||
gurseerat | 0 | 14,608,196,627 | 40% | ||
freemonster | 0 | 487,780,557 | 20% | ||
kgswallet | 0 | 1,075,259,932 | 20% | ||
triplea.bot | 0 | 4,412,855,991 | 20% | ||
steem.leo | 0 | 24,599,066,265 | 20% | ||
bizventures | 0 | 1,284,939,702 | 25% | ||
farm1 | 0 | 890,274,421,577 | 100% | ||
votebetting | 0 | 22,750,180,039 | 100% | ||
ali-h | 0 | 1,597,825,693 | 100% | ||
trendovoter | 0 | 4,708,208,567 | 100% | ||
maddogmike | 0 | 46,250,140,331 | 40% | ||
soyunasantacruz | 0 | 54,517,142,702 | 50% | ||
beta500 | 0 | 13,929,619,332 | 20% | ||
dechuck | 0 | 16,677,924,982 | 100% | ||
curtawakening | 0 | 4,087,873,922 | 50% | ||
successchar | 0 | 3,891,211,102 | 32.5% | ||
bradleyarrow | 0 | 42,013,623,480 | 50% | ||
bilpcoinbot1 | 0 | 24,182,752 | 100% | ||
urun | 0 | 32,718,195,969 | 100% | ||
electronico | 0 | 14,144,349,366 | 50% | ||
fixie | 0 | 40,940,607,543 | 100% | ||
trendobounty | 0 | 27,951,952 | 100% | ||
oratione | 0 | 856,249,066 | 100% | ||
dpoll.witness | 0 | 1,790,472,790 | 18% | ||
gigel2 | 0 | 1,075,749,627,724 | 100% | ||
bcm | 0 | 862,357,919 | 7.5% | ||
dappstats | 0 | 4,586,343,211 | 15% | ||
blocktvnews | 0 | 888,292,504 | 50% | ||
invest2learn | 0 | 495,853,541 | 20% | ||
rcaine | 0 | 23,363,054,917 | 15% | ||
bpcvoter1 | 0 | 1,018,275,790 | 100% | ||
ribary | 0 | 7,457,995,687 | 10% | ||
inigo-montoya-jr | 0 | 618,845,953 | 22.1% | ||
gloriaolar | 0 | 19,395,493,280 | 17.4% | ||
garlet | 0 | 21,128,600,367 | 50% | ||
kgsupport | 0 | 1,648,331,052 | 33.5% | ||
atma.love | 0 | 328,071,200,170 | 25% | ||
marblesz | 0 | 684,559,638 | 10% | ||
bilpcoinbpc | 0 | 816,147,188 | 5% | ||
chmoen | 0 | 12,998,034,247 | 80% | ||
hirohurl | 0 | 9,505,994,430 | 12.5% | ||
mice-k | 0 | 1,854,738,167 | 20% | ||
julesquirin | 0 | 640,761,970 | 2% | ||
keys-defender | 0 | 3,502,760,398 | 100% | ||
adcreatordesign | 0 | 1,554,787,927 | 25% | ||
oswvin | 0 | 0 | 100% | ||
cornavirus | 0 | 9,557,809,270 | 90% | ||
dpend.active | 0 | 1,492,291,777 | 4% | ||
hivebuzz | 0 | 9,633,807,665 | 2% | ||
hivequebec | 0 | 2,276,879,076 | 32.5% | ||
laruche | 0 | 69,552,061,397 | 32.5% | ||
abundance.tribe | 0 | 5,682,034,638 | 100% | ||
softworld | 0 | 449,997,091,913 | 100% | ||
imfarhad | 0 | 20,123,704,826 | 20% | ||
dcityrewards | 0 | 859,631,398,530 | 20% | ||
holoferncro | 0 | 2,271,696,980 | 5% | ||
andrewmusic | 0 | 826,839,686 | 10% | ||
sketching | 0 | 1,334,978,351 | 10% | ||
threespeak-es | 0 | 46,003,049,488 | 70% | ||
invest4free | 0 | 2,146,852,385 | 15% | ||
hiveupme | 0 | 2,197,604,301,773 | 100% | ||
hivecurator | 0 | 2,214,663,591 | 100% | ||
hive.curation | 0 | 5,991,295,767 | 89% | ||
discoveringarni | 0 | 51,430,565,649 | 15% | ||
devpress | 0 | 41,806,663,314 | 100% | ||
noelyss | 0 | 3,371,647,018 | 5% | ||
danishcrypto | 0 | 6,848,650,562 | 40% | ||
forkyishere | 0 | 1,706,586,902 | 10% | ||
balvinder294 | 0 | 4,795,308,960 | 20% | ||
profgabs05 | 0 | 1,342,803,630 | 50% | ||
kaseldz | 0 | 1,220,430,933 | 25% | ||
daniky | 0 | 453,532,434 | 12.5% | ||
jagged71 | 0 | 987,735,403 | 13% | ||
lucianav | 0 | 2,489,378,397 | 5% | ||
improbableliason | 0 | 979,996,737 | 25% | ||
patronpass | 0 | 1,357,804,995 | 20% | ||
flewsplash | 0 | 3,677,290,997 | 40% | ||
hivebuilder | 0 | 4,266,265,654 | 100% | ||
gabilan55 | 0 | 618,195,957 | 5% | ||
olaunlimited | 0 | 1,344,056,690 | 30.15% | ||
coretoken | 0 | 455,757,737 | 100% | ||
ksam | 0 | 733,285,736 | 2.5% | ||
jilt | 0 | 20,477,462,098 | 49% | ||
vaulttoken | 0 | 2,052,555,902 | 100% | ||
swap.vault | 0 | 0 | 100% | ||
aslehansen | 0 | 16,762,437,847 | 50% | ||
sylmarill | 0 | 109,410,815 | 100% | ||
engioi | 0 | 9,265,178,757 | 100% | ||
mightyrocklee | 0 | 25,391,566,351 | 25% | ||
noalys | 0 | 1,998,380,931 | 5% | ||
museodelcaos | 0 | 3,923,740,371 | 100% | ||
elbuhoaular | 0 | 556,418,308 | 100% | ||
alokkumar121.ctp | 0 | 2,350,779,763 | 100% | ||
rima11 | 0 | 378,973,576,950 | 10% | ||
hive-144994 | 0 | 476,741,400 | 100% | ||
rohansuares | 0 | 7,796,442,797 | 100% | ||
bluepluto | 0 | 530,239,656 | 50% | ||
wine-token | 0 | 2,209,909,222 | 100% | ||
kattycrochet | 0 | 8,344,225,987 | 5% | ||
alex-rourke | 0 | 1,682,190,097,555 | 100% | ||
dalz.shorts | 0 | 833,014,518 | 39.85% | ||
heruvim1978 | 0 | 14,263,323,625 | 25% | ||
emeraldtiger | 0 | 2,368,677,606 | 15% | ||
tan.reg | 0 | 0 | 100% | ||
thesimguru | 0 | 0 | 100% | ||
tan.stake | 0 | 809,089,293 | 100% | ||
hivechat | 0 | 1,045,519,685 | 10% | ||
wine.bot | 0 | 7,561,347,861 | 100% | ||
hive-112281 | 0 | 4,507,839,271 | 25% | ||
dcrops | 0 | 127,366,073,186 | 10% | ||
vihan | 0 | 0 | 100% | ||
cielitorojo | 0 | 2,998,075,264 | 7% | ||
pvmihalache | 0 | 58,558,361,791 | 50% | ||
hykss.leo | 0 | 40,004,448,570 | 4% | ||
trostparadox | 0 | 4,115,707,972,289 | 100% | ||
yozen | 0 | 715,401,054 | 5% | ||
playbyhive | 0 | 9,404,823,226 | 100% | ||
simbank | 0 | 0 | 100% | ||
cbridges573 | 0 | 1,925,048,153 | 10.5% | ||
ausbit.dev | 0 | 4,152,718,479 | 20% | ||
bobthebuilder2 | 0 | 9,445,848,640 | 12.5% | ||
elgatoshawua | 0 | 1,247,310,182 | 5% | ||
abisag | 0 | 4,934,926,282 | 100% | ||
xyba | 0 | 47,591,547,883 | 100% | ||
utopis | 0 | 70,408,080,133 | 80% | ||
cowboyphylosophy | 0 | 28,332,069,665 | 75% | ||
wynella | 0 | 2,020,053,746 | 5% | ||
wine-ico | 0 | 339,244,415 | 100% | ||
bigtooth | 0 | 880,015,854 | 100% | ||
nyxlabs | 0 | 613,892,806 | 2.5% | ||
wend1go | 0 | 24,946,173,617 | 100% | ||
creodas | 0 | 1,705,344,607 | 37.5% | ||
core.voter | 0 | 215,145,331 | 100% | ||
happyfrog420-new | 0 | 41,704,553,424 | 75% | ||
regenerette | 0 | 1,768,821,051 | 100% | ||
hexagono6 | 0 | 793,365,580 | 5% | ||
trouvaille | 0 | 1,338,284,714 | 5% | ||
astrocreator | 0 | 228,348,527,046 | 100% | ||
raythulhu | 0 | 71,581,920,462 | 100% | ||
asynckronism | 0 | 18,776,216,722 | 100% | ||
valor2s | 0 | 860,070,292 | 100% | ||
thomashnblum | 0 | 14,959,107,676 | 79.7% | ||
hive-defender | 0 | 586,329,181 | 100% | ||
power-kappe | 0 | 720,862,348 | 10% | ||
reidenling90 | 0 | 3,049,280,637 | 100% | ||
key-defender.shh | 0 | 109,023,387 | 100% | ||
milagrosmhbl | 0 | 23,570,052,460 | 100% | ||
hive.friends | 0 | 872,938,328 | 50% | ||
egistar | 0 | 5,738,404,236 | 25% | ||
farpetrad | 0 | 68,287,720,599 | 100% | ||
shanhenry | 0 | 3,672,869,440 | 100% | ||
aichel | 0 | 787,316,421 | 10% | ||
mariaser | 0 | 2,911,050,643 | 7% | ||
spk.beneficiary | 0 | 237,263,466,088 | 100% | ||
fotomaglys | 0 | 2,661,774,980 | 5% | ||
seryi13 | 0 | 1,179,587,244 | 7% | ||
darmst5339 | 0 | 55,961,126,515 | 66% | ||
bulldog1205 | 0 | 7,028,331,303 | 17.5% | ||
rpren | 0 | 749,386,980 | 50% | ||
darmst | 0 | 863,068,651 | 100% | ||
hivehydra | 0 | 869,985,096 | 90% | ||
podping | 0 | 582,169,980,450 | 100% | ||
vault.burn | 0 | 5,562,893,388 | 100% | ||
erinktran | 0 | 7,255,066,871 | 100% | ||
jaybone | 0 | 2,999,859,493 | 100% | ||
femisapiens | 0 | 0 | 100% | ||
aprasad2325 | 0 | 1,892,668,175 | 5% | ||
yoieuqudniram | 0 | 477,491,725 | 5% | ||
giono | 0 | 1,276,865,488 | 25% | ||
theguru.photos | 0 | 190,078,463 | 100% | ||
janetfund | 0 | 27,296,293,100 | 100% | ||
delver | 0 | 11,921,180,579 | 26% | ||
nopasaran72 | 0 | 3,025,171,964 | 32.5% | ||
darmstrong | 0 | 5,370,856,045 | 100% | ||
cryptoccshow | 0 | 2,300,464,782 | 17.5% | ||
aweee | 0 | 2,877,757,380 | 38.5% | ||
soupcrxter | 0 | 0 | 100% | ||
mervinthepogi | 0 | 5,058,970,100 | 30% | ||
elderdark | 0 | 13,326,542,477 | 12.5% | ||
rzc24-nftbbg | 0 | 6,889,546,412 | 25% | ||
alovely088 | 0 | 3,401,866,127 | 10% | ||
rushi1983 | 0 | 552,364,541 | 100% | ||
dstampede | 0 | 297,052,090 | 50% | ||
ijat | 0 | 9,753,746,826 | 68% | ||
michupa | 0 | 70,564,705,678 | 25% | ||
skywalkerr76 | 0 | 208,879,086 | 100% | ||
anonymous02 | 0 | 4,178,085,685 | 31.5% | ||
mengao | 0 | 318,754,286,094 | 100% | ||
kavii | 0 | 156,564,807 | 100% | ||
tillmea | 0 | 530,635,329 | 100% | ||
tydynrain | 0 | 10,851,735,472 | 10% | ||
psyberx | 0 | 315,793,741,666 | 25% | ||
catotenor | 0 | 1,125,586,243 | 100% | ||
mcookies | 0 | 770,634,662 | 5% | ||
ssebasv | 0 | 716,247,613 | 100% | ||
heutorybr | 0 | 509,743,785 | 12.5% | ||
violator101 | 0 | 32,660,590,927 | 100% | ||
dkidfit | 0 | 15,725,601,743 | 100% | ||
addnode | 0 | 1,059,614,519 | 100% | ||
privatblog | 0 | 668,497,044,573 | 100% | ||
jimbaro.park | 0 | 2,088,028,962 | 50% | ||
crypto-shots | 0 | 0 | 50% | ||
trostparadox.vyb | 0 | 849,918,111 | 39.85% | ||
vyb.pob | 0 | 1,716,916,665 | 39.85% | ||
owl001 | 0 | 33,670,533,938 | 100% | ||
albiro2050 | 0 | 9,830,357,943 | 100% | ||
hoffmeister84 | 0 | 2,676,191,082 | 20% | ||
vyb.curation | 0 | 972,575,376 | 39.85% | ||
neuro101 | 0 | 1,652,774,361 | 100% | ||
neuro202 | 0 | 1,564,909,765 | 100% | ||
eijibr | 0 | 597,681,710 | 12.5% | ||
zuun.net | 0 | 6,048,088,162 | 32% | ||
liveofdalla | 0 | 31,713,529,397 | 100% | ||
wlffreitas | 0 | 2,410,039,942 | 25% | ||
annabeth | 0 | 1,487,956,170 | 10% | ||
investinfreedom | 0 | 16,346,746,920 | 26% | ||
claraxmas | 0 | 582,192,055 | 50% | ||
giovannixmas | 0 | 582,192,045 | 50% | ||
henrietta27 | 0 | 6,645,851,065 | 50% | ||
carcio84 | 0 | 11,134,771,483 | 100% | ||
amakauz | 0 | 3,511,597,278 | 25% | ||
cryptoshots.nft | 0 | 1,011,679,088 | 100% | ||
fredhill | 0 | 5,548,539,209 | 50% | ||
foggwulf101 | 0 | 1,597,020,505 | 100% | ||
foggwulf202 | 0 | 1,565,006,106 | 100% | ||
foggwulf505 | 0 | 1,566,296,143 | 100% | ||
elchaleefatoe15 | 0 | 2,669,717,043 | 10% | ||
jfuji | 0 | 73,425,566,660 | 100% | ||
cryptokim03 | 0 | 1,648,334,547 | 25% | ||
toohip | 0 | 160,684,880,247 | 98.6% | ||
shawnnft | 0 | 5,106,430,431 | 9% | ||
ingekiller | 0 | 354,210,927 | 100% | ||
resonator | 0 | 8,738,765,627,105 | 26% | ||
stevermac1966 | 0 | 528,984,705 | 25% | ||
kaiggue | 0 | 2,042,595,874 | 25% | ||
sabajfa | 0 | 4,729,241,024 | 25% | ||
franzpaulie | 0 | 41,295,858,929 | 100% | ||
hivedeb | 0 | 2,088,151,983 | 25% | ||
fasacity | 0 | 1,964,015,366 | 25% | ||
drstealth | 0 | 1,807,845,119 | 100% | ||
psyber-x | 0 | 1,059,435,287 | 25% | ||
cryptoshots.play | 0 | 0 | 10% | ||
lordshah | 0 | 20,911,010,972 | 55.5% | ||
psyberxmarket | 0 | 550,819,395 | 25% | ||
tzae | 0 | 1,747,459,920 | 100% | ||
lyamalfonzo23 | 0 | 1,398,157,640 | 67% | ||
incublus | 0 | 98,180,847,969 | 35% | ||
ezgicop | 0 | 3,583,405,308 | 35% | ||
cttpodcast | 0 | 109,989,258,607 | 100% | ||
zehn34 | 0 | 3,328,046,198 | 50% | ||
oasiskp2 | 0 | 1,177,215,077 | 25% | ||
biyaawnur | 0 | 1,235,056,694 | 86.6% | ||
archives-upfunds | 0 | 10,502,097,669 | 100% | ||
pinkchic | 0 | 1,722,726,123 | 2% | ||
queercoin | 0 | 88,239,410,077 | 100% | ||
dewamke44 | 0 | 2,144,467,731 | 100% | ||
cryptoshotsdoom | 0 | 0 | 10% | ||
micheal87 | 0 | 407,666,607 | 10% | ||
artefactoestudio | 0 | 1,727,149,875 | 67% | ||
jayrent | 0 | 2,638,588,074 | 100% | ||
pocket-rents | 0 | 574,254,525 | 17.5% | ||
brain71 | 0 | 833,464,180 | 13% | ||
rubilu | 0 | 4,135,864,110 | 50% | ||
workaholic666 | 0 | 929,570,499 | 100% | ||
trumpybear | 0 | 31,568,649,743 | 100% | ||
crypt0holics | 0 | 13,926,347,858 | 100% | ||
violator202 | 0 | 1,586,756,241 | 100% | ||
treefrognada | 0 | 1,824,277,817 | 10% | ||
psyskiff | 0 | 1,057,160,979 | 100% | ||
bitphoto | 0 | 370,173,970 | 100% | ||
threespeakvoter | 0 | 17,994,522,925,531 | 100% | ||
rationale0440 | 0 | 1,058,889,386 | 25% | ||
eosdios | 0 | 973,761,517 | 100% | ||
modestscavo | 0 | 1,164,170,938 | 100% | ||
beauty197 | 0 | 884,995,513 | 5% | ||
sammyhive | 0 | 2,245,095,745 | 15% | ||
herculeand | 0 | 13,626,487,994 | 50% | ||
emjeak | 0 | 950,540,759 | 25% | ||
mayt | 0 | 8,344,781,317 | 100% | ||
edgar-alive | 0 | 1,543,487,183 | 25% | ||
kerokus | 0 | 12,603,026,652 | 100% | ||
hbcpt | 0 | 29,570,405,639 | 100% | ||
ecencypoints | 0 | 17,508,385,737 | 100% | ||
catrynart | 0 | 648,989,337 | 5% | ||
countrysid | 0 | 1,360,367,561 | 100% | ||
incublus.hivegc | 0 | 1,407,219,177 | 35% | ||
thepromisedland | 0 | 1,199,702,846 | 100% | ||
orkangel | 0 | 2,511,415,550 | 100% | ||
bodrex27 | 0 | 2,051,673,657 | 100% | ||
egbre | 0 | 669,718,689 | 25% | ||
karina.gpt | 0 | 0 | 100% | ||
susieisclever | 0 | 692,909,713 | 12.5% | ||
psyberxnode | 0 | 5,530,760,633 | 22.5% | ||
masterrpgbot | 0 | 3,740,890,677 | 25% | ||
les90 | 0 | 869,424,295 | 5% | ||
vsc.network | 0 | 41,194,564,212 | 100% | ||
aslamrer | 0 | 6,665,000,870 | 30.35% | ||
wallay | 0 | 11,976,356,184 | 78.91% | ||
epiko | 0 | 4,684,416,300 | 100% | ||
ismartboy | 0 | 855,470,278 | 25% | ||
bihutnetwork | 0 | 2,342,592,077 | 30% | ||
sirdelly | 0 | 33,450,975,277 | 50% | ||
untilwelearn | 0 | 13,370,391,912 | 50% | ||
willowink | 0 | 7,708,359,381 | 100% | ||
hive-lu | 0 | 39,684,190,203 | 23.11% | ||
artwithlovebymi | 0 | 5,956,354,224 | 100% | ||
runmomrun | 0 | 1,438,460,865 | 100% | ||
hivesl | 0 | 1,574,247,613 | 100% | ||
empo.voter | 0 | 20,404,988,326,351 | 100% | ||
piyushjha | 0 | 0 | 100% | ||
axobtc | 0 | 2,201,056,597 | 100% | ||
rociopmz | 0 | 1,739,359,051 | 100% | ||
newblicious | 0 | 223,951,000 | 100% | ||
maryene | 0 | 211,688,727 | 97.9% | ||
samstreamer | 0 | 1,394,364,676 | 100% | ||
evenlyz | 0 | 328,721,293 | 100% | ||
jayant1990 | 0 | 0 | 100% | ||
aartithorat | 0 | 0 | 100% | ||
suhasthorat1992 | 0 | 0 | 100% | ||
jeffbuilds | 0 | 6,511,897,581 | 100% | ||
abhishekkalal | 0 | 0 | 100% | ||
prashantthorve90 | 0 | 0 | 100% | ||
mike93 | 0 | 0 | 100% | ||
basm12 | 0 | 0 | 100% | ||
tecnotronics | 0 | 0 | 100% | ||
fromwhitetower | 0 | 0 | 100% |
It sounds like something similar to Schnorr signatures (granted my knowledge about them is pretty shallow). Do you know perhaps how these compare to BLS?
author | andablackwidow |
---|---|
permlink | re-vscnetwork-20231214t4613767z |
category | vsc |
json_metadata | {"tags":["vsc","hive-core","core-team"],"app":"ecency/3.0.35-surfer","format":"markdown+html"} |
created | 2023-12-14 03:06:12 |
last_update | 2023-12-14 03:06:12 |
depth | 1 |
children | 2 |
last_payout | 2023-12-21 03:06:12 |
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 | 153 |
author_reputation | 97,189,462,735,448 |
root_title | "The future of Multisigs & cryptography on HIVE" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 129,655,019 |
net_rshares | 1,508,591,628 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
vimukthi | 0 | 1,508,591,628 | 100% |
BLS is similar in concept. However, BLS is a lot more efficient for doing aggregation, requires less communication and is more secure than schnorr signatures. BLS requires no party setup time and can be easily used without any direct communication between signing parties. Only an aggregator is required to turn a group of individual signatures into a valid aggregate signature. Additionally, library support for aggregation of schnorr signatures is abysmal, where as almost every BLS library supports aggregation out of the box (so far in my search). I've already tested BLS quite a bit and it will be part of the VSC consensus system. Here is a blog post that will describe the difference a better than I can. Both BLS and Schnorr have their tradeoffs. I'd like to eventually see both techniques implemented in HIVE in the future. https://medium.com/cryptoadvance/bls-signatures-better-than-schnorr-5a7fe30ea716
author | vaultec |
---|---|
permlink | re-andablackwidow-s5n07n |
category | vsc |
json_metadata | {"tags":["vsc"],"app":"peakd/2023.11.3"} |
created | 2023-12-14 03:26:12 |
last_update | 2023-12-14 03:26:12 |
depth | 2 |
children | 1 |
last_payout | 2023-12-21 03:26:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.012 HBD |
curator_payout_value | 0.013 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 916 |
author_reputation | 46,939,617,947,827 |
root_title | "The future of Multisigs & cryptography on HIVE" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 129,655,267 |
net_rshares | 58,914,151,659 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
vimukthi | 0 | 1,540,351,047 | 100% | ||
andablackwidow | 0 | 57,373,800,612 | 100% |
Hi - which libraries are used in VSC for BLS ? Just wondering how they are from a performance standpoint.
author | bobinson |
---|---|
permlink | re-vaultec-s5ouh8 |
category | vsc |
json_metadata | {"tags":["vsc"],"app":"peakd/2023.11.3"} |
created | 2023-12-15 03:17:42 |
last_update | 2023-12-15 03:17:42 |
depth | 3 |
children | 0 |
last_payout | 2023-12-22 03:17:42 |
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 | 106 |
author_reputation | 55,343,141,313,811 |
root_title | "The future of Multisigs & cryptography on HIVE" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 129,680,698 |
net_rshares | 0 |
author | bradleyarrow |
---|---|
permlink | re-vscnetwork-s5mw9l |
category | vsc |
json_metadata | {"tags":["vsc"],"app":"peakd/2023.11.3"} |
created | 2023-12-14 02:00:57 |
last_update | 2023-12-14 02:00:57 |
depth | 1 |
children | 0 |
last_payout | 2023-12-21 02:00:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.014 HBD |
curator_payout_value | 0.015 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 26 |
author_reputation | 625,672,935,395,546 |
root_title | "The future of Multisigs & cryptography on HIVE" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 129,654,225 |
net_rshares | 68,300,668,558 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
vaultec | 0 | 53,798,299,631 | 100% | ||
dkidfit | 0 | 14,502,368,927 | 100% |
I don't think so, dude. Your post is so riddled with errors that I have now lost faith in your team for letting you post garbage like this. 
author | darkpob |
---|---|
permlink | re-vscnetwork-s5mxb4 |
category | vsc |
json_metadata | {"tags":["vsc"],"app":"peakd/2023.11.3"} |
created | 2023-12-14 02:23:30 |
last_update | 2023-12-14 02:23:30 |
depth | 1 |
children | 2 |
last_payout | 2023-12-21 02:23:30 |
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 | 306 |
author_reputation | 588,604,716,156 |
root_title | "The future of Multisigs & cryptography on HIVE" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 129,654,502 |
net_rshares | 0 |
one of those people ๐
author | valor2s |
---|---|
permlink | re-darkpob-20231213t214958373z |
category | vsc |
json_metadata | {"tags":["vsc"],"app":"ecency/3.0.37-vision","format":"markdown+html"} |
created | 2023-12-14 02:49:57 |
last_update | 2023-12-14 02:49:57 |
depth | 2 |
children | 1 |
last_payout | 2023-12-21 02:49:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.012 HBD |
curator_payout_value | 0.012 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 21 |
author_reputation | 5,371,574,771,248 |
root_title | "The future of Multisigs & cryptography on HIVE" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 129,654,873 |
net_rshares | 54,082,339,895 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
vaultec | 0 | 54,082,339,895 | 100% |
Correct, you are "one of those people" who self-votes their comments. > *When you hang your dirty laundry out on the blockchain to dry, don't be offended when someone points it out!*
author | darkpob |
---|---|
permlink | re-valor2s-s5opwf |
category | vsc |
json_metadata | {"tags":["vsc"],"app":"peakd/2023.11.3"} |
created | 2023-12-15 01:38:42 |
last_update | 2023-12-15 01:38:42 |
depth | 3 |
children | 0 |
last_payout | 2023-12-22 01:38:42 |
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 | 182 |
author_reputation | 588,604,716,156 |
root_title | "The future of Multisigs & cryptography on HIVE" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 129,679,372 |
net_rshares | 0 |
LFG!
author | epic-fail |
---|---|
permlink | re-vscnetwork-s5mvef |
category | vsc |
json_metadata | {"tags":["vsc"],"app":"peakd/2023.11.3"} |
created | 2023-12-14 01:42:15 |
last_update | 2023-12-14 01:42:15 |
depth | 1 |
children | 0 |
last_payout | 2023-12-21 01:42:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.011 HBD |
curator_payout_value | 0.011 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 4 |
author_reputation | 50,302,810,803,308 |
root_title | "The future of Multisigs & cryptography on HIVE" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 129,653,947 |
net_rshares | 51,666,304,818 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
vaultec | 0 | 51,666,304,818 | 100% |
Congratulations @vsc.network! You have completed the following achievement on the Hive blockchain And have been rewarded with New badge(s) <table><tr><td><img src="https://images.hive.blog/60x70/http://hivebuzz.me/@vsc.network/upvotes.png?202312140055"></td><td>You distributed more than 100 upvotes.<br>Your next target is to reach 200 upvotes.</td></tr> </table> <sub>_You can view your badges on [your board](https://hivebuzz.me/@vsc.network) and compare yourself to others in the [Ranking](https://hivebuzz.me/ranking)_</sub> <sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub> To support your work, I also upvoted your post! **Check out our last posts:** <table><tr><td><a href="/hive-122221/@hivebuzz/lpud-202312"><img src="https://images.hive.blog/64x128/https://i.imgur.com/pVZi2Md.png"></a></td><td><a href="/hive-122221/@hivebuzz/lpud-202312">LEO Power Up Day - December 15, 2023</a></td></tr></table>
author | hivebuzz |
---|---|
permlink | notify-vscnetwork-20231214t013731 |
category | vsc |
json_metadata | {"image":["http://hivebuzz.me/notify.t6.png"]} |
created | 2023-12-14 01:37:30 |
last_update | 2023-12-14 01:37:30 |
depth | 1 |
children | 3 |
last_payout | 2023-12-21 01:37:30 |
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 | 969 |
author_reputation | 369,380,464,814,724 |
root_title | "The future of Multisigs & cryptography on HIVE" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 129,653,891 |
net_rshares | 0 |
STOP
author | vsc.network |
---|---|
permlink | re-hivebuzz-s5mv7q |
category | vsc |
json_metadata | {"tags":["vsc"],"app":"peakd/2023.11.3"} |
created | 2023-12-14 01:38:15 |
last_update | 2023-12-14 01:38:15 |
depth | 2 |
children | 2 |
last_payout | 2023-12-21 01:38:15 |
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 | 4 |
author_reputation | 201,142,791,999,699 |
root_title | "The future of Multisigs & cryptography on HIVE" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 129,653,902 |
net_rshares | 0 |
Notifications have been disabled. Sorry if I bothered you. To reactivate notifications, drop me a comment with the word `NOTIFY`
author | hivebuzz |
---|---|
permlink | notify-vscnetwork-20231214t020440 |
category | vsc |
json_metadata | "" |
created | 2023-12-14 02:04:42 |
last_update | 2023-12-14 02:04:42 |
depth | 3 |
children | 0 |
last_payout | 2023-12-21 02:04:42 |
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 | 129 |
author_reputation | 369,380,464,814,724 |
root_title | "The future of Multisigs & cryptography on HIVE" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 129,654,267 |
net_rshares | 0 |
Lol if only community could press STOP on you 'can't produce anything substantial for years' Devs. Anyway you can take money from the DHF (cash for mates) but it's looking like you'll NEVER RECEIVE SUBSTANTIAL CAPITAL from anyone with weight in this crypto game. So funny that you are directing this proposal to the "not CEO" (but actually runs hive like the commander in chief) @blocktrades. That 'open sandals over socks' exploiter of poor people's money likely also knows this chain will never achieve the vision you devs are all now in a panic to push. It don't work like that bro. Your past writes your future. There's a strangely intriguing comparison between hive evolution and DeSo chain. Over there though, the devs are much more cunning with their glossary of future development. Their token once DID MOON and they really did attract HUGE INTEREST. Some significant influencers still believing in success. DESO team claim their version 2.0 of things will reignite that and despite not delivering anything this year (big shock) they claim 2024 is their time to shine. So point is, if they achieve it, then it will prove how important marketing and pitching to the right people is... and that's something Hive never achieved. And if they do resurrect their project/price then Hive will likely be in it's shadows and never escape the "poor people's option chain" and "little known dev hobby chain" reputation. Anyway funny to see things play out as I commented when Hive broke away... Speaking of "break away" it was literally a LAUGH OUT LOUD moment when I read the "vibes" post by @lordbutterfly where he is forced to state that "the team behind break anyway communities is still developing it..." so he can't even achieve what he wants with a thing that was launched over a year and a half ago... "Broken Way Communities" SERIOUSLY MAN THAT'S EMBARRASSING .... It's the story of Hive in a nutshell. Ideas launch... CLOWNS like @starkerz @theycallmedan @taskmaster4450 @edicted make ridiculous claim that somehow HIVE is superior... but then years of nothingness proves the opposite. Then same clowns get mad "why HIVE get no love.. they mean to us..." (Remember when RC renting was meant to make everyone rich..... ) LOL Those were some funny days of wishful thinking. Low userbase but somehow RCs would be scarce. The recent wishful promotion of "imagine hive with 200 Million" with L2 smart contacts is that same notion just rehashed ... with an even smaller userbase and a mainly poor one still loyal. But you say VSC will be different... Same team but different somehow... OH KAY.
author | xiko | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
permlink | s5ngus | ||||||||||||
category | vsc | ||||||||||||
json_metadata | {"users":["blocktrades","lordbutterfly","starkerz","theycallmedan","taskmaster4450","edicted"],"app":"hiveblog/0.1"} | ||||||||||||
created | 2023-12-14 09:25:42 | ||||||||||||
last_update | 2023-12-14 09:25:42 | ||||||||||||
depth | 3 | ||||||||||||
children | 0 | ||||||||||||
last_payout | 2023-12-21 09:25:42 | ||||||||||||
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 | 2,620 | ||||||||||||
author_reputation | -2,275,684,584,966 | ||||||||||||
root_title | "The future of Multisigs & cryptography on HIVE" | ||||||||||||
beneficiaries |
| ||||||||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||||||||
percent_hbd | 10,000 | ||||||||||||
post_id | 129,660,688 | ||||||||||||
net_rshares | 0 |
Congratulations @vsc.network! Your post has been a top performer on the Hive blockchain and you have been rewarded with this rare badge <table><tr><td><img src="https://images.hive.blog/60x60/http://hivebuzz.me/badges/toppayoutday.png"></td><td>Post with the highest payout of the day.</td></tr> </table> <sub>_You can view your badges on [your board](https://hivebuzz.me/@vsc.network) and compare yourself to others in the [Ranking](https://hivebuzz.me/ranking)_</sub> <sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub> **Check out our last posts:** <table><tr><td><a href="/hive-122221/@hivebuzz/lpud-202312"><img src="https://images.hive.blog/64x128/https://i.imgur.com/pVZi2Md.png"></a></td><td><a href="/hive-122221/@hivebuzz/lpud-202312">LEO Power Up Day - December 15, 2023</a></td></tr></table>
author | hivebuzz |
---|---|
permlink | notify-vscnetwork-20231215t003640 |
category | vsc |
json_metadata | {"image":["http://hivebuzz.me/notify.t6.png"]} |
created | 2023-12-15 00:36:39 |
last_update | 2023-12-15 00:36:39 |
depth | 1 |
children | 0 |
last_payout | 2023-12-22 00:36:39 |
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 | 860 |
author_reputation | 369,380,464,814,724 |
root_title | "The future of Multisigs & cryptography on HIVE" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 129,678,632 |
net_rshares | 0 |
How difficult do you think it would be to implement these changes?
author | jeffbuilds |
---|---|
permlink | re-vscnetwork-s5mvjs |
category | vsc |
json_metadata | {"tags":["vsc"],"app":"peakd/2023.11.3"} |
created | 2023-12-14 01:45:30 |
last_update | 2023-12-14 01:45:30 |
depth | 1 |
children | 1 |
last_payout | 2023-12-21 01:45:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.011 HBD |
curator_payout_value | 0.012 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 66 |
author_reputation | 1,751,437,950,880 |
root_title | "The future of Multisigs & cryptography on HIVE" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 129,654,021 |
net_rshares | 52,721,333,638 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
vaultec | 0 | 52,721,333,638 | 100% |
Significantly easier than smart contracts. This is what blocktrades said about when it was first mentioned on CTT:  https://peakd.com/@sepracore/re-sepracore-s4qkx9
author | vaultec |
---|---|
permlink | re-jeffbuilds-s5mw4x |
category | vsc |
json_metadata | {"tags":["vsc"],"app":"peakd/2023.11.3"} |
created | 2023-12-14 01:58:09 |
last_update | 2023-12-14 01:58:09 |
depth | 2 |
children | 0 |
last_payout | 2023-12-21 01:58:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.046 HBD |
curator_payout_value | 0.046 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 303 |
author_reputation | 46,939,617,947,827 |
root_title | "The future of Multisigs & cryptography on HIVE" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 129,654,176 |
net_rshares | 202,578,386,535 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
atma.love | 0 | 130,572,665,789 | 10% | ||
jfuji | 0 | 72,005,720,746 | 100% |
!WOC
author | kairke |
---|---|
permlink | re-vscnetwork-s5oe1c |
category | vsc |
json_metadata | {"tags":["vsc"],"app":"peakd/2023.11.3"} |
created | 2023-12-14 21:22:27 |
last_update | 2023-12-14 21:22:27 |
depth | 1 |
children | 1 |
last_payout | 2023-12-21 21:22:27 |
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 | 4 |
author_reputation | 1,087,601,845,858 |
root_title | "The future of Multisigs & cryptography on HIVE" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 129,674,989 |
net_rshares | 0 |
<center><p>Keep up the good work with <strong>Woc</strong>, @vsc.network! <strong>kairke</strong><sub>(1/5)</sub> is appreciative of the time and dedication you've put into writing this post. Your efforts are truly valued.</p> <p>This post is wonderful! You deserve this gift of 0.2 WGOLD from @kairke. Keep up the exceptional work!</p> <p>BTW! <a href="https://tribaldex.com/trade/WGOLD" target="_blank">WGOLD</a> is the token of the War of Clans ecosystem, you can use it to have discounts in all our games or stake it and earn rewards now!</p></center> <hr> <center><a href="https://discord.gg/n2DDQxv7Md" target="_blank"><img src="https://media.discordapp.net/attachments/1149416738828587068/1179805183157489784/con_l.png"></a></center>
author | warofclans |
---|---|
permlink | re-re-vscnetwork-s5oe1c-20231214t212238z |
category | vsc |
json_metadata | "{"app": "hkGifts-1.0", "language": "python", "developer": "HK"}" |
created | 2023-12-14 21:22:36 |
last_update | 2023-12-14 21:22:36 |
depth | 2 |
children | 0 |
last_payout | 2023-12-21 21:22:36 |
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 | 740 |
author_reputation | -1,365,353,418 |
root_title | "The future of Multisigs & cryptography on HIVE" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 129,674,991 |
net_rshares | 0 |
You shouldn't have pages that look like this https://vsc-eco.github.io/docs/scalability/tbd
author | leprechaun |
---|---|
permlink | re-vscnetwork-20231219t1036266z |
category | vsc |
json_metadata | {"tags":["vsc","hive-core","core-team"],"app":"proofofbrain-blog/3.0.30-vision","format":"markdown+html"} |
created | 2023-12-19 13:36:27 |
last_update | 2023-12-19 13:36:27 |
depth | 1 |
children | 1 |
last_payout | 2023-12-26 13:36:27 |
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 | 91 |
author_reputation | 43,054,966,056,354 |
root_title | "The future of Multisigs & cryptography on HIVE" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 129,792,421 |
net_rshares | 0 |
We will get that fixed.
author | vaultec |
---|---|
permlink | re-leprechaun-s5x8yd |
category | vsc |
json_metadata | {"tags":["vsc"],"app":"peakd/2023.11.3"} |
created | 2023-12-19 16:11:03 |
last_update | 2023-12-19 16:11:03 |
depth | 2 |
children | 0 |
last_payout | 2023-12-26 16:11: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 | 24 |
author_reputation | 46,939,617,947,827 |
root_title | "The future of Multisigs & cryptography on HIVE" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 129,795,423 |
net_rshares | 9,066,512,426 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
leprechaun | 0 | 9,066,512,426 | 100% |
Make I so! @tipu curate
author | tobetada |
---|---|
permlink | re-vscnetwork-s5n6s8 |
category | vsc |
json_metadata | {"tags":["vsc"],"app":"peakd/2023.11.3"} |
created | 2023-12-14 05:48:06 |
last_update | 2023-12-14 05:48:06 |
depth | 1 |
children | 1 |
last_payout | 2023-12-21 05:48:06 |
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 | 24 |
author_reputation | 602,129,823,182,339 |
root_title | "The future of Multisigs & cryptography on HIVE" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 129,657,929 |
net_rshares | 0 |
<a href="https://tipu.online/hive_curator?tobetada" target="_blank">Upvoted 👌</a> (Mana: 50/60) <a href="https://peakd.com/hive/@reward.app/reward-app-quick-guide-updated" target="_blank">Liquid rewards</a>.
author | tipu |
---|---|
permlink | re-re-vscnetwork-s5n6s8-20231214t054813z |
category | vsc |
json_metadata | "{"app": "beem/0.24.26"}" |
created | 2023-12-14 05:48:12 |
last_update | 2023-12-14 05:48:12 |
depth | 2 |
children | 0 |
last_payout | 2023-12-21 05:48:12 |
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 | 216 |
author_reputation | 55,949,749,206,950 |
root_title | "The future of Multisigs & cryptography on HIVE" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 129,657,930 |
net_rshares | 0 |
I don't see how it removes counterparty risk for any swapped asset. Do I oversee something?
author | urun |
---|---|
permlink | re-vscnetwork-s5n51h |
category | vsc |
json_metadata | {"tags":["vsc"],"app":"peakd/2023.11.3"} |
created | 2023-12-14 05:10:27 |
last_update | 2023-12-14 05:10:27 |
depth | 1 |
children | 6 |
last_payout | 2023-12-21 05:10:27 |
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 | 91 |
author_reputation | 94,129,224,984,132 |
root_title | "The future of Multisigs & cryptography on HIVE" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 129,657,051 |
net_rshares | 0 |
The goal of this post was less focused on counterparty risk and more on the tech HIVE needs to implement for efficient multisigs. But to remove counterparty risk, the L1 multisig needs a LOT larger number of signers to be secure. Trusting 30 validators vs 500 validators is a huge difference. 30 validators would be a lot easier to corrupt vs 500. Essentially, what we are trying to do is bring the same level of security the L2 already has, to the L1 multisig. Ensuring there is little to no difference between L1 multisig and L2 security and we ensure the operations happening on the L1 are exactly the same as what's happening on the L2.
author | vaultec |
---|---|
permlink | re-urun-s5n5ec |
category | vsc |
json_metadata | {"tags":["vsc"],"app":"peakd/2023.11.3"} |
created | 2023-12-14 05:18:12 |
last_update | 2023-12-14 05:25:39 |
depth | 2 |
children | 5 |
last_payout | 2023-12-21 05:18:12 |
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 | 642 |
author_reputation | 46,939,617,947,827 |
root_title | "The future of Multisigs & cryptography on HIVE" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 129,657,151 |
net_rshares | 32,267,960,033 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
vimukthi | 0 | 102,756,261 | 10% | ||
urun | 0 | 32,165,203,772 | 100% |
OK, yeah makes sense. What if hive outsources smart contracts to something like koin and add a koin address to hive wallets in some way? Since wallets are free, It could be IMO something that is less heavy and makes hive with the social stuff more efficient. Only because of 1+1=3 since every milestone they hit would benefit efficient hive too. I mean I support also L2 smart contracts on hive, which would be a game-changer for sure. Special hive could become more finance-related and there is the money.
author | urun |
---|---|
permlink | re-vaultec-s5n5qk |
category | vsc |
json_metadata | {"tags":["vsc"],"app":"peakd/2023.11.3"} |
created | 2023-12-14 05:25:30 |
last_update | 2023-12-14 05:25:30 |
depth | 3 |
children | 4 |
last_payout | 2023-12-21 05:25:30 |
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 | 508 |
author_reputation | 94,129,224,984,132 |
root_title | "The future of Multisigs & cryptography on HIVE" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 129,657,314 |
net_rshares | 102,466,616 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
vimukthi | 0 | 102,466,616 | 10% |