**[Support Proposal 342 on PeakD](https://peakd.com/me/proposals/342) [Vote for Brianoflondon's Witness KeyChain or HiveSigner](https://vote.hive.uno/@brianoflondon)** ***This is a value for value post: see the explanation in the footer.***  --- ## Working on @v4vapp and @vsc.network I'm still here! I'm still working! I've not been posting much but I should. So here's a post and a very quick update. I'm working on rebuilding the entire back end of @v4vapp both to be public source and (one day) runnable by others. And I'm working toward the direction of using @vsc.network as the BTC/Hive/HBD exchange as and when those features become available. This is a pretty huge change for me. That's also why I'm deeply involved with @vaultec and his crew to make sure we keep heading in the same direction. ## Minor changes to @v4vapp I didn't really mention it but the front end got a few tweaks like zoom controls on the camera for scanning QR Codes. Also the system now copes properly with internal transfers (even if these are via Lightning). It's crazy how Lightning does this internally, but I'm coping with it now. It just means that if you try using [v4v.app](https://v4v.app/) to send Lightning to another Hive user's Lightning address (mine is `brianoflondon@sats.v4v.app` it works. I'm working most of the time on by `v4vapp-backend-v2` which is a public Github repo. It's not really decipherable right now, but a lot of work is going into it. ## Nectar replacing Beem There is a whole push for new dev tools with @blocktrades team having come up with some great new code but it's not finished and really ready. In the mean time the old Python library called Beem remained my main working system but it has problems. In steps @thecrazygm and starts converting it into something called [Nectar](https://github.com/TheCrazyGM/hive-nectar) `pip install hive-nectar`. This is great and I've put in a couple of pull requests already and have more I'll be sending in. ### Async streaming of blocks Chief amongst this will be an async block stream which I'm using in my code and is starting to be really really reliable. It's public already but burried in my code, I'll work with @thecrazygm to put this direct into the **Nectar** code. ## Code lesson for today: MongodDB Replica Set locally and on Github Actions Do let me know in the comments if any of this is helpful to you! This took me far longer than you'd think to get work. With a million prompts to Co-Pilot and Grok you'd be surprised at just how bad these two things were at really understanding the underlying complexity of this. ### MongoDB Replica Sets MongoDB is easy peasy to set up for a single instance running in a docker container. But in production and for certain of the more advanced features of this database like "change streams" you need something called a replica set. This is designed to run on multiple computers simultaneously and copies all its data around the whole "cluster" automatically. But when you're writing software you really need a local copy of this running on your machine and you probably don't want three of these. Docker containers are perfect for this and it should be easy, right? ### The big gotcha The big gotcha that took me hours to really get to grips with is that the usually distinct internal network name and port inside the Docker container, and the external name by which you address the replica set cluster (even though it's only one machine). MUST BE THE SAME! So if you're connecting on `localhost:37017` outside the container, you must ensure that `localhost37017` is the same name used when setting up the replica set in the container. Trust me on this (past those two paragraphs into Grok and ask it why I'm right). ### So here's the answer: localhost and Github Actions #### The Connection string If you use the two config files below, the connection string for connecting to your MongoDB on both Github actions and your local machine will be: `mongodb://127.0.0.1:37017/?replicaSet=rsPytest` #### docker_compose.yaml ```yaml services: mongo-pytest-local: image: mongo:8.0 command: > bash -c " mongod --replSet rsPytest --bind_ip_all --port 37017 & sleep 10 && mongosh --port 37017 --eval 'rs.initiate({ _id: \"rsPytest\", members: [{ _id: 0, host: \"127.0.0.1:37017\" }] })' && wait " ports: - "127.0.0.1:37017:37017" - "${LOCAL_TAILSCALE_IP}:37017:37017" healthcheck: test: ["CMD", "mongosh", "--eval", "db.runCommand({ ping: 1 })"] interval: 10s timeout: 5s retries: 5 restart: unless-stopped networks: - v4vapp-backend volumes: - mongo_data:/data/db - mongo_config:/data/configdb volumes: mongo_data: mongo_config: networks: v4vapp-backend: driver: bridge ``` #### .github/workflows/pytest.yaml This includes the code for running my code using `uv` but I'm giving the whole file for completeness, you can see the docker setup for MongoDB (and Redis too). ```yaml name: Pytest on: push: branches: - main - develop tags: - "v*" pull_request: branches: - main - develop paths-ignore: - "**.md" - ".gitignore" - "LICENSE" - ".env*" jobs: test: runs-on: ubuntu-latest services: redis: image: redis:latest ports: - "6379:6379" steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 with: python-version: "3.12" # Install UV - name: Install UV run: | curl -LsSf https://astral.sh/uv/install.sh | sh echo "$HOME/.cargo/bin" >> $GITHUB_PATH # Cache virtual environment - name: Cache UV virtual environment id: cache-venv uses: actions/cache@v4 with: path: .venv key: uv-venv-${{ runner.os }}-${{ hashFiles('pyproject.toml') }}-${{ hashFiles('uv.lock') }} # Set up virtual environment and sync dependencies - name: Set up UV environment and install dependencies if: steps.cache-venv.outputs.cache-hit != 'true' run: | uv venv --python 3.12 uv sync --group dev # Ensure UV is available and sync if cache is hit - name: Sync UV dependencies (post-cache) run: | uv sync --group dev # Check UV version - name: Check UV version run: uv --version # List installed packages - name: List installed packages run: uv pip list # Start MongoDB with replica set - name: Start MongoDB uses: supercharge/mongodb-github-action@1.12.0 with: mongodb-version: '8.0' mongodb-replica-set: rsPytest mongodb-port: 37017 # Set PYTHONPATH - name: Set PYTHONPATH run: echo "PYTHONPATH=$PWD/src" >> $GITHUB_ENV # Run tests - name: Test with pytest env: HIVE_ACC_TEST: ${{ secrets.HIVE_ACC_TEST }} HIVE_MEMO_TEST_KEY: ${{ secrets.HIVE_MEMO_TEST_KEY }} run: | uv run pytest # Print service container logs only if tests fail - name: Print service container logs if: failure() run: | echo "MongoDB logs:" docker logs $(docker ps -q --filter "ancestor=mongo:8.0") echo "Redis logs:" docker logs $(docker ps -q --filter "ancestor=redis:latest") ``` ------- ## Value for Value For the last few months while building @v4vapp I was generously supported by the DHF. Going forward I have a much more modest support which covers direct server costs and a little of my time. If you appreciate the work I do on and around Hive, you can express this directly: upvoting posts on Hive is great. Also consider a direct donation (there's a Tip button on Hive or a Lightning Address) on all my posts. <div class="pull-right">  </div> <div class="pull-right"> https://images.hive.blog/130x130/http://hivebuzz.me/badges/birthday-6.png </div> **[Support Proposal 342 on PeakD](https://peakd.com/me/proposals/342) [Support Proposal 342 with Hivesigner](https://hivesigner.com/sign/update-proposal-votes?proposal_ids=%5B342%5D&approve=true) [Support Proposal 303 on Ecency](https://ecency.com/proposals/303) [Vote for Brianoflondon's Witness KeyChain or HiveSigner](https://vote.hive.uno/@brianoflondon)** ------- <div class="pull-right">  </div> - [Find me on Telegram](https://t.me/brianoflondon) - [V4VAPP Support on Telegram](https://t.me/v4vapp_support) - [Vote for Brianoflondon's Witness KeyChain or HiveSigner](https://vote.hive.uno/@brianoflondon) - [Vote for Brianoflondon's Witness direct with HiveSigner](https://hivesigner.com/sign/account-witness-vote?witness=brianoflondon&approve=1) - [Find my videos on 3speak](https://3speak.tv/user/brianoflondon)
author | brianoflondon |
---|---|
permlink | v4vapp-update-plus-how-to-mongoddb-replica-set-on-a-local-machine-and-github-actions-pytest |
category | hive-110369 |
json_metadata | "{"app":"peakd/2025.4.6","format":"markdown","description":"`localhost:37017` outside the container, you must ensure that `localhost37017` is the same name in the container.","tags":["v4vapp","python","github","docker","leofinance","proofofbrain","mongodb","replicasets"],"users":["brianoflondon","v4vapp","vsc.network","vaultec","sats.v4v.app","blocktrades","thecrazygm","1.12.0"],"image":["https://files.peakd.com/file/peakd-hive/brianoflondon/EpEKDkoxz3JiRraBS45RgBHKFQkK61FQoqKSLzaE9KnZ9AbnRqLgKeXp2JDNn4xJ9V8.jpg","https://files.peakd.com/file/peakd-hive/brianoflondon/AJmtP4HQY8c2Ej3D2k6ZxhKZqUh6R2hDWcVDkpVacwCbt5c9R9R2LowiycVhAM7.png","https://images.hive.blog/130x130/http://hivebuzz.me/badges/birthday-6.png","https://files.peakd.com/file/peakd-hive/brianoflondon/AK3gcbmQA5oP28nnfgu5MiW8JCXw1XA6tYghwFWbSkPW2P6hXto5i7TDRTkPRVa.png"]}" |
created | 2025-04-20 10:06:51 |
last_update | 2025-04-20 10:06:51 |
depth | 0 |
children | 13 |
last_payout | 2025-04-27 10:06:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 11.564 HBD |
curator_payout_value | 11.543 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 9,424 |
author_reputation | 759,674,214,959,955 |
root_title | "V4VApp update plus how to: MongodDB Replica Set on a local machine & Github Actions PyTest " |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 142,203,572 |
net_rshares | 65,963,479,292,860 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
acidyo | 0 | 5,913,852,264,063 | 100% | ||
ericvancewalton | 0 | 648,632,950,220 | 100% | ||
jeffjagoe | 0 | 22,150,528,313 | 25% | ||
kendewitt | 0 | 203,860,934,849 | 100% | ||
felixxx | 0 | 1,602,651,446,042 | 100% | ||
elamental | 0 | 1,309,105,056 | 13.2% | ||
netaterra | 0 | 5,661,398,876 | 15% | ||
mattclarke | 0 | 255,644,817,471 | 25% | ||
canadian-coconut | 0 | 4,659,354,283,633 | 30% | ||
builderofcastles | 0 | 79,964,854,209 | 32% | ||
freebornsociety | 0 | 2,896,057,123 | 5.07% | ||
haastrecht | 0 | 200,113,434,661 | 50% | ||
thecrazygm | 0 | 20,033,611,438 | 100% | ||
arnel | 0 | 526,864,961 | 100% | ||
iansart | 0 | 2,094,362,498 | 50% | ||
stackin | 0 | 714,913,370 | 10% | ||
jagged | 0 | 1,973,141,382 | 32.5% | ||
jerrybanfield | 0 | 382,355,841,539 | 100% | ||
galberto | 0 | 17,299,888,436 | 25% | ||
nuagnorab | 0 | 13,288,831,289 | 100% | ||
tonyz | 0 | 640,580,165,613 | 49% | ||
anacristinasilva | 0 | 28,395,271,408 | 100% | ||
enjar | 0 | 1,222,233,711,837 | 100% | ||
krischy | 0 | 565,220,220 | 100% | ||
joeyarnoldvn | 0 | 1,408,625,856 | 4.26% | ||
toofasteddie | 0 | 266,809,532,717 | 30% | ||
everrich | 0 | 1,918,907,423 | 100% | ||
nicolemoker | 0 | 1,092,269,326 | 100% | ||
vimukthi | 0 | 1,883,742,296 | 100% | ||
zirochka | 0 | 551,989,813,285 | 50% | ||
holbein81 | 0 | 514,047,766 | 100% | ||
epodcaster | 0 | 94,284,927,718 | 100% | ||
ecotrain | 0 | 98,071,260,432 | 30% | ||
buttcoins | 0 | 2,227,182,874,093 | 60% | ||
reiseamateur | 0 | 231,495,796,848 | 50.1% | ||
sahil07 | 0 | 3,130,033,682 | 100% | ||
dejan.vuckovic | 0 | 17,783,765,623 | 15% | ||
familyprotection | 0 | 667,709,642,492 | 48% | ||
steemflow | 0 | 239,304,215,562 | 58% | ||
elderson | 0 | 1,234,297,244 | 16.5% | ||
wiseagent | 0 | 115,754,129,793 | 10% | ||
daltono | 0 | 114,288,535,072 | 33% | ||
deepresearch | 0 | 903,650,514,274 | 22% | ||
edicted | 0 | 6,853,668,496,201 | 100% | ||
piotrgrafik | 0 | 1,066,002,909,285 | 80% | ||
portugalcoin | 0 | 4,475,246,009 | 10% | ||
anderssinho | 0 | 25,403,735,003 | 100% | ||
condeas | 0 | 2,212,568,144,613 | 100% | ||
asgarth | 0 | 757,132,341,052 | 50% | ||
cst90 | 0 | 492,111,543,750 | 100% | ||
d-zero | 0 | 1,787,237,235 | 100% | ||
gadrian | 0 | 430,182,486,040 | 30% | ||
sbi4 | 0 | 71,222,620,323 | 5.24% | ||
fw206 | 0 | 9,417,132,974,892 | 100% | ||
slobberchops | 0 | 2,113,856,312,828 | 26.69% | ||
ronbong | 0 | 1,192,272,600 | 100% | ||
apshamilton | 0 | 2,357,896,521,985 | 100% | ||
gaottantacinque | 0 | 273,436 | 100% | ||
heros | 0 | 15,084,271,093 | 100% | ||
xves | 0 | 20,044,585,974 | 50% | ||
cmplxty | 0 | 387,408,060,438 | 25% | ||
thedailysneak | 0 | 534,415,959 | 0.59% | ||
hamismsf | 0 | 685,171,283,529 | 100% | ||
dalz | 0 | 1,687,333,054,551 | 100% | ||
zuerich | 0 | 2,930,076,058,195 | 36% | ||
yaelg | 0 | 58,531,258,931 | 90% | ||
gasaeightyfive | 0 | 693,799,575 | 100% | ||
teamoregon | 0 | 550,488,528 | 50% | ||
fijimermaid | 0 | 658,700,288,462 | 100% | ||
marcocasario | 0 | 10,228,733 | 0.01% | ||
cribbio | 0 | 2,369,480,594 | 100% | ||
kind.network | 0 | 1,905,883,077 | 50% | ||
linuxbot | 0 | 31,830,924,912 | 100% | ||
bia.birch | 0 | 2,241,485,644 | 15% | ||
jpbliberty | 0 | 9,595,764,088 | 100% | ||
escuadron201 | 0 | 48,723,592,974 | 100% | ||
anonsteve | 0 | 6,722,423,181 | 50% | ||
doze | 0 | 1,443,267,602 | 75% | ||
hungryharish | 0 | 24,895,479,928 | 100% | ||
hungryanu | 0 | 3,339,579,358 | 50% | ||
photographercr | 0 | 1,073,559,823 | 20% | ||
steelborne | 0 | 2,763,327,216 | 20% | ||
minigame | 0 | 323,778,581,353 | 100% | ||
ph1102 | 0 | 229,201,079,025 | 7% | ||
kittykate | 0 | 101,628,950,270 | 100% | ||
steemindian | 0 | 4,157,751,946 | 100% | ||
davidtron | 0 | 765,265,252 | 12.5% | ||
cryptogambit | 0 | 1,431,070,176 | 7.5% | ||
imbartley | 0 | 457,888,187 | 15% | ||
ssiena | 0 | 12,750,503,627 | 25% | ||
ozraeliavi | 0 | 2,982,817,008 | 100% | ||
bearjohn | 0 | 1,909,871,044 | 75% | ||
mktmaker | 0 | 702,410,735 | 72.75% | ||
sbi-tokens | 0 | 1,110,433,080 | 1.18% | ||
dappstats | 0 | 4,589,696,529 | 15% | ||
fenngen | 0 | 814,668,036 | 15% | ||
atma.love | 0 | 27,777,556,393 | 65% | ||
keys-defender | 0 | 2,489,776,694 | 100% | ||
catanknight | 0 | 202,358,467 | 100% | ||
tht | 0 | 9,100,074,492 | 100% | ||
hextech | 0 | 250,659,496,091 | 100% | ||
ninnu | 0 | 547,289,535 | 50% | ||
invest4free | 0 | 9,269,764,429 | 100% | ||
woelfchen | 0 | 410,640,461,771 | 100% | ||
ghaazi | 0 | 5,240,107,455 | 100% | ||
devpress | 0 | 590,046,649 | 50% | ||
balvinder294 | 0 | 2,441,482,456 | 20% | ||
moneyheist-sl | 0 | 2,179,090 | 100% | ||
brettpullen | 0 | 552,004,441 | 100% | ||
nikoszzz | 0 | 4,806,190,817 | 100% | ||
netaterra.leo | 0 | 1,009,865,876 | 13.5% | ||
szukamnemo | 0 | 36,076,762,316 | 11% | ||
guitarmcy | 0 | 59,450,839,030 | 100% | ||
trostparadox | 0 | 4,791,245,044,028 | 100% | ||
kriszrokk | 0 | 34,441,795,787 | 100% | ||
repayme4568 | 0 | 695,008,239 | 15% | ||
xyba | 0 | 49,870,825,331 | 100% | ||
lioz3018 | 0 | 516,012,496 | 50% | ||
nyxlabs | 0 | 7,465,265,979 | 25% | ||
drricksanchez | 0 | 44,159,718,884 | 7.5% | ||
rendrianarma | 0 | 2,364,489,821 | 50% | ||
hive-defender | 0 | 381,057,970 | 100% | ||
dividendencheck | 0 | 11,950,877,086 | 100% | ||
keithtaylor | 0 | 2,649,303,111 | 67% | ||
hivehydra | 0 | 990,714,480 | 100% | ||
davidbright | 0 | 19,098,138,129 | 50% | ||
borsengelaber | 0 | 198,455,884,638 | 100% | ||
menzo | 0 | 5,607,861,303 | 10% | ||
trezzahn | 0 | 22,307,045,176 | 100% | ||
techguard | 0 | 718,336,724 | 11% | ||
mengao | 0 | 763,473,807,375 | 100% | ||
tillmea | 0 | 574,316,807 | 100% | ||
paula1411 | 0 | 459,522,305 | 100% | ||
crypto-shots | 0 | 88,319,359 | 50% | ||
crypt0gnome | 0 | 60,525,046,728 | 50% | ||
manuphotos | 0 | 3,607,477,624 | 50% | ||
jomancub | 0 | 799,256,622 | 20% | ||
apoklipsix | 0 | 669,776,764 | 50% | ||
osmy91 | 0 | 814,079,866 | 20% | ||
drceeyou | 0 | 8,198,940,456 | 35% | ||
djblendah | 0 | 873,778,334 | 100% | ||
karelnt | 0 | 821,789,298 | 50% | ||
abelfotografia | 0 | 1,424,308,505 | 12% | ||
tgarcialvarez | 0 | 647,137,265 | 20% | ||
cryptoshots.nft | 0 | 0 | 100% | ||
hivecuba | 0 | 569,397,538,029 | 20% | ||
noakmilo | 0 | 21,552,537,649 | 10% | ||
nony | 0 | 1,113,351,715 | 20% | ||
tecnologyfan1 | 0 | 1,329,374,710 | 100% | ||
androliuben | 0 | 2,362,591,293 | 10% | ||
criptocuates | 0 | 1,012,598,799 | 100% | ||
pumarte | 0 | 13,184,708,837 | 50% | ||
abrunet | 0 | 7,097,449,041 | 50% | ||
cryptoshots.play | 0 | 0 | 10% | ||
sommylove | 0 | 3,359,168,057 | 91% | ||
coldbeetrootsoup | 0 | 3,786,613,383,593 | 100% | ||
mortsanchezzz | 0 | 4,779,067,680 | 100% | ||
the13anarchist | 0 | 1,952,476,830 | 20% | ||
glimpsytips.dex | 0 | 5,956,552,272 | 19% | ||
kumagaro | 0 | 720,128,717 | 50% | ||
cryptoshotsdoom | 0 | 0 | 10% | ||
hive-132595 | 0 | 1,685,776,794 | 100% | ||
cryptomaso | 0 | 2,337,375,104 | 100% | ||
eduardo900613 | 0 | 2,246,177,554 | 20% | ||
theoneblog | 0 | 749,642,385 | 10% | ||
mariolisrnaranjo | 0 | 2,382,424,583 | 20% | ||
newnow497 | 0 | 2,669,384,602 | 100% | ||
gornat | 0 | 2,452,321,450 | 20% | ||
wendy23 | 0 | 5,861,109,595 | 10% | ||
ylaffittep | 0 | 1,554,307,601 | 100% | ||
denisda | 0 | 8,531,969,128 | 50% | ||
dovycola | 0 | 5,427,512,401 | 100% | ||
amambay | 0 | 929,330,740 | 100% | ||
karina.gpt | 0 | 0 | 100% | ||
yventura | 0 | 500,641,276 | 20% | ||
yesenia.romero | 0 | 3,301,735,622 | 100% | ||
mita3 | 0 | 1,188,691,250 | 20% | ||
davidsantafe | 0 | 3,846,957,234 | 10% | ||
yailec | 0 | 1,082,053,803 | 100% | ||
edeyglezsosa | 0 | 967,695,604 | 4% | ||
yale95reyra | 0 | 1,485,186,331 | 10% | ||
like2cbrs | 0 | 2,144,091,106 | 100% | ||
saavedraa | 0 | 4,161,411,046 | 40% | ||
mosupholstery | 0 | 6,841,222,528 | 100% | ||
cbrsphilanthropy | 0 | 67,044,321,426 | 100% | ||
setpiece | 0 | 802,165,963 | 100% | ||
leopard0 | 0 | 3,337,838,663 | 20% | ||
patricma | 0 | 2,805,859,900 | 20% | ||
ineyashami | 0 | 2,396,662,044 | 100% | ||
daniverdecia | 0 | 898,396,430 | 100% | ||
ortelioeph | 0 | 3,297,090,105 | 100% | ||
nellybestie | 0 | 5,742,910,458 | 100% | ||
dorianblack | 0 | 0 | 33% | ||
agrishat | 0 | 7,416,526 | 19% | ||
shigiri | 0 | 0 | 100% |
Very impressive, although I only understood about half of it! :-)
author | apshamilton |
---|---|
permlink | re-brianoflondon-sv11ic |
category | hive-110369 |
json_metadata | {"tags":["hive-110369"],"app":"peakd/2025.4.6","image":[],"users":[]} |
created | 2025-04-20 17:20:39 |
last_update | 2025-04-20 17:20:39 |
depth | 1 |
children | 0 |
last_payout | 2025-04-27 17:20:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.316 HBD |
curator_payout_value | 1.316 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 65 |
author_reputation | 212,404,184,641,750 |
root_title | "V4VApp update plus how to: MongodDB Replica Set on a local machine & Github Actions PyTest " |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 142,210,867 |
net_rshares | 7,521,196,131,269 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
brianoflondon | 0 | 7,521,196,131,269 | 100% |
Hey Brian, good to hear from you again. Those things you are working on sound very promising though I donβt get too much of the coding deep dive. But I understood its still the plan to decentralize v4vapp, which I think is very valuable. πͺπ» What I wanted to try is sending literally Sats to another Hive Account. How does that work? Is the LN adress always username@sats.v4vapp? Have a great sunday and talk soon Thomas
author | borsengelaber |
---|---|
permlink | re-brianoflondon-2025420t122643600z |
category | hive-110369 |
json_metadata | {"type":"comment","tags":["hive-110369","v4vapp","python","github","docker","leofinance","proofofbrain","mongodb","replicasets"],"app":"ecency/3.3.0-mobile","format":"markdown+html"} |
created | 2025-04-20 10:26:42 |
last_update | 2025-04-20 10:26:42 |
depth | 1 |
children | 2 |
last_payout | 2025-04-27 10:26:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.532 HBD |
curator_payout_value | 1.532 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 424 |
author_reputation | 316,895,270,302,807 |
root_title | "V4VApp update plus how to: MongodDB Replica Set on a local machine & Github Actions PyTest " |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 142,203,798 |
net_rshares | 8,737,577,541,385 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
brianoflondon | 0 | 8,737,577,541,385 | 100% |
The internal transfers are useful for programmatic stuff which @sstarker others are doing for on boarding btc communities.
author | brianoflondon |
---|---|
permlink | re-borsengelaber-sv0zz1 |
category | hive-110369 |
json_metadata | {"tags":["hive-110369"],"app":"peakd/2025.4.6"} |
created | 2025-04-20 16:47:27 |
last_update | 2025-04-20 16:47:27 |
depth | 2 |
children | 1 |
last_payout | 2025-04-27 16:47: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 | 123 |
author_reputation | 759,674,214,959,955 |
root_title | "V4VApp update plus how to: MongodDB Replica Set on a local machine & Github Actions PyTest " |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 142,210,457 |
net_rshares | 0 |
Ah, so nothing for regular use and βnormal Hiversβ?
author | borsengelaber |
---|---|
permlink | re-brianoflondon-2025420t185514851z |
category | hive-110369 |
json_metadata | {"type":"comment","tags":["hive-110369"],"app":"ecency/3.3.0-mobile","format":"markdown+html"} |
created | 2025-04-20 16:55:15 |
last_update | 2025-04-20 16:55:15 |
depth | 3 |
children | 0 |
last_payout | 2025-04-27 16:55: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 | 51 |
author_reputation | 316,895,270,302,807 |
root_title | "V4VApp update plus how to: MongodDB Replica Set on a local machine & Github Actions PyTest " |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 142,210,557 |
net_rshares | 0 |
This is a very big news Keep up doing the great work and I am really super proud You are a big inspiration
author | consistency |
---|---|
permlink | re-brianoflondon-sv0vbc |
category | hive-110369 |
json_metadata | {"tags":["hive-110369"],"app":"peakd/2025.4.6","image":[],"users":[]} |
created | 2025-04-20 15:06:51 |
last_update | 2025-04-20 15:06:51 |
depth | 1 |
children | 0 |
last_payout | 2025-04-27 15:06:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.794 HBD |
curator_payout_value | 0.795 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 107 |
author_reputation | 9,615,801,994,776 |
root_title | "V4VApp update plus how to: MongodDB Replica Set on a local machine & Github Actions PyTest " |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 142,207,931 |
net_rshares | 4,502,289,330,126 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
brianoflondon | 0 | 4,502,289,330,126 | 50% |
I have a question. If I swap my BNB on BSC to BTC, can I then transfer it to Hive via V4V? I am having trouble transferring BNB to HE xD
author | cwow2 |
---|---|
permlink | re-brianoflondon-sv0jvw |
category | hive-110369 |
json_metadata | {"tags":["hive-110369"],"app":"peakd/2025.4.6","image":[],"users":[]} |
created | 2025-04-20 10:59:54 |
last_update | 2025-04-20 10:59:54 |
depth | 1 |
children | 2 |
last_payout | 2025-04-27 10:59:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.502 HBD |
curator_payout_value | 1.503 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 137 |
author_reputation | 207,069,606,942,377 |
root_title | "V4VApp update plus how to: MongodDB Replica Set on a local machine & Github Actions PyTest " |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 142,204,194 |
net_rshares | 8,563,021,829,304 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
brianoflondon | 0 | 8,563,021,829,304 | 100% | ||
endhivewatchers | 0 | 0 | -0.01% |
My system is only good for sats in the form of Lightning. If you can send as lightning to @v4vapp you can get Hive or HBD.
author | brianoflondon |
---|---|
permlink | re-cwow2-sv1012 |
category | hive-110369 |
json_metadata | {"tags":["hive-110369"],"app":"peakd/2025.4.6"} |
created | 2025-04-20 16:48:39 |
last_update | 2025-04-20 16:48:39 |
depth | 2 |
children | 1 |
last_payout | 2025-04-27 16:48:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.016 HBD |
curator_payout_value | 0.016 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 123 |
author_reputation | 759,674,214,959,955 |
root_title | "V4VApp update plus how to: MongodDB Replica Set on a local machine & Github Actions PyTest " |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 142,210,471 |
net_rshares | 95,527,908,102 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cwow2 | 0 | 95,527,908,102 | 25% |
Dude, I don't fking know these things haha :D I am so bad at crypto in generel its a laugh. I am only on Hive xD
author | cwow2 |
---|---|
permlink | re-brianoflondon-sv11ub |
category | hive-110369 |
json_metadata | {"tags":["hive-110369"],"app":"peakd/2025.4.6","image":[],"users":[]} |
created | 2025-04-20 17:27:48 |
last_update | 2025-04-20 17:27:48 |
depth | 3 |
children | 0 |
last_payout | 2025-04-27 17:27:48 |
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 | 113 |
author_reputation | 207,069,606,942,377 |
root_title | "V4VApp update plus how to: MongodDB Replica Set on a local machine & Github Actions PyTest " |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 142,210,970 |
net_rshares | 0 |
You've been quiet lately, so I figured you must be busy both in the real world and on the back end of things. It was good to get an update on what's been going on. Cheers!
author | epodcaster |
---|---|
permlink | re-brianoflondon-sv4mgt |
category | hive-110369 |
json_metadata | {"tags":["hive-110369"],"app":"peakd/2025.4.6","image":[],"users":[]} |
created | 2025-04-22 15:46:06 |
last_update | 2025-04-22 15:46:06 |
depth | 1 |
children | 1 |
last_payout | 2025-04-29 15:46:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.294 HBD |
curator_payout_value | 1.295 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 171 |
author_reputation | 49,498,520,148,425 |
root_title | "V4VApp update plus how to: MongodDB Replica Set on a local machine & Github Actions PyTest " |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 142,249,217 |
net_rshares | 7,370,836,873,738 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
brianoflondon | 0 | 7,370,836,873,738 | 100% |
Building!<div><a href="https://engage.hivechain.app"></a></div>
author | brianoflondon |
---|---|
permlink | re-1745386746320 |
category | hive-110369 |
json_metadata | {"app":"engage"} |
created | 2025-04-23 05:39:06 |
last_update | 2025-04-23 05:39:06 |
depth | 2 |
children | 0 |
last_payout | 2025-04-30 05:39:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.016 HBD |
curator_payout_value | 0.016 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 99 |
author_reputation | 759,674,214,959,955 |
root_title | "V4VApp update plus how to: MongodDB Replica Set on a local machine & Github Actions PyTest " |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 142,264,731 |
net_rshares | 94,284,927,718 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
epodcaster | 0 | 94,284,927,718 | 100% |
Keep up the good work πͺ sir and a big thank you on engaging in our post by upvoting. This project will surely be of benefit to everyone... welldone π
author | nellybestie |
---|---|
permlink | re-brianoflondon-2025420t1379721z |
category | hive-110369 |
json_metadata | {"type":"comment","tags":["hive-110369","v4vapp","python","github","docker","leofinance","proofofbrain","mongodb","replicasets"],"app":"ecency/3.3.0-mobile","format":"markdown+html"} |
created | 2025-04-20 12:07:09 |
last_update | 2025-04-20 12:07:09 |
depth | 1 |
children | 0 |
last_payout | 2025-04-27 12:07:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.774 HBD |
curator_payout_value | 0.775 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 150 |
author_reputation | 12,737,339,403,933 |
root_title | "V4VApp update plus how to: MongodDB Replica Set on a local machine & Github Actions PyTest " |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 142,205,042 |
net_rshares | 4,411,932,205,474 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
brianoflondon | 0 | 4,411,932,205,474 | 50% |
Hi is the site down ATM....? I just tried pasting in my lightening address but can't figure out any way to enter an amount...? In Send currency? I know there are changes/ new integrations on the way...
author | revisesociology |
---|---|
permlink | re-brianoflondon-swp86f |
category | hive-110369 |
json_metadata | {"tags":["hive-110369"],"app":"peakd/2025.5.7","image":[],"users":[]} |
created | 2025-05-23 05:20:42 |
last_update | 2025-05-23 05:20:42 |
depth | 1 |
children | 0 |
last_payout | 2025-05-30 05:20: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 | 203 |
author_reputation | 2,259,716,985,207,714 |
root_title | "V4VApp update plus how to: MongodDB Replica Set on a local machine & Github Actions PyTest " |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 142,912,990 |
net_rshares | 0 |
I voted for proposals. I hope it gets the votes it deserves. VSC will greatly facilitate the hive ecosystem.
author | tht |
---|---|
permlink | sv0utb |
category | hive-110369 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2025-04-20 14:56:00 |
last_update | 2025-04-20 14:56:00 |
depth | 1 |
children | 0 |
last_payout | 2025-04-27 14:56:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.802 HBD |
curator_payout_value | 0.803 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 109 |
author_reputation | 107,807,724,217,243 |
root_title | "V4VApp update plus how to: MongodDB Replica Set on a local machine & Github Actions PyTest " |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 142,207,521 |
net_rshares | 4,546,445,718,148 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
brianoflondon | 0 | 4,546,445,718,148 | 51% |