mirror of
				https://git.wownero.com/wownero/wownero.git
				synced 2024-08-15 01:03:23 +00:00 
			
		
		
		
	wallet: feature: transfer amount with fee included
To transfer ~5 XMR to an address such that your balance drops by exactly 5 XMR, provide a `subtractfeefrom` flag to the `transfer` command. For example:
    transfer 76bDHojqFYiFCCYYtzTveJ8oFtmpNp3X1TgV2oKP7rHmZyFK1RvyE4r8vsJzf7SyNohMnbKT9wbcD3XUTgsZLX8LU5JBCfm 5 subtractfeefrom=all
If my walet balance was exactly 30 XMR before this transaction, it will be exactly 25 XMR afterwards and the destination address will receive slightly
less than 5 XMR. You can manually select which destinations fund the transaction fee and which ones do not by providing the destination index.
For example:
    transfer 75sr8AAr... 3 74M7W4eg... 4 7AbWqDZ6... 5 subtractfeefrom=0,2
This will drop your balance by exactly 12 XMR including fees and will spread the fee cost proportionally (3:5 ratio) over destinations with addresses
`75sr8AAr...` and `7AbWqDZ6...`, respectively.
Disclaimer: This feature was paid for by @LocalMonero.
			
			
This commit is contained in:
		
							parent
							
								
									8eab181fe1
								
							
						
					
					
						commit
						51d7a6921c
					
				
					 10 changed files with 405 additions and 43 deletions
				
			
		| 
						 | 
				
			
			@ -38,13 +38,14 @@ class Wallet(object):
 | 
			
		|||
        self.port = port
 | 
			
		||||
        self.rpc = JSONRPC('{protocol}://{host}:{port}'.format(protocol=protocol, host=host, port=port if port else 18090+idx))
 | 
			
		||||
 | 
			
		||||
    def transfer(self, destinations, account_index = 0, subaddr_indices = [], priority = 0, ring_size = 0, unlock_time = 0, payment_id = '', get_tx_key = True, do_not_relay = False, get_tx_hex = False, get_tx_metadata = False):
 | 
			
		||||
    def transfer(self, destinations, account_index = 0, subaddr_indices = [], priority = 0, ring_size = 0, unlock_time = 0, payment_id = '', get_tx_key = True, do_not_relay = False, get_tx_hex = False, get_tx_metadata = False, subtract_fee_from_outputs = []):
 | 
			
		||||
        transfer = {
 | 
			
		||||
            'method': 'transfer',
 | 
			
		||||
            'params': {
 | 
			
		||||
                'destinations': destinations,
 | 
			
		||||
                'account_index': account_index,
 | 
			
		||||
                'subaddr_indices': subaddr_indices,
 | 
			
		||||
                'subtract_fee_from_outputs': subtract_fee_from_outputs,
 | 
			
		||||
                'priority': priority,
 | 
			
		||||
                'ring_size' : ring_size,
 | 
			
		||||
                'unlock_time' : unlock_time,
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue