You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current token relayer generates random keypairs, creates accounts under the address derived from the pubkey and inserts them into the trie, and later on uses the private key to sign txes.
Because keypair generation is computationally intensive and how we handle memory is not optimal, simulating a large trie (e.g. mainnet height) is not feasible.
We could alternatively generate a lot of "dumb accounts" (empty with no keypairs) and then add a few "full accounts" to sign txes with later on.
The text was updated successfully, but these errors were encountered:
The current token relayer generates random keypairs, creates accounts under the address derived from the pubkey and inserts them into the trie, and later on uses the private key to sign txes.
Because keypair generation is computationally intensive and how we handle memory is not optimal, simulating a large trie (e.g. mainnet height) is not feasible.
We could alternatively generate a lot of "dumb accounts" (empty with no keypairs) and then add a few "full accounts" to sign txes with later on.
The text was updated successfully, but these errors were encountered: