File tree 6 files changed +13
-13
lines changed
server/routes/backend-wallet 6 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 67
67
"prisma" : " ^5.14.0" ,
68
68
"prom-client" : " ^15.1.3" ,
69
69
"superjson" : " ^2.2.1" ,
70
- "thirdweb" : " ^5.71 .0" ,
70
+ "thirdweb" : " ^5.78 .0" ,
71
71
"uuid" : " ^9.0.1" ,
72
72
"viem" : " ^2.21.54" ,
73
73
"winston" : " ^3.14.1" ,
Original file line number Diff line number Diff line change @@ -195,7 +195,7 @@ export const importBackendWallet = async (fastify: FastifyInstance) => {
195
195
}
196
196
197
197
// TODO: with next breaking change, only require GCP KMS resource path
198
- // import endoint does not currently have resource path in the request body
198
+ // import endpoint does not currently have resource path in the request body
199
199
// so we rely on the global configuration for these values
200
200
if (
201
201
! (
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ type CreateWalletDetailsParams = {
15
15
}
16
16
| {
17
17
type : "aws-kms" ;
18
- awsKmsKeyId ?: string ; // depcrecated and unused, todo: remove with next breaking change
18
+ awsKmsKeyId ?: string ; // deprecated and unused, todo: remove with next breaking change
19
19
awsKmsArn : string ;
20
20
21
21
awsKmsSecretAccessKey : string ; // will be encrypted and stored, pass plaintext to this function
@@ -24,10 +24,10 @@ type CreateWalletDetailsParams = {
24
24
| {
25
25
type : "gcp-kms" ;
26
26
gcpKmsResourcePath : string ;
27
- gcpKmsKeyRingId ?: string ; // depcrecated and unused, todo: remove with next breaking change
28
- gcpKmsKeyId ?: string ; // depcrecated and unused, todo: remove with next breaking change
29
- gcpKmsKeyVersionId ?: string ; // depcrecated and unused, todo: remove with next breaking change
30
- gcpKmsLocationId ?: string ; // depcrecated and unused, todo: remove with next breaking change
27
+ gcpKmsKeyRingId ?: string ; // deprecated and unused, todo: remove with next breaking change
28
+ gcpKmsKeyId ?: string ; // deprecated and unused, todo: remove with next breaking change
29
+ gcpKmsKeyVersionId ?: string ; // deprecated and unused, todo: remove with next breaking change
30
+ gcpKmsLocationId ?: string ; // deprecated and unused, todo: remove with next breaking change
31
31
32
32
gcpApplicationCredentialPrivateKey : string ; // will be encrypted and stored, pass plaintext to this function
33
33
gcpApplicationCredentialEmail : string ;
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ export type QueuedTransactionParams = {
36
36
* Encodes a transaction to generate data, and inserts it into the transaction queue using the insertTransaction()
37
37
*
38
38
* Note:
39
- * - functionName must be be provided to populate the functionName field in the queued transaction
39
+ * - functionName must be provided to populate the functionName field in the queued transaction
40
40
* - value and chain details are resolved from the transaction
41
41
*/
42
42
export async function queueTransaction ( args : QueuedTransactionParams ) {
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ export class SendTransactionQueue {
19
19
} ,
20
20
} ) ;
21
21
22
- // Allow enqueing the same queueId for multiple retries.
22
+ // Allow enqueuing the same queueId for multiple retries.
23
23
static jobId = ( data : SendTransactionData ) =>
24
24
`${ data . queueId } .${ data . resendCount } ` ;
25
25
Original file line number Diff line number Diff line change @@ -10176,10 +10176,10 @@ thirdweb@5.29.6:
10176
10176
uqr "0.1.2"
10177
10177
viem "2.13.7"
10178
10178
10179
- thirdweb@^5.71 .0:
10180
- version "5.77 .0"
10181
- resolved "https://registry.yarnpkg.com/thirdweb/-/thirdweb-5.77 .0.tgz#4a2e48ded8e07c6ded0256c1440cf5b7ad740cec "
10182
- integrity sha512-ugrrZSjy8WnY4tQ/OdFn9eXFp/XAfz8lvVF7zUcaY/WRY/x3k69n31oA87FrKsiBIcJuib2lc2sHjjstg8qUcQ ==
10179
+ thirdweb@^5.78 .0:
10180
+ version "5.78 .0"
10181
+ resolved "https://registry.yarnpkg.com/thirdweb/-/thirdweb-5.78 .0.tgz#24ef3f773b13353797b72149e8e27e0bb3bb2bbf "
10182
+ integrity sha512-S67omjLP0hmqHNEQmIFuliGF9lj0RRpqfPKKRqEMkYolQrCL1l0wtx0jLbzYRPEkopN+51qOXUsyO7AHWokM/Q ==
10183
10183
dependencies:
10184
10184
"@coinbase/wallet-sdk" "4.2.4"
10185
10185
"@emotion/react" "11.14.0"
You can’t perform that action at this time.
0 commit comments