Create sequence diagrams with simple online tool

Swimlanes.io is a free webapp for making sequence diagrams. You simply edit the text on the left and the diagram is updated in real time. You can download your sequence diagrams as images or distribute with a link.

title: 3. empty check note: ``` pub struct TransactionData { pub kind: TransactionKind, sender: SuiAddress, gas_payment: ObjectRef, pub gas_price: u64, pub gas_budget: u64, } ``` Sponsor -> User: Gas data `ObjectRef`, `price`, `budget` etc User -> User: construct TransactionData with Gas data, sign User -> Sponsor: TransactionData and user sig Sponsor -> Sponsor: check tx, sign TransactionData Sponsor -> FullNode: submit dual signed transaction

3. empty check

Sponsor
User
FullNode
pub struct TransactionData {
    pub kind: TransactionKind,
    sender: SuiAddress,
    gas_payment: ObjectRef,
    pub gas_price: u64,
    pub gas_budget: u64,
}
Gas data ObjectRef, price, budget etc
construct TransactionData with Gas data, sign
 
TransactionData and user sig
check tx, sign TransactionData
 
submit dual signed transaction
Sponsor
User
FullNode
Sponsor
User
FullNode