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
/** * Queries the nonce, signs the transaction and posts it to the blockchain. * * The transaction signer is determined by the transaction content. A lookup for * the private key for the signer in the given wallet ID is done automatically. */publicasyncsignAndPost(transaction: UnsignedTransaction,walletId: WalletId): Promise<PostTxResponse>;publicasyncsignAndPost(transactions: ReadonlyArray<UnsignedTransaction>,walletId: WalletId): Promise<ReadonlyArray<Promise<PostTxResponse>>>;publicasyncsignAndPost(tx: UnsignedTransaction|ReadonlyArray<UnsignedTransaction>,walletId: WalletId): Promise<PostTxResponse|ReadonlyArray<Promise<PostTxResponse>>>{if(isUnsignedTransaction(tx)){constfirstResult=(awaitthis.signAndPost([tx],walletId))[0];returnfirstResult;}
However, implementing this is too complicated as long as one identity can be in a profile multiple times
However, implementing this is too complicated as long as one identity can be in a profile multiple times
Yes, I would love to enforce uniqueness and then remove need for WalletId in many of these methods, where an identity (public key and chain) is sufficient. Did you have another issue for that one as well?
This is required by the faucet (refilling distributors) to remove the need to wait for a block just to get an updated nonce
The text was updated successfully, but these errors were encountered: