2025-01-12 15:15:53 -06:00
|
|
|
import Link from 'next/link'
|
|
|
|
import Info from '.'
|
|
|
|
|
|
|
|
export default function RewardSatsInfo (props) {
|
|
|
|
return (
|
|
|
|
<Info {...props}>
|
|
|
|
<h6>Where did my sats come from?</h6>
|
|
|
|
<ul className='line-height-md'>
|
|
|
|
<li>you may have sats from before <Link href='/items/835465'>SN went not-custodial</Link></li>
|
2025-01-12 15:47:21 -06:00
|
|
|
<li>sats also come from <Link href='/rewards'>daily rewards</Link> and territory revenue
|
2025-01-12 15:15:53 -06:00
|
|
|
<ul>
|
|
|
|
<li>you can configure these sats to autowithdraw by attaching an <Link href='/wallets'>external receiving wallet</Link></li>
|
|
|
|
</ul>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</Info>
|
|
|
|
)
|
|
|
|
}
|