Skip to content

Commit

Permalink
release: 1.23.4 (333)
Browse files Browse the repository at this point in the history
  • Loading branch information
kaladivo committed Dec 2, 2024
1 parent 3033eef commit 2339258
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/mobile/app.config.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// import {SemverString} from '@vexl-next/domain/src/utility/SmeverString.brand'

const VERSION_CODE = 332
const VERSION_CODE = 333
const VERSION = '1.23.4'
const ENV_PRESET = process.env.ENV_PRESET
const COMMIT_HASH = process.env.EAS_BUILD_GIT_COMMIT_HASH ?? 'local'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ export default function createNewOfferForMyContacts({
TE.bindW('symmetricKey', () => TE.fromEither(generateSymmetricKey())),
TE.bindW('encryptedPublic', ({symmetricKey}) => {
if (onProgress) onProgress({type: 'CONSTRUCTING_PUBLIC_PAYLOAD'})
console.log('Encrypting public payload')
return encryptOfferPublicPayload({
offerPublicPart: publicPart,
symmetricKey,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,12 @@ export function fetchInfoAndGeneratePrivatePayloads({
})
return v
}),
TE.chainW(() => encryptPrivatePart(one))
TE.chainW(() => {
console.log(
`Encrypting private part to ${i}: ${one.toPublicKey}, ${JSON.stringify(one, null, 2)}`
)
return encryptPrivatePart(one)
})
)
),
NEA.sequence(T.ApplicativeSeq),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ export const sendOfferToNetworkBatchPrivateParts = ({
}
}): ReturnType<OfferApi['createNewOffer']> =>
Effect.gen(function* (_) {
console.log('Sending offers to network')
const privatePartsBatches = Array.chunksOf(
offerData.offerPrivateList,
PRIVATE_PARTS_BATCH_SIZE
Expand Down

0 comments on commit 2339258

Please sign in to comment.