mirror of
https://github.com/Permissionless-Software-Foundation/bch-dex.git
synced 2026-09-21 16:52:00 -07:00
27 lines
544 B
JavaScript
27 lines
544 B
JavaScript
class BchTokenSweepMock {
|
|
constructor(wif, privateKey, bchWallet, fee, cashAddress) {
|
|
this.wif = wif
|
|
this.privateKey = privateKey
|
|
this.bchWallet = bchWallet
|
|
this.fee = fee
|
|
this.cashAddress = cashAddress
|
|
}
|
|
populateObjectFromNetwork() {
|
|
return {
|
|
success: true,
|
|
txid: 'txid'
|
|
}
|
|
}
|
|
sweepTo() {
|
|
return {
|
|
success: true,
|
|
txid: 'txid'
|
|
}
|
|
}
|
|
}
|
|
|
|
export { BchTokenSweepMock }
|
|
|
|
export default {
|
|
BchTokenSweepMock
|
|
} |