mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-05 14:59:44 +00:00
282 lines
8.4 KiB
Protocol Buffer
282 lines
8.4 KiB
Protocol Buffer
syntax = "proto2";
|
|
package hw.trezor.messages.eos;
|
|
|
|
// Sugar for easier handling in Java
|
|
option java_package = "com.satoshilabs.trezor.lib.protobuf";
|
|
option java_outer_classname = "TrezorMessageEos";
|
|
|
|
/**
|
|
* Request: Ask device for Eos public key corresponding to address_n path
|
|
* @start
|
|
* @next EosPublicKey
|
|
* @next Failure
|
|
*/
|
|
message EosGetPublicKey {
|
|
repeated uint32 address_n = 1; // BIP-32 path to derive the key from master node 44'/194'/0'
|
|
optional bool show_display = 2; // optionally show on display before sending the result
|
|
}
|
|
|
|
/**
|
|
* Response: Contains an Eos public key derived from device private seed
|
|
* @end
|
|
*/
|
|
message EosPublicKey {
|
|
optional string wif_public_key = 1; // EOS pub key in Base58 encoding
|
|
optional bytes raw_public_key = 2; // Raw public key
|
|
}
|
|
|
|
/**
|
|
* Request: Ask device to sign transaction
|
|
* @start
|
|
* @next EosTxRequest
|
|
* @next Failure
|
|
*/
|
|
message EosSignTx {
|
|
repeated uint32 address_n = 1; // BIP-32 path to derive the key from master node 44'/194'/0'
|
|
optional bytes chain_id = 2; // 256-bit long chain id
|
|
optional EosTxHeader header = 3; // EOS transaction header
|
|
optional uint32 num_actions = 4; // number of actions
|
|
|
|
/**
|
|
* Structure representing EOS transaction header
|
|
*/
|
|
message EosTxHeader {
|
|
required uint32 expiration = 1; // time at which transaction expires
|
|
required uint32 ref_block_num = 2; // 16-bit specifies a block num in the last 2^16 blocks.
|
|
required uint32 ref_block_prefix = 3; // specifies the lower 32 bits of the blockid at get_ref_blocknum
|
|
required uint32 max_net_usage_words = 4; // upper limit on total network bandwidth (in 8 byte words) billed for this transaction
|
|
required uint32 max_cpu_usage_ms = 5; // 8-bit upper limit on the total CPU time billed for this transaction
|
|
required uint32 delay_sec = 6; // number of seconds to delay this transaction for during which it may be canceled.
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Response: Device asks to upload next action
|
|
* @next EosTxActionAck
|
|
*/
|
|
message EosTxActionRequest {
|
|
optional uint32 data_size = 1;
|
|
}
|
|
|
|
/**
|
|
* Request: Next action data that needs to be uploaded
|
|
* @next EosTxActionRequest
|
|
* @next EosSignedTx
|
|
* @next Failure
|
|
*/
|
|
message EosTxActionAck {
|
|
optional EosActionCommon common = 1;
|
|
optional EosActionTransfer transfer = 2;
|
|
optional EosActionDelegate delegate = 3;
|
|
optional EosActionUndelegate undelegate = 4;
|
|
optional EosActionRefund refund = 5;
|
|
optional EosActionBuyRam buy_ram = 6;
|
|
optional EosActionBuyRamBytes buy_ram_bytes = 7;
|
|
optional EosActionSellRam sell_ram = 8;
|
|
optional EosActionVoteProducer vote_producer = 9;
|
|
optional EosActionUpdateAuth update_auth = 10;
|
|
optional EosActionDeleteAuth delete_auth = 11;
|
|
optional EosActionLinkAuth link_auth = 12;
|
|
optional EosActionUnlinkAuth unlink_auth = 13;
|
|
optional EosActionNewAccount new_account = 14;
|
|
optional EosActionUnknown unknown = 15;
|
|
|
|
/**
|
|
* Structure representing asset type
|
|
*/
|
|
message EosAsset {
|
|
optional sint64 amount = 1;
|
|
optional uint64 symbol = 2; // Lowest 8 bits used for precision.
|
|
}
|
|
|
|
/**
|
|
* Structure representing action permission level
|
|
*/
|
|
message EosPermissionLevel {
|
|
optional uint64 actor = 1;
|
|
optional uint64 permission = 2;
|
|
}
|
|
|
|
/**
|
|
* Structure representing auth key
|
|
*/
|
|
message EosAuthorizationKey {
|
|
optional uint32 type = 1;
|
|
optional bytes key = 2; // Explicit public key bytes; when present, address_n must be empty
|
|
repeated uint32 address_n = 3; // BIP-32 path to derive key; when filled out, key must not be present
|
|
optional uint32 weight = 4;
|
|
}
|
|
|
|
/**
|
|
* Structure representing auth account
|
|
*/
|
|
message EosAuthorizationAccount {
|
|
optional EosPermissionLevel account = 1;
|
|
optional uint32 weight = 2;
|
|
}
|
|
|
|
/**
|
|
* Structure representing auth delays
|
|
*/
|
|
message EosAuthorizationWait {
|
|
optional uint32 wait_sec = 1;
|
|
optional uint32 weight = 2;
|
|
}
|
|
|
|
/**
|
|
* Structure representing authorization settings
|
|
*/
|
|
message EosAuthorization {
|
|
optional uint32 threshold = 1;
|
|
repeated EosAuthorizationKey keys = 2;
|
|
repeated EosAuthorizationAccount accounts = 3;
|
|
repeated EosAuthorizationWait waits = 4;
|
|
}
|
|
|
|
/**
|
|
* Structure representing the common part of every action
|
|
*/
|
|
message EosActionCommon {
|
|
optional uint64 account = 1; // Contract name
|
|
optional uint64 name = 2; // Action name
|
|
repeated EosPermissionLevel authorization = 3;
|
|
}
|
|
|
|
/**
|
|
* Structure representing transfer data structure
|
|
*/
|
|
message EosActionTransfer {
|
|
optional uint64 sender = 1; // Asset sender
|
|
optional uint64 receiver = 2;
|
|
optional EosAsset quantity = 3;
|
|
optional string memo = 4;
|
|
}
|
|
|
|
/**
|
|
* Structure representing delegation data structure
|
|
*/
|
|
message EosActionDelegate {
|
|
optional uint64 sender = 1;
|
|
optional uint64 receiver = 2;
|
|
optional EosAsset net_quantity = 3; // Asset format '1.0000 EOS'
|
|
optional EosAsset cpu_quantity = 4; // Asset format '1.0000 EOS'
|
|
optional bool transfer = 5; // Transfer delegated tokens or not.
|
|
}
|
|
|
|
/**
|
|
* Structure representing the removal of delegated resources from `sender`
|
|
*/
|
|
message EosActionUndelegate {
|
|
optional uint64 sender = 1;
|
|
optional uint64 receiver = 2;
|
|
optional EosAsset net_quantity = 3; // Asset format '1.0000 EOS'
|
|
optional EosAsset cpu_quantity = 4; // Asset format '1.0000 EOS'
|
|
}
|
|
|
|
/**
|
|
* Structure representing fallback if undelegate wasnt executed automaticaly.
|
|
*/
|
|
message EosActionRefund {
|
|
optional uint64 owner = 1;
|
|
}
|
|
|
|
/**
|
|
* Structure representing buying RAM operation for EOS tokens
|
|
*/
|
|
message EosActionBuyRam {
|
|
optional uint64 payer = 1;
|
|
optional uint64 receiver = 2;
|
|
optional EosAsset quantity = 3; // Asset format '1.0000 EOS'
|
|
}
|
|
|
|
/**
|
|
* Structure representing buying bytes according to RAM market price.
|
|
*/
|
|
message EosActionBuyRamBytes {
|
|
optional uint64 payer = 1;
|
|
optional uint64 receiver = 2;
|
|
optional uint32 bytes = 3; // Number of bytes
|
|
}
|
|
|
|
/**
|
|
* Structure representing sell RAM
|
|
*/
|
|
message EosActionSellRam {
|
|
optional uint64 account = 1;
|
|
optional uint64 bytes = 2; // Number of bytes
|
|
}
|
|
|
|
/**
|
|
* Structure representing voting. Currently, there could be up to 30 producers.
|
|
*/
|
|
message EosActionVoteProducer {
|
|
optional uint64 voter = 1; // Voter account
|
|
optional uint64 proxy = 2; // Proxy voter account
|
|
repeated uint64 producers = 3; // List of producers
|
|
}
|
|
|
|
/**
|
|
* Structure representing update authorization.
|
|
*/
|
|
message EosActionUpdateAuth {
|
|
optional uint64 account = 1;
|
|
optional uint64 permission = 2;
|
|
optional uint64 parent = 3;
|
|
optional EosAuthorization auth = 4;
|
|
}
|
|
|
|
/**
|
|
* Structure representing delete authorization.
|
|
*/
|
|
message EosActionDeleteAuth {
|
|
optional uint64 account = 1;
|
|
optional uint64 permission = 2;
|
|
}
|
|
|
|
/**
|
|
* Structure representing link authorization to action.
|
|
*/
|
|
message EosActionLinkAuth {
|
|
optional uint64 account = 1;
|
|
optional uint64 code = 2;
|
|
optional uint64 type = 3;
|
|
optional uint64 requirement = 4;
|
|
}
|
|
|
|
/**
|
|
* Structure representing unlink authorization from action.
|
|
*/
|
|
message EosActionUnlinkAuth {
|
|
optional uint64 account = 1;
|
|
optional uint64 code = 2;
|
|
optional uint64 type = 3;
|
|
}
|
|
|
|
/**
|
|
* Structure representing creation of a new account.
|
|
*/
|
|
message EosActionNewAccount {
|
|
optional uint64 creator = 1;
|
|
optional uint64 name = 2;
|
|
optional EosAuthorization owner = 3;
|
|
optional EosAuthorization active = 4;
|
|
}
|
|
|
|
/**
|
|
* Structure representing actions not implemented above.
|
|
*/
|
|
message EosActionUnknown {
|
|
optional uint32 data_size = 1;
|
|
optional bytes data_chunk = 2;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Response: Device returns the signature.
|
|
* The signature_* fields contain the computed transaction signature. All three fields will be present.
|
|
* @end
|
|
*/
|
|
message EosSignedTx {
|
|
optional string signature = 1; // Computed signature
|
|
}
|