Skip to content
Snippets Groups Projects
WalletCommon.php 331 B
Newer Older
  • Learn to ignore specific revisions
  • <?php
    
    namespace Monero;
    
    interface WalletCommon
    {
        public static function digitsAfterTheRadixPoint() : int;
        public function getPaymentAddress();
        public function scanIncomingTransfers($min_height = 0);
        public function blockHeight() : int;
        public function createQrCodeString($address, $amount = null) : string;
    }