(XChain) Create Account

rpc CreateAccount (CreateAccountRequest) returns (CreateAccountReply) {}

API parameters #

Required #

message CreateAccountRequest {
    string name = 1;
}
Name Type Description
name string the nick name for the acccount to be created, in newbridge, this is the user’s recipient address of another chain

Response #

message CreateAccountReply {
    string name = 1;
    string address = 2; // the address to deposit
}
Name Type Description
name string the nick name for the acccount to be created, in newbridge, this is the user’s recipient address of another chain
address string the address of current chain
(XChain) Create Account was last edited on 2021-01-13 @16a6725 : update formatting