Sui Transfers

Native currency transfer

Following is an example of the body of a Create Transaction request for a native Sui currency transfer. The general details of creating the request appear here.

{
    "signer_type": "api_signer",
    "type": "sui_transaction",
    "details": {
        "type": "sui_transfer",
         "to": {
            "type": "hex",
            "address": "0xa398ae37156b6c4b5ee327a7e95a2a8387e1ce9206c91f97235316502aca8883"
          },
        "value": {
            "type": "value",
            "value": "10000000000"
        },
        "gas_config": {
            "payment": []
        },
        "asset_identifier": {
            "type": "sui",
            "details": {
                "type": "native",
                "chain": "sui_mainnet"
            }
        }
    },
    "note": "Transferring 10 SUI",
    "vault_id": "8988893a-cf29-4a02-acc7-5bb723c74f47"
}

Coin transfer

Following is an example of the body of a Create Transaction request for a coin transfer. The general details of creating the request appear here.

{
    "signer_type": "api_signer",
    "type": "sui_transaction",
    "details": {
        "type": "sui_transfer",
        "to": "0xa398ae37156b6c4b5ee327a7e95a2a8387e1ce9206c91f97235316502aca8883",
        "value": {
            "type": "value",
            "value": "10000000000"
        },
      	"gas_config": {
            "payment": []
        },
        "asset_identifier": {
            "type": "sui",
            "details": {
                "type": "coin",
                "token": {
                    "chain": "sui_mainnet",
                    "coin_type_str": "0x5d4b302506645c37ff133b98c4b50a5ae14841659738d6d733d59d0d217a93bf::coin::COIN"
                }
            }
        }
    },
    "note": "Transferring 10 USDC",
    "vault_id": "8988893a-cf29-4a02-acc7-5bb723c74f47"
}