```javascript=
// CURRENT
const quote = {
payin: {
currency: '',
amount: '',
fee: 'OPTIONAL',
},
payout: {
currency: '',
amount: '',
fee: 'OPTIONAL',
},
paymentInstructions: {
payin: {},
payout: {}
}
}
// PROPOSED
const newQuote = {
payin: {
currency: 'USD',
amount: '10.00',
fee: '0.32', // OPTIONAL
instructions: {}
},
payout: {
currency: 'BTC',
amount: '0.00027500',
fee: '0.0000001', // OPTIONAL
instructions: {}
}
}
// FEE DISCUSSION
const bleedingEdgeQuote = {
payin: {
currency: 'USD',
amount: '10.00',
instructions: {}
},
payout: {
currency: '',
amount: '',
instructions: {}
},
fees: [{
currencyCode: 'USD',
fee: '0.32'
}, {
currencyCode: 'BTC',
fee: ''
}]
}
```