@@ -436,11 +436,7 @@ export const PendingInvestOrder = onchainTable(
436436 PendingInvestOrderColumns ,
437437 ( t ) => ( {
438438 id : primaryKey ( { columns : [ t . tokenId , t . assetId , t . account ] } ) ,
439- tokenIdAssetIdPendingAmountIdx : index ( ) . on (
440- t . tokenId ,
441- t . assetId ,
442- t . pendingAssetsAmount
443- ) ,
439+ tokenIdAssetIdPendingAmountIdx : index ( ) . on ( t . tokenId , t . assetId , t . pendingAssetsAmount ) ,
444440 } )
445441) ;
446442
@@ -536,11 +532,7 @@ export const PendingRedeemOrder = onchainTable(
536532 PendingRedeemOrderColumns ,
537533 ( t ) => ( {
538534 id : primaryKey ( { columns : [ t . tokenId , t . assetId , t . account ] } ) ,
539- tokenIdAssetIdPendingAmountIdx : index ( ) . on (
540- t . tokenId ,
541- t . assetId ,
542- t . pendingSharesAmount
543- ) ,
535+ tokenIdAssetIdPendingAmountIdx : index ( ) . on ( t . tokenId , t . assetId , t . pendingSharesAmount ) ,
544536 } )
545537) ;
546538
@@ -1111,6 +1103,8 @@ const CrosschainPayloadColumns = (t: PgColumnsBuilders) => ({
11111103 rawData : t . hex ( ) . notNull ( ) ,
11121104 poolId : t . bigint ( ) ,
11131105 status : CrosschainPayloadStatus ( "crosschain_payload_status" ) . notNull ( ) ,
1106+ gasLimit : t . bigint ( ) ,
1107+ gasPaid : t . bigint ( ) ,
11141108 ...timestamperFields ( t , "delivered" ) ,
11151109 ...timestamperFields ( t , "completed" ) ,
11161110 ...timestamperFields ( t , "prepared" , true ) ,
0 commit comments