BitcoinLib.BlockchainAPI.Wallet.Send C# (CSharp) Method

Send() public method

Send bitcoin from your wallet to another bitcoin address. All transactions include a 0.0001 BTC miners fee if not set.
public Send ( string toAddress, long amount, string fromAddress = null, long fee = default(long?), string note = null ) : Info.Blockchain.API.Wallet.PaymentResponse
toAddress string Recipient Bitcoin Address.
amount long Amount to send in satoshi.
fromAddress string Send from a specific Bitcoin Address (Optional)
fee long Transaction fee value in satoshi (Must be greater than default fee) (Optional)
note string A public note to include with the transaction. Can only be attached when outputs are greater than 0.005 BTC. (Optional)
return Info.Blockchain.API.Wallet.PaymentResponse
        public PaymentResponse Send(string toAddress, long amount, string fromAddress = null, long? fee = default(long?), string note = null)
        {
            return BCw.Send(toAddress, amount, fromAddress, fee, note);
        }