Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
metropolite
/
wp-content
/
plugins
/
mycryptocheckout
/
vendor
/
bitwasp
/
bitcoin
/
src
/
Transaction
:
TransactionOutputInterface.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace BitWasp\Bitcoin\Transaction; use BitWasp\Bitcoin\Script\ScriptInterface; use BitWasp\Bitcoin\SerializableInterface; interface TransactionOutputInterface extends SerializableInterface { /** * Get the value of this output * * @return int */ public function getValue(); /** * Get the script for this output * * @return ScriptInterface */ public function getScript(); /** * @param TransactionOutputInterface $output * @return bool */ public function equals(TransactionOutputInterface $output); }