| Conditions | 1 |
| Paths | 1 |
| Total Lines | 20 |
| Code Lines | 14 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 35 | public function build() |
||
| 36 | { |
||
| 37 | $this->id = 2222; |
||
| 38 | $this->name = 'Bitcoin Diamond'; |
||
| 39 | $this->symbol = 'BCD'; |
||
| 40 | $this->type = 'coin'; |
||
| 41 | $this->mineable = true; |
||
| 42 | $this->description = 'Bitcoin Diamond is a hard fork of Bitcoin. The fork occurring at at block height 495866, implemented changes including a new proof of work algorithm to deter attacks on the network and segregation of transaction signatures from transactions on the chain for additional capacity allowing a greater number of transactions per second on the network as a whole.'; |
||
| 43 | $this->website = [ |
||
| 44 | 'http://btcd.io/', |
||
| 45 | ]; |
||
| 46 | $this->explorer = [ |
||
| 47 | 'http://20.184.13.116/v2/addr/%s', |
||
| 48 | 'http://explorer.btcd.io/', |
||
| 49 | ]; |
||
| 50 | $this->source_code = [ |
||
| 51 | 'https://github.com/eveybcd/BitcoinDiamond', |
||
| 52 | ]; |
||
| 53 | |||
| 54 | return $this; |
||
| 55 | } |
||
| 57 |