create account

Namespace & Scope by edicted

View this thread on: hive.blogpeakd.comecency.com
· @edicted · (edited)
$29.85
Namespace & Scope
![js-code-example.jpg](https://files.peakd.com/file/peakd-hive/edicted/48Fi7vVL6xGRFXm8EBNQwKMMp1hZYheyLPJxe35T1pcLciKuwWyuiwM9GEWuBFo5Jj.jpg)

>A namespace is a separate scope for variables, functions, and types to prevent overwriting of variables and functions or preventing name conflicts. Namespacing is the practice of creating an object which encapsulates functions and variables that have the same name as those declared in the global scope.

### A basic but necessary concept.
In fact, if scope didn't exist then programming itself would not be scalable at all.  Let's say we're writing a program that uses some other library that's going to make what we're doing much easier.  This could be anything, from a library that does advanced mathematical functions like physics or a full-on gaming engine like Unreal. 

If that library declares a variable called `distance` for example, how does the computer know the difference between that variable and another variable named `distance` within our own script?  The answer is that these two variables exist in a completely different scope. In fact when the computer compiles all the information into actual runnable code it has no idea that either of these two variables was ever called `distance` in the first place.  It just throws it into a completely human-unreadable address consisting of 1's and 0's machine code.  As long as the complier knows the difference and puts the two variables in different places then it's all good. 

![matrix-code.jpg](https://files.peakd.com/file/peakd-hive/edicted/Eo6CETqtHxBNbHfPSVb51EJBXMfp3BpszJNKfBCnwaigY7TXtCY6b3qbr9ZVHdtqX4X.jpg)

#### Some JavaScript examples.
JavaScript is a much looser and forgiving language then something strict like C++.  In JavaScript functions have access to variables globally by default, while in C++ a function only has access to exactly what we say it has access to. 


![image.png](https://files.peakd.com/file/peakd-hive/edicted/EpA2XR7DuRyMyPvCaSpWAFRJHKemXUkMMSQc1R8BoUL9ZH4yf9DW1nbGtAb2rhV5BfL.png)

#### Overwriting variables
What would happen if we tried to create a new `string` inside of `namespace()`
Would that work or throw an error? 

![image.png](https://files.peakd.com/file/peakd-hive/edicted/23zGaCiMTn87JPh79E8pYSjnM1Tk5opyqJE7PLg6d4ar1mCxNS9uZA7HRwDSAJJAt9L8f.png)

### Scope hard at work here.
So now we have a variable named `string` that exists globally and a variable named `string` that exists only within the function.  They have completely different values.  This also means that the function no longer has access to the global variable because it's been overwritten. 

![image.png](https://files.peakd.com/file/peakd-hive/edicted/23yTak1VdCtgbXsbYsNybG7zSvZNPRZtggbCSRP4FVQGdhFb6YyMQQMXp9mpDt7spKzVA.png)

#### What happens if we don't declare `string` a second time?
Here we have the exact same code except I removed the variable declaration `let` from the function.  Now there is only one `string` instead of two.  The first one gets thrown to garbage collection when it gets overwritten by the second. 


![image.png](https://files.peakd.com/file/peakd-hive/edicted/242DNgRc2D2gcYnJXZX35ci5tan1kcCffjRWmg3JLnLfpNR7zBzWByEtvLrUVtXDsY2Gs.png)

### `let` vs `var`
JavaScript was officially first invented in 1995 but the `let` declaration didn't exist until twenty years later in 2015.  They both do basically the same thing (declare a variable), but `let` has a limited scope and kills off variables much sooner than `var` does.  It is considered good practice to use `let` when the extra scope given by `var` is unnecessary.  However, many programmers just use `var` for everything because that's the way they learned JavaScript and that's how most of the tutorials and StackOverflow answers are written. 

In the above example I used `let` to declare variables `i` and `do_something` within a for-loop.  Then I tried to access these variables outside of the for-loop.  This is not allowed... because apparently even loops and if-statements have their own scope in which `let` cannot escape.  Both these variables get destroyed by their lack of scope by the time I go to access them on the next line. 

![image.png](https://files.peakd.com/file/peakd-hive/edicted/23xp2ZVVtRprEagn4cx3G2uX7iKnouD9LM828kPtDehP2x5dg6RMTeeK43K2UFs3Ni9Gy.png)

All I have to do is rewrite the `let` as `var` and we can see that `var` breaks out of this scope to become a global variable, which I can then access outside of the loop. Again it is considered good practice to not do this unless this is specifically what the programmer was going for. For example we might make a mistake later and start accessing the variable `i` thinking it's something else when it's actually `10` because of this loop.  This could create a bug that takes longer to fix than if it had just thrown an error because `i` was never declared in the first place due to the lack of scope.  Tiny errors like this can explode into a lot of wasted time debugging things that will feel absolutely idiotic in retrospect. 


![image.png](https://files.peakd.com/file/peakd-hive/edicted/EoGyQ4AFuK8AGqXNfyLKhj5ejp21Tx1siCGR1uKQykP61aHu8CuhBNMb3pko1uoM7Db.png)

### Hierarchy of scope. 
We would think that global variables would be at the top of the food chain in terms of scope, but that's actually not true.  There is one level even above global which is the built in reserved words.  These are words like `let`, `var`, `const`, `undefined`, `null`, `function`, etc.  You aren't allowed to use these names except for their intended purpose.  We can't create a function called function, nor would we want to because it would just be terrible and confusing. 

* Rank 0: built-in reserved scope. 
* Rank 1: global scope.
* Rank 2: functions, classes, and libraries.
* Rank 3+: nested functions, classes, and libraries. 


![image.png](https://files.peakd.com/file/peakd-hive/edicted/23yd3i4yTRfEDT3Swsr4sV2txWEe3Na4hbDGuRqNEa6CqGWiRuxajRYABwCHAmsFAkCzt.png)

-----

As we can see from this test the `var` declaration may be strong enough to break out of for-loop and if-statement scopes but it is not strong enough to break out of functions or classes.  Even though we ran function `namespace1()` and `var fact` was created it got destroyed again as soon as the function popped off the stack; throwing an error when trying to access it globally after the fact.  However, as I have already shown previously if we had simply declared `fact` globally in the first place instead of within the function: this test would have worked as intended. 


![image.png](https://files.peakd.com/file/peakd-hive/edicted/23x12W1fXKBjVxtCMXEN1DVa7a7HQzej5vYKPAKAVpZcc1kaJzNWuMiJofgSR1GVnqmLe.png)

### Nested functions
One advantage of putting a function inside of another function is that this child function has access to the scope of the parent. In this example `namespace1()` gains access to all the variables declared in `namespace2()` and is able to modify variables that it couldn't before when both were separated rank 2 functions within the global scope.  The rule of thumb here being that the child tends to inherit all the traits of the parent but the children do not inherit traits from each other. 

### Conclusion 
Scope is one of those subjects in programming that one can totally ignore as a novice;  Just hack away at the code until it works like we want it to work.  This is one of those topics that needs to be understood at the higher levels to reduce bugs and to create more modular products that fit together in a scalable way without creating the dreaded spaghetti factory solution that just ends up being a tangled mess that is guaranteed to break if we change anything. 

If used correctly and with thoughtful intent, scope is a very powerful tool and necessary component of object oriented programing that allows us to keep building without previous builds getting in the way of what we're currently trying to achieve. 
πŸ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 416 others
properties (23)
authoredicted
permlinknamespace-scope
categoryhive-167922
json_metadata"{"app":"leothreads/0.3","canonical_url":"https://inleo.io/@edicted/namespace-scope","dimensions":{},"format":"markdown","images":[],"isPoll":false,"links":["https://files.peakd.com/file/peakd-hive/edicted/48Fi7vVL6xGRFXm8EBNQwKMMp1hZYheyLPJxe35T1pcLciKuwWyuiwM9GEWuBFo5Jj.jpg)","https://files.peakd.com/file/peakd-hive/edicted/Eo6CETqtHxBNbHfPSVb51EJBXMfp3BpszJNKfBCnwaigY7TXtCY6b3qbr9ZVHdtqX4X.jpg)","https://files.peakd.com/file/peakd-hive/edicted/EpA2XR7DuRyMyPvCaSpWAFRJHKemXUkMMSQc1R8BoUL9ZH4yf9DW1nbGtAb2rhV5BfL.png)","https://files.peakd.com/file/peakd-hive/edicted/23zGaCiMTn87JPh79E8pYSjnM1Tk5opyqJE7PLg6d4ar1mCxNS9uZA7HRwDSAJJAt9L8f.png)","https://files.peakd.com/file/peakd-hive/edicted/23yTak1VdCtgbXsbYsNybG7zSvZNPRZtggbCSRP4FVQGdhFb6YyMQQMXp9mpDt7spKzVA.png)","https://files.peakd.com/file/peakd-hive/edicted/242DNgRc2D2gcYnJXZX35ci5tan1kcCffjRWmg3JLnLfpNR7zBzWByEtvLrUVtXDsY2Gs.png)","https://files.peakd.com/file/peakd-hive/edicted/23xp2ZVVtRprEagn4cx3G2uX7iKnouD9LM828kPtDehP2x5dg6RMTeeK43K2UFs3Ni9Gy.png)","https://files.peakd.com/file/peakd-hive/edicted/EoGyQ4AFuK8AGqXNfyLKhj5ejp21Tx1siCGR1uKQykP61aHu8CuhBNMb3pko1uoM7Db.png)","https://files.peakd.com/file/peakd-hive/edicted/23yd3i4yTRfEDT3Swsr4sV2txWEe3Na4hbDGuRqNEa6CqGWiRuxajRYABwCHAmsFAkCzt.png)","https://files.peakd.com/file/peakd-hive/edicted/23x12W1fXKBjVxtCMXEN1DVa7a7HQzej5vYKPAKAVpZcc1kaJzNWuMiJofgSR1GVnqmLe.png)","https://inleo.io/@edicted/namespace-scope)"],"tags":["javascript","programming","code","scope","namespace","function","hive-167922"],"description":"A topic too simple for programmers and too complex for everyone else. ","users":[],"image":["https://files.peakd.com/file/peakd-hive/edicted/48Fi7vVL6xGRFXm8EBNQwKMMp1hZYheyLPJxe35T1pcLciKuwWyuiwM9GEWuBFo5Jj.jpg","https://files.peakd.com/file/peakd-hive/edicted/Eo6CETqtHxBNbHfPSVb51EJBXMfp3BpszJNKfBCnwaigY7TXtCY6b3qbr9ZVHdtqX4X.jpg","https://files.peakd.com/file/peakd-hive/edicted/EpA2XR7DuRyMyPvCaSpWAFRJHKemXUkMMSQc1R8BoUL9ZH4yf9DW1nbGtAb2rhV5BfL.png","https://files.peakd.com/file/peakd-hive/edicted/23zGaCiMTn87JPh79E8pYSjnM1Tk5opyqJE7PLg6d4ar1mCxNS9uZA7HRwDSAJJAt9L8f.png","https://files.peakd.com/file/peakd-hive/edicted/23yTak1VdCtgbXsbYsNybG7zSvZNPRZtggbCSRP4FVQGdhFb6YyMQQMXp9mpDt7spKzVA.png","https://files.peakd.com/file/peakd-hive/edicted/242DNgRc2D2gcYnJXZX35ci5tan1kcCffjRWmg3JLnLfpNR7zBzWByEtvLrUVtXDsY2Gs.png","https://files.peakd.com/file/peakd-hive/edicted/23xp2ZVVtRprEagn4cx3G2uX7iKnouD9LM828kPtDehP2x5dg6RMTeeK43K2UFs3Ni9Gy.png","https://files.peakd.com/file/peakd-hive/edicted/EoGyQ4AFuK8AGqXNfyLKhj5ejp21Tx1siCGR1uKQykP61aHu8CuhBNMb3pko1uoM7Db.png","https://files.peakd.com/file/peakd-hive/edicted/23yd3i4yTRfEDT3Swsr4sV2txWEe3Na4hbDGuRqNEa6CqGWiRuxajRYABwCHAmsFAkCzt.png","https://files.peakd.com/file/peakd-hive/edicted/23x12W1fXKBjVxtCMXEN1DVa7a7HQzej5vYKPAKAVpZcc1kaJzNWuMiJofgSR1GVnqmLe.png"]}"
created2024-05-22 15:02:54
last_update2024-05-22 15:04:03
depth0
children12
last_payout2024-05-29 15:02:54
cashout_time1969-12-31 23:59:59
total_payout_value14.964 HBD
curator_payout_value14.890 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7,932
author_reputation3,492,546,940,664,534
root_title"Namespace & Scope"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id133,851,570
net_rshares69,681,796,043,805
author_curate_reward""
vote details (480)
@aussieninja ·
$0.04
Hey, on a completely different topic... do you know why people buy the amount of $HIVE that they do?  Like, I know dApps need resource credits, and people might buy it to power up, but I'm trying to figure out if there is any reason to think that demand will outpace supply over time... or if it's all just random crypto fun?
πŸ‘  ,
properties (23)
authoraussieninja
permlinkre-edicted-sdw9do
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2024.5.3"}
created2024-05-22 15:51:24
last_update2024-05-22 15:51:24
depth1
children2
last_payout2024-05-29 15:51:24
cashout_time1969-12-31 23:59:59
total_payout_value0.021 HBD
curator_payout_value0.021 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length325
author_reputation114,232,029,080,538
root_title"Namespace & Scope"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id133,852,526
net_rshares102,176,489,183
author_curate_reward""
vote details (2)
@edicted ·
$0.27
Well the first question you've got to ask is how much supply there is in the first place. 
Our inflation schedule started at 10% a year and plans to go to 1% a year. 
Right now I think we are at something like 7%.  
Do you think Hive can grow 7% a year on average?
If it can that supply can be outpaced by demand. 

There's also HBD inflation which is separate. 
Can HBD demand go up more than the 20% yield?

And finally there is @hive.fund proposal money which is paying developers thousands a day to create and maintain stuff on the blockchain.  Is this expenditure worth it?  Debatable. How much are these thousands a day compared to the 7% Hive inflation?  At the current USD price 7% a year on a $130M cap is something like $25k a day, so perhaps the @hive.fund money isn't as big a drain as it seems on a relative scale... but this is also ninjamine money so there are politics involved with that. 

Looking at the actual price action of our token over multiple cycles we can see that demand outpaces supply all the time. Being bored or annoyed that our number crabs while other numbers are going up is the real issue imo.  Hive always lags, then it pumps hard, then it bleeds slow.  

I honestly don't think this is an appropriate question to ask until Hive has traded flat for an entire 4-year cycle... and even then that's not even a bad thing as it shows we are still profitable and stable. Suddenly being worried that Hive is going to stop being volatile and flatline forever right before 2025 is probably just another reason to double down and buy more.  Just like 2020 this is the kind of bet that can take 6-12 months to actually pay out. 
πŸ‘  
properties (23)
authoredicted
permlinkre-aussieninja-sdwaa0
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2024.5.3"}
created2024-05-22 16:10:51
last_update2024-05-22 16:10:51
depth2
children1
last_payout2024-05-29 16:10:51
cashout_time1969-12-31 23:59:59
total_payout_value0.133 HBD
curator_payout_value0.134 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,654
author_reputation3,492,546,940,664,534
root_title"Namespace & Scope"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id133,852,941
net_rshares625,154,953,579
author_curate_reward""
vote details (1)
@aussieninja ·
$0.04
Thanks!  

I'm not actually worried about the next year or two... I'm mainly trying to get my head around Hive over the next decade or two... but maybe that's a ridiculous thought-process because of all the unknowable variables. 

I guess the question with the @hive.fund is if that spigot was turned off, would $HIVE lose value?  Possibly again unknowable because Steem/Hive has never not had development. 

Hive pumping hard has always seemed like market speculation to me rather than an intense need for the tokens... but yeah, happy to wait out the cycles to see the overall trends. Hive isn't costing me anything but time and effort and I've enjoyed it so far. 
πŸ‘  ,
properties (23)
authoraussieninja
permlinkre-edicted-sdwbyo
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2024.5.3"}
created2024-05-22 16:47:12
last_update2024-05-22 16:47:12
depth3
children0
last_payout2024-05-29 16:47:12
cashout_time1969-12-31 23:59:59
total_payout_value0.022 HBD
curator_payout_value0.021 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length666
author_reputation114,232,029,080,538
root_title"Namespace & Scope"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id133,853,548
net_rshares103,629,752,257
author_curate_reward""
vote details (2)
@haveyoursay ·
$0.04
This is something going above my head. 
πŸ‘  ,
properties (23)
authorhaveyoursay
permlinkre-edicted-2024522t2064374z
categoryhive-167922
json_metadata{"type":"comment","tags":["hive-167922","javascript","programming","code","scope","namespace","function","hive-167922"],"app":"ecency/3.1.0-mobile","format":"markdown+html"}
created2024-05-22 15:06:06
last_update2024-05-22 15:06:06
depth1
children2
last_payout2024-05-29 15:06:06
cashout_time1969-12-31 23:59:59
total_payout_value0.022 HBD
curator_payout_value0.021 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length39
author_reputation75,734,314,275,754
root_title"Namespace & Scope"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id133,851,624
net_rshares104,001,836,243
author_curate_reward""
vote details (2)
@edicted ·
$0.16
![image.png](https://files.peakd.com/file/peakd-hive/edicted/23t78nfVxtJq3Afo1MoQnEiE6YmUZcxVbSJ8oGHkqPnuXnRdfcv93amuJaFJLYb3HmQ5Y.png)


# I know πŸ˜…
πŸ‘  
properties (23)
authoredicted
permlinkre-haveyoursay-sdw7d6
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2024.5.3"}
created2024-05-22 15:07:54
last_update2024-05-22 15:07:54
depth2
children1
last_payout2024-05-29 15:07:54
cashout_time1969-12-31 23:59:59
total_payout_value0.080 HBD
curator_payout_value0.081 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length149
author_reputation3,492,546,940,664,534
root_title"Namespace & Scope"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id133,851,648
net_rshares378,914,624,535
author_curate_reward""
vote details (1)
@haveyoursay ·
xD
properties (22)
authorhaveyoursay
permlinkre-edicted-2024522t20925490z
categoryhive-167922
json_metadata{"type":"comment","tags":["hive-167922"],"app":"ecency/3.1.0-mobile","format":"markdown+html"}
created2024-05-22 15:09:27
last_update2024-05-22 15:09:27
depth3
children0
last_payout2024-05-29 15:09:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length2
author_reputation75,734,314,275,754
root_title"Namespace & Scope"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id133,851,670
net_rshares0
@kryptik ·
$0.05
One that I think people stumble on especially hard is assignment. ('=' is not 'equals')

Programming is a weird beast. These days I feel like my biggest problem is remembering syntax. Every language is more or less the same kind of basic structure. 

Have you started looking into data structures and algorithms yet?
πŸ‘  , ,
properties (23)
authorkryptik
permlinkre-edicted-sdwzw9
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2024.5.2"}
created2024-05-23 01:24:12
last_update2024-05-23 01:24:12
depth1
children0
last_payout2024-05-30 01:24:12
cashout_time1969-12-31 23:59:59
total_payout_value0.024 HBD
curator_payout_value0.024 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length316
author_reputation38,181,454,492,763
root_title"Namespace & Scope"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id133,862,757
net_rshares115,704,113,544
author_curate_reward""
vote details (3)
@rafzat ·
This is beyond me but I wish you well
I’ve made some findings about coding and I heard it isn’t easy so I wish you well
properties (22)
authorrafzat
permlinkre-edicted-2024522t192833827z
categoryhive-167922
json_metadata{"type":"comment","tags":["hive-167922","javascript","programming","code","scope","namespace","function","hive-167922"],"app":"ecency/3.1.0-mobile","format":"markdown+html"}
created2024-05-22 18:28:33
last_update2024-05-22 18:28:33
depth1
children0
last_payout2024-05-29 18:28:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length119
author_reputation183,560,271,702,716
root_title"Namespace & Scope"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id133,855,242
net_rshares0
@stemsocial ·
re-edicted-namespace-scope-20240523t021425254z
<div class='text-justify'> <div class='pull-left'>
 <img src='https://stem.openhive.network/images/stemsocialsupport7.png'> </div>

Thanks for your contribution to the <a href='/trending/hive-196387'>STEMsocial community</a>. Feel free to join us on <a href='https://discord.gg/9c7pKVD'>discord</a> to get to know the rest of us!

Please consider delegating to the @stemsocial account (85% of the curation rewards are returned).

You may also include @stemsocial as a beneficiary of the rewards of this post to get a stronger support.&nbsp;<br />&nbsp;<br />
</div>
properties (22)
authorstemsocial
permlinkre-edicted-namespace-scope-20240523t021425254z
categoryhive-167922
json_metadata{"app":"STEMsocial"}
created2024-05-23 02:14:24
last_update2024-05-23 02:14:24
depth1
children0
last_payout2024-05-30 02:14:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length565
author_reputation22,907,472,246,963
root_title"Namespace & Scope"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id133,863,578
net_rshares0
@wrestlingdesires ·
$0.04
Sounds like you are getting ready to do some serious dev work :)... I hope it's something fun πŸ™Œ


This post has been manually curated by the VYB curation project
πŸ‘  ,
properties (23)
authorwrestlingdesires
permlinkre-edicted-2024522t7266791z
categoryhive-167922
json_metadata{"tags":["javascript","programming","code","scope","namespace","function","hive-167922"],"app":"ecency/3.2.0-vision","format":"markdown+html"}
created2024-05-22 15:26:09
last_update2024-05-22 15:26:09
depth1
children2
last_payout2024-05-29 15:26:09
cashout_time1969-12-31 23:59:59
total_payout_value0.021 HBD
curator_payout_value0.021 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length161
author_reputation202,688,216,355,345
root_title"Namespace & Scope"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id133,852,075
net_rshares102,466,007,141
author_curate_reward""
vote details (2)
@edicted ·
Yep I think I just need to commit to a super small project that actually works and just get it done. 
Thinking about something SUPER BASIC like... building the Battleship boardgame on Hive.
Except we'd all be able to bet on the outcome because crypto :D. 
properties (22)
authoredicted
permlinkre-wrestlingdesires-sdw8ie
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2024.5.3"}
created2024-05-22 15:32:39
last_update2024-05-22 15:32:39
depth2
children1
last_payout2024-05-29 15:32:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length255
author_reputation3,492,546,940,664,534
root_title"Namespace & Scope"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id133,852,187
net_rshares0
@oblivioncubed ·
$0.05
Gambling AND board games? You're aiming at two of my vices. πŸ˜‚
πŸ‘  ,
properties (23)
authoroblivioncubed
permlinkre-edicted-sdy4lu
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2024.5.3"}
created2024-05-23 16:03:30
last_update2024-05-23 16:03:30
depth3
children0
last_payout2024-05-30 16:03:30
cashout_time1969-12-31 23:59:59
total_payout_value0.027 HBD
curator_payout_value0.027 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length61
author_reputation169,119,666,489,589
root_title"Namespace & Scope"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id133,877,318
net_rshares130,745,770,941
author_curate_reward""
vote details (2)