tradeport-comission-wastelander-v4

SP1A32MBZDN1B28ZT5DH6MA739VJ0BFH05CJHCM8W

Source Code

;; tradeport-project-indigo-comission-wastelander-v4
(define-public (pay (id uint) (price uint)) 
    (begin 
        ;; Tradeport (2.5%)
        (try! (stx-transfer? (/ (* price u250) u10000) tx-sender 'SP2KAF9RF86PVX3NEE27DFV1CQX0T4WGR41X3S45C))

        ;; Team (5%)
        ;; Jon (2%)
        (try! (stx-transfer? (/ (* price u200) u10000) tx-sender 'SP18J677R5GRD7EKK0S096WVQW19SDPWTC0TCBTGV))

        ;; Tim (1.8%)
        (try! (stx-transfer? (/ (* price u180) u10000) tx-sender 'SP2H2ZB08EW097TPDQPDPPJ6B73YAZS4V2KNSDC04))

        ;; Project Fund (1.20%)
        (try! (stx-transfer? (/ (* price u120) u10000) tx-sender 'SP2DADKD5KK22MHMVN3DCSKS10T17CM7PDTC6WQV8))

        (ok true)
    )
)

Functions (1)

FunctionAccessArgs
paypublicid: uint, price: uint