@@ -2403,6 +2403,7 @@ export interface ValidCreateActionArgs extends ValidProcessActionArgs {
24032403 labels: string [];
24042404 options: ValidCreateActionOptions ;
24052405 isSignAction: boolean ;
2406+ randomVals? : number [];
24062407}
24072408```
24082409
@@ -3959,7 +3960,7 @@ See also: [StorageProvenOrReq](#interface-storageprovenorreq), [TrxToken](#inter
39593960#### Method getReqsAndBeefToShareWithWorld
39603961
39613962Given an array of transaction txids with current ProvenTxReq ready-to-share status,
3962- lookup their DojoProvenTxReqApi req records.
3963+ lookup their ProvenTxReqApi req records.
39633964For the txids with reqs and status still ready to send construct a single merged beef.
39643965
39653966``` ts
@@ -3997,12 +3998,6 @@ async updateTransactionStatus(status: sdk.TransactionStatus, transactionId?: num
39973998```
39983999See also: [ TransactionStatus] ( #type-transactionstatus ) , [ TrxToken] ( #interface-trxtoken )
39994000
4000- Throws
4001-
4002- ERR_DOJO_COMPLETED_TX if current status is 'completed' and new status is not 'completed.
4003-
4004- ERR_DOJO_PROVEN_TX if transaction has proof or provenTxId and new status is not 'completed'.
4005-
40064001</details >
40074002
40084003Links: [ API] ( #api ) , [ Interfaces] ( #interfaces ) , [ Classes] ( #classes ) , [ Functions] ( #functions ) , [ Types] ( #types ) , [ Variables] ( #variables )
@@ -4745,6 +4740,7 @@ export class Wallet implements WalletInterface, ProtoWallet {
47454740 proto: ProtoWallet ;
47464741 privilegedKeyManager? : sdk .PrivilegedKeyManager ;
47474742 pendingSignActions: Record <string , PendingSignAction >;
4743+ randomVals? : number [] = undefined ;
47484744 constructor (argsOrSigner : WalletArgs | WalletSigner , services ? : sdk .WalletServices , monitor ? : Monitor , privilegedKeyManager ? : sdk .PrivilegedKeyManager )
47494745 async destroy(): Promise <void >
47504746 getClientChangeKeyPair(): sdk .KeyPair
@@ -4805,6 +4801,14 @@ Over time, this allows an active wallet to drastically reduce the amount of data
48054801beef : BeefParty
48064802```
48074803
4804+ #### Property randomVals
4805+
4806+ For repeatability testing, set to an array of random numbers from [ 0..1).
4807+
4808+ ``` ts
4809+ randomVals ?: number [] = undefined
4810+ ```
4811+
48084812#### Method getKnownTxids
48094813
48104814``` ts
@@ -4879,8 +4883,6 @@ standard HTTP error status object with status property set to 'error'.
48794883
48804884Recovers all public fields from WalletError derived error classes and relevant Error derived errors.
48814885
4882- Critical client data fields are preserved across HTTP DojoExpress / DojoExpressClient encoding.
4883-
48844886``` ts
48854887static fromUnknown (err : unknown ): WalletError
48864888```
0 commit comments