Crypto Featured

Utah man sentenced to three years for fraud


Utah man has been sentenced to three years in prison for defrauding investors and operating an unlicensed business that converted millions in bulk cash into cryptocurrency, prosecutors said Thursday.

Brian Garry Sewell, 54, was sentenced to 36 months in prison and 36 months of supervised release after pleading guilty to wire fraud that cost investors more than $2.9 million.

In a separate case, he also pleaded guilty to operating an unlicensed money-transmitting business that converted more than $5.4 million in cash into cryptocurrency for third-party clients, including criminals involved in fraud and drug trafficking.

Both sentences will run concurrently, resulting in a total prison term of three years, according to a statement from the U.S. Attorney's Office for the District of Utah.

U.S. District Court Judge Ann Marie McIff Allen also ordered Sewell to pay $3,822,909 in total restitution. The sum includes $3,605,182 to defrauded investors, a mortgage lender, a credit union, and $217,727 to the U.S. Department of Homeland Security.

Did you find this tutorial helpful? Let us know!

About the Author
Jyri

Passionate about helping people create amazing websites for free. Sharing knowledge and tutorials to make web development accessible to everyone.

About this Category
Crypto

Learn about cryptocurrency, blockchain technology, and how to integrate crypto payments and features into your free websites. Discover wallets, exchanges, and crypto tools.

View Category

Discussion

Join the Discussion

Sign in to leave comments and connect with other website builders.

No comments yet

Be the first to share your thoughts about this tutorial!

Found This Tutorial Helpful?

Explore more free tutorials and guides to build amazing websites without spending a penny.

// Copy to clipboard function function copyToClipboard(text) { if (navigator.clipboard) { navigator.clipboard.writeText(text).then(() => { showAlert('Link copied to clipboard!', 'success', 2000); }); } else { // Fallback for older browsers const textArea = document.createElement('textarea'); textArea.value = text; document.body.appendChild(textArea); textArea.select(); document.execCommand('copy'); document.body.removeChild(textArea); showAlert('Link copied to clipboard!', 'success', 2000); } } // Reading progress indicator document.addEventListener('DOMContentLoaded', function() { const progressBar = document.createElement('div'); progressBar.style.cssText = ` position: fixed; top: 0; left: 0; width: 0%; height: 3px; background: #f59e0b; z-index: 9999; transition: width 0.1s ease; `; document.body.appendChild(progressBar); window.addEventListener('scroll', function() { const article = document.querySelector('.article-content'); if (article) { const articleTop = article.offsetTop; const articleHeight = article.offsetHeight; const scrollPosition = window.scrollY; const windowHeight = window.innerHeight; const start = articleTop - windowHeight; const end = articleTop + articleHeight; if (scrollPosition >= start && scrollPosition <= end) { const progress = ((scrollPosition - start) / (end - start)) * 100; progressBar.style.width = Math.min(100, Math.max(0, progress)) + '%'; } } }); });