diff --git a/packages/proto/src/proto/services/node_create.proto b/packages/proto/src/proto/services/node_create.proto index 24d06f8a5..c2b6abee7 100644 --- a/packages/proto/src/proto/services/node_create.proto +++ b/packages/proto/src/proto/services/node_create.proto @@ -33,9 +33,9 @@ import "basic_types.proto"; * address book. The transaction, once complete, enables a new consensus node * to join the network, and requires governing council authorization. * - * - A `NodeCreateTransactionBody` MUST be signed by the governing council. * - A `NodeCreateTransactionBody` MUST be signed by the `Key` assigned to the - * `admin_key` field. + * `admin_key` field and one of those keys: treasure account (2) key, + * systemAdmin(50) key, or addressBookAdmin(55) key. * - The newly created node information SHALL be added to the network address * book information in the network state. * - The new entry SHALL be created in "state" but SHALL NOT participate in @@ -132,7 +132,6 @@ message NodeCreateTransactionBody { * An administrative key controlled by the node operator. *

* This key MUST sign this transaction.
- * This key MUST sign each transaction to update this node.
* This field MUST contain a valid `Key` value.
* This field is REQUIRED and MUST NOT be set to an empty `KeyList`. */ diff --git a/packages/proto/src/proto/services/token_get_info.proto b/packages/proto/src/proto/services/token_get_info.proto index 284591141..454c93434 100644 --- a/packages/proto/src/proto/services/token_get_info.proto +++ b/packages/proto/src/proto/services/token_get_info.proto @@ -209,36 +209,6 @@ message TokenInfo { * (token definition and individual NFTs). */ Key metadata_key = 28; - - /** - * A function-specific account key.
- * This key authorizes transactions to lock tokens in an account or account - * partition. - *

- * The key SHALL be used to authorize the locking and unlocking of tokens, - * or the transfer of locked tokens on balances held by the user - * on their account, or on the partition in their account. - */ - Key lock_key = 29; - - /** - * A function-specific account key.
- * This key authorizes transactions to partition fungible tokens and NFTs - * held by an account. - *

- * This key SHALL be used to authorize the creation, deletion, or updating - * of partition definitions owned by the token definition. - */ - Key partition_key = 30; - - /** - * A function-specific account key.
- * This key authorizes transactions to move tokens between partitions. - *

- * This key SHALL be used to authorize the movement of tokens between - * partitions. - */ - Key partition_move_key = 31; } /**