Search content
Sort by

Showing 20 of 1,041 results by irsada
Post
Topic
Board Service Discussion
Re: Promotion service required for a referral matrix platform
by
irsada
on 24/05/2023, 12:32:22 UTC
I do not know if referral matrix based websites are allowed here. But if they are allowed here then I am looking for Campaign Managers. If you want to check website then comment or DM and I will share.

If this is not appropriate section for this request then let me know where to move this topic.

If I may ask, what are "referral matrix websites"? Is it something like this that Bestchange does, who work as monitoring exchangers, but take profit from referrals who use other services through them?
Anyway, if this business is not illegal, there is no problem to start talking about them. I would recommend Royse777 as campaign manager, he is quite open to innovations in running campaigns.

The business that works like ponzi. Referral schemes where old users get paid through new users sign up
Post
Topic
Board Service Discussion
Topic OP
Promotion service required for a referral matrix platform
by
irsada
on 24/05/2023, 05:18:01 UTC
I do not know if referral matrix based websites are allowed here. But if they are allowed here then I am looking for Campaign Managers. If you want to check website then comment or DM and I will share.

If this is not appropriate section for this request then let me know where to move this topic.
Post
Topic
Board Other languages/locations
Re: Pakistan
by
irsada
on 24/05/2023, 05:10:12 UTC
Can anyone help me promote a referral based website? I am building a team. If anyone is interested then you can dm me. Thanks
Post
Topic
Board Services
Re: [FOR HIRE] Community manager and promoter
by
irsada
on 18/02/2023, 19:52:10 UTC
What kind of services can you provide for a casino project?
Post
Topic
Board Gambling
Re: Rollbit.com | Crypto's Most Rewarding Casino 👑
by
irsada
on 12/02/2023, 19:32:51 UTC
Hello, 8 days ago i made a withdrawal, and it was on hold, each of the day support was telling me thats all ok, money will come soon,  today i received a message  “You were banned for Sportsbook abuse”. They denied to give me back my deposit. Reporting this blatantly scam case here so people would be aware to play on this casino. And waiting for an answer from rollbit representative here. They basically scammed me on mu deposit

How much money did you withdrawn? Which was pending?
And according to your opinion what kind of Sportsbook abuse you have done which they are mentioning?
Post
Topic
Board Español (Spanish)
Re: Cierre anunciado de Localbitcoins
by
irsada
on 12/02/2023, 19:29:20 UTC
Sí, de hecho es muy triste verlos irse. Pero la razón principal de su cierre es KYC y su competidor Binance. Binance tiene muchas más funciones que Localbitcoins. Pero nuevamente es muy triste verlos irse después de 10 años de servicio.
Post
Topic
Board العربية (Arabic)
Re: وداعاً منصة LocalBitcoins
by
irsada
on 12/02/2023, 19:27:19 UTC
نعم ، إنه لأمر محزن حقًا أن نراهم يذهبون. لكن السبب الرئيسي لإغلاقها هو KYC ومنافستها Binance. لدى Binance ميزات أكثر بكثير من Localbitcoins. لكن مرة أخرى ، من المحزن للغاية رؤيتهم يذهبون بعد 10 سنوات من الخدمة.
Post
Topic
Board Development & Technical Discussion
Re: Python based Solo miner for CPU | Learn Basic Bitcoin Mining | Just for fun
by
irsada
on 10/02/2023, 18:44:34 UTC
Quote
My quick search your code might be based on one of these repository,
https://github.com/iceland2k14/solominer
https://github.com/Pymmdrza/SoloMiner


Yeah I guess its from iceland with few modifications.

Quote
This only applies to Python 2, your code is in Python 3.
Yes but this code was initially written for Python 2.7 so I described that method. For python3 users can directly import as suggested by @witcher_sense. And usually people don't get missing dependecy errors in Python3 as it comes with multiple pre installed libraries.
For python3 pip3 install works fine in many cases.
Post
Topic
Board Development & Technical Discussion
Merits 12 from 4 users
Topic OP
Python based Solo miner for CPU | Learn Basic Bitcoin Mining | Just for fun
by
irsada
on 09/02/2023, 20:20:06 UTC
⭐ Merited by NotATether (5) ,Nexus9090 (5) ,iwantmyhomepaidwithbtc2 (1) ,vapourminer (1)
Hello Bitcoiners

I want to share a python based solo bitcoin miner which uses ckpool. You can use other pools as well if you want. It is basically like a lottery which has extremly low chances to win but it can be used as a proof of concept. Maybe it has already been shared somewhere and I do not remember its true origin so cannot give proper reference.
You can make changes as you want. This code can help users understand true basics of mining bitcoins.
Installing Dependencies
You must have python. Try with old versions first.
Install dependencies with
Code:
pip install hashlib
pip install binascii
If any dependency is missing you can use pip install DependencyName.

Code
Code:
# -*- coding: utf-8 -*-

import socket
import json
import hashlib
import binascii
from pprint import pprint
import random


address = 'YourBitcoinAddress'
nonce   = hex(random.randint(0,2**32-1))[2:].zfill(8)
host    = 'solo.ckpool.org'
port    = 3333
#host    = 'pool.mainnet.bitcoin-global.io'
#port    = 9223

def main():
    print("address:{} nonce:{}".format(address,nonce))
    print("host:{} port:{}".format(host,port))
   
    sock    = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
    sock.connect((host,port))
   
    #server connection
    sock.sendall(b'{"id": 1, "method": "mining.subscribe", "params": []}\n')
    lines = sock.recv(1024).decode().split('\n')
    response = json.loads(lines[0])
    sub_details,extranonce1,extranonce2_size = response['result']
   
    #authorize workers
    sock.sendall(b'{"params": ["'+address.encode()+b'", "password"], "id": 2, "method": "mining.authorize"}\n')
   
    #we read until 'mining.notify' is reached
    response = b''
    while response.count(b'\n') < 4 and not(b'mining.notify' in response):
        response += sock.recv(1024)
   
   
    #get rid of empty lines
    responses = [json.loads(res) for res in response.decode().split('\n') if len(res.strip())>0 and 'mining.notify' in res]
    pprint(responses)
   
    job_id,prevhash,coinb1,coinb2,merkle_branch,version,nbits,ntime,clean_jobs \
        = responses[0]['params']
   
    target = (nbits[2:]+'00'*(int(nbits[:2],16) - 3)).zfill(64)
    print('nbits:{} target:{}\n'.format(nbits,target))
   
    # extranonce2 = '00'*extranonce2_size
    extranonce2 = hex(random.randint(0,2**32-1))[2:].zfill(2*extranonce2_size)      # create random
   
    coinbase = coinb1 + extranonce1 + extranonce2 + coinb2
    coinbase_hash_bin = hashlib.sha256(hashlib.sha256(binascii.unhexlify(coinbase)).digest()).digest()
   
    print('coinbase:\n{}\n\ncoinbase hash:{}\n'.format(coinbase,binascii.hexlify(coinbase_hash_bin)))
    merkle_root = coinbase_hash_bin
    for h in merkle_branch:
        merkle_root = hashlib.sha256(hashlib.sha256(merkle_root + binascii.unhexlify(h)).digest()).digest()
   
    merkle_root = binascii.hexlify(merkle_root).decode()
   
    #little endian
    merkle_root = ''.join([merkle_root[i]+merkle_root[i+1] for i in range(0,len(merkle_root),2)][::-1])
   
    print('merkle_root:{}\n'.format(merkle_root))
   
    def noncework():
        nonce   = hex(random.randint(0,2**32-1))[2:].zfill(8)   #hex(int(nonce,16)+1)[2:]
        blockheader = version + prevhash + merkle_root + nbits + ntime + nonce +\
            '000000800000000000000000000000000000000000000000000000000000000000000000000000000000000080020000'
       
    #    print('blockheader:\n{}\n'.format(blockheader))
       
        hash = hashlib.sha256(hashlib.sha256(binascii.unhexlify(blockheader)).digest()).digest()
        hash = binascii.hexlify(hash).decode()
        # print('hash: {}'.format(hash))
        if(hash[:5] == '00000'): print('hash: {}'.format(hash))
        if hash < target :
    #    if(hash[:10] == '0000000000'):
            print('success!!')
            print('hash: {}'.format(hash))
            payload = bytes('{"params": ["'+address+'", "'+job_id+'", "'+extranonce2 \
                +'", "'+ntime+'", "'+nonce+'"], "id": 1, "method": "mining.submit"}\n', 'utf-8')
            sock.sendall(payload)
            print(sock.recv(1024))
            input("Press Enter to continue...")
    #    else:
    #        print('failed mine, hash is greater than target')
   
    for k in range(10000000):
        noncework()
    print("Finished 10M Search. Regaining Information.")
    sock.close()
    main()

main()



Edit Code
You can edit code. Set your Bitcoin address to receive your mining rewards. Set pool host and port. Save code in a .py file.
One of popular solo pool is solo.ckpool.org which has low fee of like 2%. You get 98% of your mining reward.

Run Code
You can run code by opening command prompt in same folder of file and run command
Code:
python FileName.py


Missing Dependencies and errors
As decribed above you can use pip install command to install any missing dependency. You can google errors and still if you did not find solution maybe your python version is not compatible. Try changing python version.

Future Work
If you improve this code then share here so others can benefit as well and I will update this code as well.


Honor List for Code Improvers
  • 1.
  • 2.
  • 3.


Tribute
I want to pay tribute to original author of this code. I am not original author.
Post
Topic
Board Bounties (Altcoins)
Re: [OPEN]Biswap.org (BSW) Signature Campaign |Binance +6 more exchange |Up to $90/w
by
irsada
on 02/02/2023, 15:32:28 UTC
Current number of post (Including this one): 1006
Current Rank: Full member
Minimum Rank you are okay to enroll: Member
BEP20 address: 0xFA72c28e17549F99F3f26d22DA93fCFB0D5cdA24
Merit earned in the last 120 days: 5
Post
Topic
Board Marketplace (Altcoins)
Re: Pi mainnet
by
irsada
on 26/01/2023, 12:55:27 UTC
Rate pi 0.27
Post
Topic
Board Marketplace (Altcoins)
Re: Pi mainnet
by
irsada
on 31/12/2022, 07:20:40 UTC
Rate pi 0.42
Post
Topic
Board Marketplace (Altcoins)
Re: Pi mainnet
by
irsada
on 22/12/2022, 10:42:43 UTC
Do you want to buy it? There's this guy that has posted that he wants to sell this token.
(https://bitcointalk.org/index.php?topic=5430063.0)

Alright, tanks bro
Post
Topic
Board Service Discussion (Altcoins)
Re: I want to sell pi network mainnet
by
irsada
on 22/12/2022, 10:29:10 UTC
where can I make an offer to exchange tokens that are not yet listed?? with fiat or bitcoin?? for sale and purchase, is it possible here? Or board other?

I can buy with busd/usdt.
rate 0.21 now
if interested pm me here or telegram me @irsadagustiar
Post
Topic
Board Marketplace (Altcoins)
Re: Pi mainnet
by
irsada
on 21/12/2022, 12:27:32 UTC
Rate pi 0.2
Post
Topic
Board Marketplace (Altcoins)
Re: Pi mainnet
by
irsada
on 12/12/2022, 16:38:23 UTC
even if that coin is going to be launched soon let's say this month the price will drop significantly under 10 cents because there's no plans to keep the price alive or any good project on this token. Many are already saying it's scam which most likely is true

launching and trading pi has been announced for years, but still, nothing has happened. I think they should rebrand and call it "Soon Pi".
It's not most likely, It's definitely a scam.

Iam initiating a trade with him. Will update how it went. Buyer please confirm.

I will send busd if the transaction has been received.


Deal went smooth. Trade completed.

You can't give us any proof that it happened. even if there was a miserable trade between two Pi fanatics, that doesn't change the matter or make the whole joke serious.
He sent in increments a total of 577 pi rate 0.21.
I pay with busd.
You can check transactions here https://minepi.com/blockexplorer/account/GDMKUH5WG4DO3XM6G6SIWETQUIB6YAUMIOGNJTRJ75J6Q7SJWFH5MM24#transactions
Post
Topic
Board Marketplace (Altcoins)
Re: Pi mainnet
by
irsada
on 12/12/2022, 07:21:34 UTC
Iam initiating a trade with him. Will update how it went. Buyer please confirm.

I will send busd if the transaction has been received.
Post
Topic
Board Marketplace (Altcoins)
Re: Pi mainnet
by
irsada
on 06/11/2022, 06:43:40 UTC
Rate Pi 0.15
Have you gone? What about pi price? You have not yet updated it. I do believe if the price came from your imagination but one thing that makes me doubt if the price was even going down and down. There are some shillers in another section tried to promote this scam coin. Shittt, bunch of people are still doing stupid thing by minting this scam coin. It's better if you can provide the date about where you get that price.

Can pm me on telegram if I haven't been active in the forum for a long time because I'm more active on telegram now,
rate pi 0.165
do you have a Pi available?
Post
Topic
Board Marketplace (Altcoins)
Re: Pi mainnet
by
irsada
on 16/10/2022, 11:46:23 UTC
Rate Pi 0.15
Post
Topic
Board Marketplace (Altcoins)
Re: Pi mainnet
by
irsada
on 07/09/2022, 13:39:15 UTC
1 Pi 0.22