User Controls

Solving El Petro

  1. #21
    Ghost Black Hole
    Originally posted by RIPtotse Wow venezuala is now making their own crypto welfare system

    What retarded move will they think of next

    They have already had it for years lmao stay mad capitalist scum, a venezuelean soldier will soon be wiping your chunks of skull and brain off the bottom of his boots

    Originally posted by RIPtotse Dude stop hoping and wondering and read albert pikes manifesto. They been here forever and the 'invasion' will be a false flag event to unite the world under one government for 'protection' from the spooky aliens. Pike is 2/3 in world war predictions so…im not a betting man but if i was

    YEAH MAN TOTALLY xD

    Originally posted by aldra no, the point was to protect their state petroleum industry from foreign interference

    So here's the thing, The PetroAPP you can sign up, anyone can make a wallet basically they have no restrictions on that, you can send money, bitcoin, etc to the wallet, works fine.

    You can swap inside the wallet but you cannot withdraw. So basically they take bitcoin, only let you use PETRO and BOLIVAR I bet they have millions worth of BTC and have been doing this for a while, for years. It's a pretty smart system on their part. Bitcoin only moves 1 way towards them.

    There are other reasons why this is important, all I can say is there are other crypto not mentioned here that is popular used for underground economy stuff that is specifically used/supported in this ecosystem so it's also promoting that sphere
    I have read A LOT of internal documents translated from spanish and they have big plans for all this which is why it's built the way it is.

    Also I found out petro was heavily based off Z infastructure which seems to be not publicized at all, they are trying to hide that which is why I have 10 different OFFICIAL whitepapers all saying different things but the github I found says something totally different and seems to be the most likely.

    All that being said, America is FUCKED yall gonna get SHITFUCKED by commies and the world will help them, fuck yall





  2. #22
    Ghost Black Hole
    it's not "oh maybe one day they will have this ready"

    it has been used for YEARS literally all of south america uses crypto and banks fully support it there

    meanwhile in the USA.... retards!
  3. #23
    Ghost Black Hole
    WAIT A SEC YOU CAN'T JUST SWAP A PETRO FOR BNB THAT GOES AGAINST US SANCTIONS


    jaja el dinero falso de internet va brrrrrr

  4. #24
    Ghost Black Hole
    This code is a part of a Go (golang) program. The code appears to be implementing a function that writes a list of authors to a file. The function does the following steps:

    Create two maps: "merge" and "dedup"
    Extract a list of authors from a Git repository by calling the "gitAuthors" function and add those authors to the "merge" map and the "list" slice. The "dedup" map is used to deduplicate the authors in the "list" slice so that no author appears multiple times.
    Read the existing list of authors from a file by calling the "readAuthors" function and add those authors to the "merge" map.
    Sort the result set of all authors in the "merge" map and write the sorted list of authors to the file.

    The code also has some commented out code that was possibly used for a different implementation.


     "-275,27 +275,32 @@ func mailmapLookup(authors []string) []string {
    }

    func writeAuthors(files []string) {
    merge := make(map[string]bool)
    var (
    dedup = make(map[string]bool)
    list []string
    )
    // Add authors that Git reports as contributors.
    // This is the primary source of author information.
    for _, a := range gitAuthors(files) {
    merge[a] = true
    if la := strings.ToLower(a); !dedup[la] {
    list = append(list, a)
    dedup[la] = true
    }
    }
    // Add existing authors from the file. This should ensure that we
    // never lose authors, even if Git stops listing them. We can also
    // add authors manually this way.
    for _, a := range readAuthors() {
    merge[a] = true
    if la := strings.ToLower(a); !dedup[la] {
    list = append(list, a)
    dedup[la] = true
    }
    }
    // Write sorted list of authors back to the file.
    var result []string
    for a := range merge {
    result = append(result, a)
    }
    sort.Sort(authors(result))
    sort.Sort(authors(list))
    content := new(bytes.Buffer)
    content.WriteString(authorsFileHeader)
    for _, a := range result {
    for _, a := range list {
    content.WriteString(a)
    content.WriteString("\n")
    }"




    https://github.com/rotki/rotki
    https://github.com/kvhnuke/bsc-tokens

    wut u fink star trek

    The code snippets you have mentioned appear to be a part of a Go language implementation for a peer-to-peer (p2p) Ethereum network. The code appears to be dealing with various aspects of p2p network operations, such as network communication, node discovery, ENR (Ethereum Node Records) management, etc.

    It is possible to implement a p2p Ethereum wallet using these code snippets, although they likely represent only a small part of the complete implementation. Such wallets allow users to interact directly with the Ethereum network without the need for a centralized entity to act as an intermediary. This can provide users with greater control over their funds and increase privacy, as all transactions are conducted directly between nodes on the network.

    Peer-to-peer Ethereum wallets have become increasingly popular in recent years as more people seek to take control of their finances and be their own bank. There are a number of well-known p2p Ethereum wallets available, including MyEtherWallet, MetaMask, and Gnosis Safe, to name a few.

    is this a common type of code found in MEW forks? "https://github.com/kvhnuke/bsc-tokens/commit/e231d52b2f7908915b2edc40d844fb2eb2d75ae3#diff-a14e9b9c7da31a34fbf00332b1633614203c9deb18afef9d6dc619ca144e0513

    It is not common to find this type of code in MyEtherWallet forks. The code you linked to is from a repository that appears to be for tracking BSC (Binance Smart Chain) tokens, not for MyEtherWallet. MyEtherWallet is a free, open-source, client-side interface for creating, managing, and interacting with Ethereum wallets. This code, on the other hand, is related to a different blockchain and its associated tokens.

    looks same no?



  5. #25
    Ghost Black Hole
    ding ding

    Is there any other kind of program out there with similar functions of intercting with both chains in a single client?

    Yes, there are other programs that are designed to interact with both the Ethereum and Binance Smart Chain networks in a single client. For example, MetaMask is a browser extension that allows users to access Ethereum and Binance Smart Chain networks from within their browser. Additionally, DappRadar is a platform that provides tools for developers to build and manage decentralized applications on both the Ethereum and Binance Smart Chain networks. Finally, MyEtherWallet is a web-based wallet that allows users to interact with both blockchain networks in one place.
  6. #26
    Ghost Black Hole
    ever heard of metamask
  7. #27
    Ghost Black Hole
    Originally posted by Ghost SOLVING MYSTERIES HOLY FUCK FUCYTYS

    Yes, if you look closer at "https://github.com/kvhnuke/bsc-tokens", you will see that the project is mostly related to Ethereum smart contracts, not Binance Smart Chain. The project includes a variety of functions related to Ethereum smart contracts, such as creating, deploying, and interacting with smart contracts. Additionally, the project contains code for interacting with the Ethereum blockchain, such as reading transaction data, submitting transactions, and interacting with events.
    what does it do with this data besides that?




    is there any evidence that it's being used in rotki?



    is that a normal function of Binance Smart Chain or is that only because it's using the Ethereum codebase with that name?



    The rotki is built on top of Ethereum? How is it able to do both Binance and Ethereum in one client?



    Is there any other kind of program out there with similar functions of intercting with both chains in a single client?

    https://github.com/lochaorg/etherwallet


    lochaorg

    https://github.com/lochaorg



  8. #28
    Ghost Black Hole
    https://coinomi.freshdesk.com/support/solutions/articles/29000039739-c%C3%B3mo-acceder-a-los-tokens-bep20-access-bep20-

    Ethereum and Ethereum token wallets can only display transactions on the Ethereum network. The "Binance Smart Chain" (BEP20) is not Ethereum and cannot send real ETH or real Ethereum tokens. If you sent any BEP20 transactions to your Ethereum address, please follow the instructions below:


    Open the page https://iancoleman.io/bip39/

    For safety, please turn off the internet from your device so that you are completely offline

    At the top of the page, enter all the words of your Coinomi recovery phrase

    In the "Currency" option, select "Ethereum

    Scroll down to the "Bypass Path" section of the page and select "BIP32".

    In the "Customer" option, select "Coinomi, Ledger"

    Scroll down to the list of addresses on the page. If you entered the correct details above, the first address will be your Ethereum address on Coinomi. If not, please reload the page and start the instructions again.

    To the right of the address you will see your public key, then your private key. Copy the private key

    Install the Trust Wallet app

    Select "I already have a wallet", then "Smart Chain", then "Private Key"

    Paste the private key you copied in step 8 there and confirm.

    Close the page opened in step 1

    Done, this will give you access to the assets received on the BEP20 network and you will be able to send them back to the exchange so you can use the correct network.



    To avoid further issues, only receive Ethereum and Ethereum tokens using the Ethereum (ERC20) network. Receive Bitcoin only on the BTC network. Other networks are not Ethereum or Bitcoin and will not appear in your wallet


    lmao!
    Install the Trust Wallet app

    Select "I already have a wallet", then "Smart Chain", then "Private Key"

    Paste the private key you copied in step 8 there and confirm.

    Close the page opened in step 1

    Done, this will give you access to the assets received on the BEP20 network and you will be able to send them back to the exchange so you can use the correct network.
    COINAMI BY THE WAY
    Originally posted by Ghost
  9. #29
    Twinkie the kid Tuskegee Airman
    The media can't decide if they are supposed to be living in the dark & poverty, sanctions are TOTALLY working!



    Or if they are building the fucking AI communist skynet

    https://www.vice.com/en/article/z34jge/venezuela-ai-newscaster-disinformation

  10. #30
    Twinkie the kid Tuskegee Airman
    When the world bans crypto what happens to the world that is building with it?

  11. #31
    aldra JIDF Controlled Opposition
    Originally posted by Twinkie the kid When the world bans crypto what happens to the world that is building with it?

    state-controlled intranets with tightly controlled interstate gateways
  12. #32
    Twinkie the kid Tuskegee Airman
    Where the FUCK does all the PETRO go? I have checked every legal/illegal exchange out there and nobody will touch it, nobody talks about it. It's a ghost, no info anywhere unless you REALLY go digging.

    There are lots of big banks in Venezuela, you can register a business there as a foreigner and there are Crypto exchanges throughout South America, still ZERO info about "Trading petro" despite it being a horrible nazi scam coin forced onto these poor people. Their system is obviously a global funnel vacuum for BITCOIN and other PoW coins (they don't touch ETH for some reason)

    Why even use the crypto? They still have Bolivars but do all this development for crypto stuff, they have a pro crypto department that works with governments all over south America... so they can just give it to welfare people and sit on it? The most effort seems to go into keeping this a "secret" from the west and preventing anyone without a Venezuelan ID from interacting with it.

    and that's it. Nobody even uses it, they just use BTC or DASH which are also encouraged by the government
    NOT ANOTHER NIGHT OF THE SHITABYSS

    They don't have public API. This is just a communist version of visa/mastercard I guess


    they also make rip off NFT's and forked it several times to make petro alts for healthcare and other sectors..?? the fuck are they doing


    does that say MONDERO like MONERO ?

    the fuck is a mondero
    https://elpais.com/politica/2015/01/20/actualidad/1421789190_331983.html

    Que
    Monedero received 425,000 euros for advising Venezuela and its partners
    The leader allocated the funds to set up a political gathering in Spain

    “Hugo Chávez taught us to respect Latin America”
    The Spanish Juan Carlos Monedero, professor of Political Science at the Complutense, has been his presidential adviser for nine years

    Bio pago is a biometric medical app that uses crypto I think. Spanish is also WAY more popular than Chinese, anyone that learns chink is a retard, everyone is learning spanish right now
  13. #33
    Twinkie the kid Tuskegee Airman
    huh?????
    i have never seen a date on money. Every crypto place just deals in bolivars


    I wasn't even looking at their money, I think they might just be retarded and getting lucky with this crypto thing because holy shit waht the fuck

    there has been like 7 types of bolivars and there's already petro forks.
    They are actual skitzos this I guess it's better than having your country AMERICA'd

  14. #34
    Twinkie the kid Tuskegee Airman
    Why is google only taking BsS when they currently use BsD or petro???? How the fuck does that make any sense
  15. #35
    BRUH



  16. #36
    Banana Muffin Mix Tuskegee Airman [your disgracefully climbable neckwear]
    el petro, re re launching ON ANOTHER CHAIN thats the third or fourth time now.

    Reconfirming my theory that they relaunch the "coin" every few years on a new chain to prevent crackdowns

    https://drive.proton.me/urls/RXQXWNQ85W#WCRCbUk96G6x

    Originally posted by Twinkie the kid they also make rip off NFT's and forked it several times to make petro alts for healthcare and other sectors..?? the fuck are they doing

    Originally posted by Ghost Initially they were using another chain called NEO, and then actually had a sale but sold ETH tokens, and came back again with another PoW X11 that had the same supply as the old ones?????
  17. #37
  18. #38
    totse2118 Space Nigga [my ci light-haired pongee]
    They are gonna take all your bitcoins lolololol


    https://www.bbc.com/news/world-us-canada-66875264
    Venezuelans seeking asylum in the US who are already living in the country will be allowed to work legally under new rules announced by the Biden administration.

    About 472,000 people will be eligible for Temporary Protected Status (TPS) for a period of 18 months.

    It follows calls by Democrats to expand work access for newly-arrived migrants.

    US cities have been grappling with large numbers fleeing economic and political turmoil in Venezuela.

    it's funny because Venezuela probably has more cryptocurrency in reserve than most European or first world nations. Not the people but the government itself DOES NOT ALLOW BITCOIN WITHDRAWING you can only convert it to el petro or bolivares cash


  19. #39
    Prometheus Houston
  20. #40
    Ask yourself this; why would a country that's supposedly crashing and burning with a failed currency do this? Why would they want more land if all their people are poor and their money is worthless

    The answer is because that's all a lie. Venezuela has never been stronger. They have been evading global sanctions for decades and have the largest stores of cryptocurrency on the the planet.

    They are like Germany pre WW2 after Hitler took power and the economy had massive growth and then stagnation. Venezuela is probably at its growth limits with what they can do as a rogue state

    But this changes everything, if they take this land which i suspect they will, they could end up becoming a superpower similar to korea or Japan.

    https://amp.theguardian.com/world/2023/dec/03/tensions-rise-as-venezuelans-vote-on-disputed-territory-in-neighbouring-guyana

    I've got my el Petro wallet folx. These communists are on track for global economic victory
Jump to Top