@@ -75,15 +75,15 @@ export async function createTransaction<
7575 const allTags = params ?. options . tags && [
7676 {
7777 name : 'ArweaveKit' ,
78- value : '1.4.1 ' ,
78+ value : '1.4.2 ' ,
7979 } ,
8080 ...params ?. options . tags ,
8181 ] ;
8282
8383 const transaction = bundlr . createTransaction (
8484 JSON . stringify ( params ?. data ) ,
8585 {
86- tags : allTags ? allTags : [ { name : 'ArweaveKit' , value : '1.4.1 ' } ] ,
86+ tags : allTags ? allTags : [ { name : 'ArweaveKit' , value : '1.4.2 ' } ] ,
8787 }
8888 ) ;
8989
@@ -128,7 +128,7 @@ export async function createTransaction<
128128 ) ;
129129
130130 // tags
131- transaction . addTag ( 'ArweaveKit' , '1.4.1 ' ) ;
131+ transaction . addTag ( 'ArweaveKit' , '1.4.2 ' ) ;
132132 if ( params ?. options ?. tags ) {
133133 params ?. options ?. tags ?. map ( ( k , i ) =>
134134 transaction . addTag ( k . name , k . value )
@@ -179,7 +179,7 @@ export async function createTransaction<
179179 ) ;
180180
181181 // add tags
182- transaction . addTag ( 'ArweaveKit' , '1.4.1 ' ) ;
182+ transaction . addTag ( 'ArweaveKit' , '1.4.2 ' ) ;
183183 if ( params ?. options ?. tags ) {
184184 params ?. options ?. tags ?. map ( ( k , i ) =>
185185 transaction . addTag ( k . name , k . value )
@@ -296,7 +296,7 @@ export async function createAndPostTransactionWOthent(
296296 const allTags = params ?. tags && [
297297 {
298298 name : 'ArweaveKit' ,
299- value : '1.4.1 ' ,
299+ value : '1.4.2 ' ,
300300 } ,
301301 ...params ?. tags ,
302302 ] ;
@@ -307,7 +307,7 @@ export async function createAndPostTransactionWOthent(
307307 const signedTransaction = await othentInstance . signTransactionBundlr ( {
308308 othentFunction : params . othentFunction ,
309309 data : params . data ,
310- tags : allTags ? allTags : [ { name : 'ArweaveKit' , value : '1.4.1 ' } ] ,
310+ tags : allTags ? allTags : [ { name : 'ArweaveKit' , value : '1.4.2 ' } ] ,
311311 } ) ;
312312
313313 postedTransaction = await othentInstance . sendTransactionBundlr (
@@ -317,7 +317,7 @@ export async function createAndPostTransactionWOthent(
317317 const signedTransaction = await othentInstance . signTransactionArweave ( {
318318 othentFunction : params . othentFunction ,
319319 data : params . data ,
320- tags : allTags ? allTags : [ { name : 'ArweaveKit' , value : '1.4.1 ' } ] ,
320+ tags : allTags ? allTags : [ { name : 'ArweaveKit' , value : '1.4.2 ' } ] ,
321321 } ) ;
322322
323323 postedTransaction = await othentInstance . sendTransactionArweave (
0 commit comments