| 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 = 1437; |
||
| 38 | $this->name = 'Zcash'; |
||
| 39 | $this->symbol = 'ZEC'; |
||
| 40 | $this->type = 'coin'; |
||
| 41 | $this->mineable = true; |
||
| 42 | $this->description = 'Launched in 2016 by Zooko Wilcox-O\'Hearn and based on the Zerocoin protocol, Zcash is a decentralized and open - source privacy - focused cryptocurrency that enables selective transparency of transactions . Zcash transactions can either be transparent or shielded through a zero - knowledge proof called zk - SNARKs. This allows the network to maintain a secure ledger of balances without disclosing the parties or amounts involved. Instead of publishing spend - authority and transaction values, the transaction metadata is encrypted and zk - SNARKs are used to prove that nobody is being dishonest.'; |
||
| 43 | $this->website = [ |
||
| 44 | 'https://z.cash', |
||
| 45 | ]; |
||
| 46 | $this->explorer = [ |
||
| 47 | 'https://api.zcha.in/v2/mainnet/accounts/%s', |
||
| 48 | 'https://zcash.tokenview.com', |
||
| 49 | ]; |
||
| 50 | $this->source_code = [ |
||
| 51 | 'https://github.com/zcash/zcash', |
||
| 52 | ]; |
||
| 53 | |||
| 54 | return $this; |
||
| 55 | } |
||
| 57 |