sui基础(3)-sui常用RPC记录

sui 常用的rpc

1. 说明

目前官方节点地址:https://fullnode.devnet.sui.io:443

2. 发现

一次性扫描并返回sui所有rpc方法等信息

1
2
3
curl --location --request POST https://fullnode.devnet.sui.io:443 \
--header 'Content-Type: application/json' \
--data-raw '{ "jsonrpc":"2.0", "method":"rpc.discover","id":1}'

3. 完成一笔交易

创建未签名交易-签名-提交-完成交易

3.1 创建一个未签名的交易,将coin从一个地址转移到另一个地址

1
2
3
4
5
6
7
8
9
10
11
12
13
curl --location --request POST $SUI_RPC_HOST \
--header 'Content-Type: application/json' \
--data-raw '{
"jsonrpc": "2.0",
"id": 1,
"method": "sui_transferObject",
"params":[
"{{owner_address}}",
"{{object_id}}",
"{{gas_object_id}}",
{{gas_budget}},
"{{to_address}}"],
}' | json_pp

返回结果如下:

1
2
3
4
5
6
7
{
"id" : 1,
"jsonrpc" : "2.0",
"result" : {
"tx_bytes" : "VHJhbnNhY3Rpb25EYXRhOjoAAFHe8jecgzoGWyGlZ1sJ2KBFN8aZF7NIkDsM+3X8mrVCa7adg9HnVqUBAAAAAAAAACDOlrjlT0A18D0DqJLTU28ChUfRFtgHprmuOGCHYdv8YVHe8jecgzoGWyGlZ1sJ2KBFN8aZdZnY6h3kyWFtB38Wyg6zjN7KzAcBAAAAAAAAACDxI+LSHrFUxU0G8bPMXhF+46hpchJ22IHlpPv4FgNvGOgDAAAAAAAA="
}
}
  1. 签名交易,获取签名结果
1
sui keytool sign --address <owner_address> --data <tx_bytes>
  1. rpc提交,完成交易
1
2
3
4
5
6
7
8
9
10
11
12
curl --location --request POST $SUI_RPC_HOST \
--header 'Content-Type: application/json' \
--data-raw '{
"jsonrpc": "2.0",
"id": 1,
"method": "sui_executeTransactionSerializedSig",
"params": [
"{{tx_bytes}}",
"{{signature}}",
"{{request_type}}"
]
}' | json_pp

3. 总结

本文编辑完毕

Donate
  • Copyright: Copyright is owned by the author. For commercial reprints, please contact the author for authorization. For non-commercial reprints, please indicate the source.
  • Copyrights © 2017-2023 Jason
  • Visitors: | Views:

谢谢打赏~

微信