These methods allow you to build a transaction that requires further processing before it is submitted to a Hedera network. After you freeze the transaction you can use .sign(privateKey)
to sign the transaction with multiple keys or convert the transaction to bytes for further processing.
Method | Type | Description |
freeze() | Freeze this transaction from further modification to prepare for signing or serialization. You will need to set the node account ID (setNodeAccountId() ) and transaction ID (setTransactionId() ). | |
freezeWith(<client>) | Client | Freeze this transaction from further modification to prepare for signing or serialization. Will use the 'Client', if available, to generate a default Transaction ID and select 1/3 nodes to prepare this transaction for. |
freezeWithSigner(<signer>) | Freeze the transaction with a local wallet. Local wallet available in Hedera JavaScript SDK only. >=v2.11.0 |
{% hint style="warning" %}
If an alias is set during account creation, it becomes immutable, meaning it cannot be changed. If you plan to update or rotate keys in the future, do not set the alias at the time of initial account creation. The alias can be set after finalizing all key updates. {% endhint %}
{% tabs %} {% tab title="Java" %}
//Create an unsigned transaction
AccountCreateTransaction transaction = new AccountCreateTransaction()
.setKey(ecdsaPublicKey)
//Do NOT set an alias if you need to update/rotate keys in the future
.setAlias(ecdsaPublicKey.toEvmAddress())
.setInitialBalance(new Hbar(1));
//Freeze the transaction for signing
//The transaction cannot be modified after this point
AccountCreateTransaction freezeTransaction = transaction.freezeWith(client);
System.out.println(freezeTransaction);
//v2.0.0
{% endtab %}
{% tab title="JavaScript" %}
//Create an unsigned transaction
const transaction = new AccountCreateTransaction()
.setKey(ecdsaPublicKey)
//Do NOT set an alias if you need to update/rotate keys in the future
.setAlias(ecdsaPublicKey.toEvmAddress())
.setInitialBalance(new Hbar(1));
//Freeze the transaction for signing
//The transaction cannot be modified after this point
const freezeTransaction = transaction.freezeWith(client);
console.log(freezeTransaction);
//v2.0.5
{% endtab %}
{% tab title="Go" %}
//Create an unsigned transaction
transaction := hedera.NewAccountCreateTransaction().
SetKey(ecdsaPublicKey).
//Do NOT set an alias if you need to update/rotate keys in the future
SetAlias(ecdsaPublicKey.ToEvmAddress())
SetInitialBalance(hedera.NewHbar(1)).
//Freeze the transaction for signing
//The transaction cannot be modified after this point
freezeTransaction, err := transaction.FreezeWith(client)
if err != nil {
panic(err)
}
println(freezeTransaction.String())
//v2.0.0
{% endtab %} {% endtabs %}
Sample Output
crypto_create_account {
auto_renew_period {
seconds: 7776000
}
initial_balance: 1000
key {
ed25519: "\272g\374\310f\354\274\273bU\256\v\032$e\311\021p\216*L\332\277Y\343\230\277PUmy\373"
}
receive_record_threshold: 9223372036854775807
send_record_threshold: 9223372036854775807
node_account_i_d {
account_num: 6
realm_num: 0
shard_num: 0
}
transaction_fee: 100000000
transaction_i_d {
account_i_d {
account_num: 9401
realm_num: 0
shard_num: 0
}
transaction_valid_start {
nanos: 469101387
seconds: 1604559135
}
}
transaction_valid_duration {
seconds: 120
}
}