ymgve / bitcoin_fork_claimer

Script for transferring/claiming your coins on various Bitcoin forks
202 stars 85 forks source link

Add support for Bitcoin File (BIFI) please #57

Closed fazlearefin closed 6 years ago

fazlearefin commented 6 years ago

Some exchanges have started accepting Bitcoin File (BIFI) deposits. Please add support for BIFI. BIFI repo has just been released a couple of days ago here https://github.com/bitcoinfile/bitcoinfile

Ghoom commented 6 years ago

class BitcoinFile(BitcoinFork): def init(self): BitcoinFork.init(self) self.ticker = "BIFI" self.fullname = "BitcoinFile" self.hardforkheight = 501225 self.magic = 0xd8c42ef8 self.port = 10698 self.seeds = ("dnsseed1.bitcoinfile.org", "dnsseed2.bitcoinfile.org", "dnsseed3.bitcoinfile.org", "dnsseed4.bitcoinfile.org", "dnsseed5.bitcoinfile.org", "dnsseed6.bitcoinfile.org", "dnsseed7.bitcoinfile.org", "dnsseed8.bitcoinfile.org", "dnsseed9.bitcoinfile.org") self.maketx = self.maketx_basicsig self.signtype = 0x01 self.signid = self.signtype self.txversion = 20 self.BCDgarbage = struct.pack("<I", 20) self.coinratio = 1000.0

fazlearefin commented 6 years ago

Thanks @Ghoom . The init function name needed to be modified to __init__ to make it work. I have submitted a pull request https://github.com/ymgve/bitcoin_fork_claimer/pull/60

For people trying to sell their useless BIFI, you can sell it at this exchange https://gate.io

ymgve commented 6 years ago

Merged into master branch now. Thanks!