mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-19 18:00:17 +01:00
14 lines
284 B
JavaScript
14 lines
284 B
JavaScript
export class BitcoinTransaction {
|
|
/**
|
|
*
|
|
* @param address
|
|
* @param amount {number}
|
|
* @param amountSats {integer} satoshi
|
|
*/
|
|
constructor(address = '', amount, amountSats) {
|
|
this.address = address;
|
|
this.amount = amount;
|
|
this.amountSats = amountSats;
|
|
}
|
|
}
|