This transaction did not succeed because the transaction was aborted during its execution

“This transaction did not succeed because the transaction was aborted during its execution.
" I will tryy this methods to deploy on contracts on Stack blockchain every time I failed this is show me issue “This transaction did not succeed because the transaction was aborted during its execution.” can’t deploy m contracts you can check it this is contracts I try many time every time same problem show me one time He deducted gas fees from my account this is my account address"SP33XEHK2SXXH625VG6W6665WBBPX1ENQVKNEYCYY” please help me out to solve this issue

I don’t see any recent contract deploys from that address. Can you share a txid from one of the failing transactions?

SPFW4FC89EBE0RZCK1M2Z1C7PPNBRNPGZK8JYY5H.MySIP10Token this is contracts address

SP85M7YZYMEP21XVMSZBT0AWFD92M9SS530A2WVY.MrBean this is contract address

SP85M7YZYMEP21XVMSZBT0AWFD92M9SS530A2WVY this is also contract address please check out is in stack explorer

Please do not interact with the spam above. No one honest will ask you to follow a link to open a support ticket.

I took a look at your contracts. I see the problem is that you are using the testnet address for the SIP-010 trait. You’ll want to use SP3FBR2AGK5H9QBDH3EEN6DF8EK8JY7RX8QJ5SVTE.sip-010-trait-ft-standard.sip-010-trait for mainnet.

this is contract SP178FH7378XQWRCJQKKT7VD2PZ90TCSKVMHKZ3DA.MySIP10Token

deploy
SP178FH7378XQWRCJQKKT7VD2PZ90TCSKVMHKZ3DA

this is smart contracts
;; title: Mr.Beans

;; traits
(impl-trait 'SP3FBR2AGK5H9QBDH3EEN6DF8EK8JY7RX8QJ5SVTE.sip-010-trait-ft-standard.sip-010-trait)

;; token definitions
(define-constant contract-owner tx-sender)
(define-constant err-owner-only (err u100))
(define-constant err-not-token-owner (err u101))
(define-fungible-token my-new-token)

;; constants

;; data vars

;; data maps

;; public functions
(define-public (mint (amount uint) (recipient principal))
(begin
(asserts! (is-eq tx-sender contract-owner) err-owner-only)
(ft-mint? my-new-token amount recipient)
)
)

(define-public (transfer (amount uint) (sender principal) (recipient principal) (memo (optional (buff 34))))
(begin
(asserts! (is-eq tx-sender sender) err-not-token-owner)
(try! (ft-transfer? my-new-token amount sender recipient))
(match memo to-print (print to-print) 0x)
(ok true)
)
)

;; read only functions
(define-read-only (get-name)
(ok “Mr. Beans”)
)

(define-read-only (get-symbol)
(ok “$MSTX”)
)

(define-read-only (get-decimals)
(ok u9)
)

(define-read-only (get-balance (who principal))
(ok (ft-get-balance my-new-token who))
)

(define-read-only (get-total-supply)
(ok u1000000000)
)

(define-read-only (get-token-uri)
(ok none)
)

;; private functions

same Issue I find please help me how can deploy the token on main net and please guide me further

image
this is picture of tx