diff --git a/libs/tangle-shared-ui/src/abi/blueprintServiceManager.ts b/libs/tangle-shared-ui/src/abi/blueprintServiceManager.ts index 762a0d00d..e49562928 100644 --- a/libs/tangle-shared-ui/src/abi/blueprintServiceManager.ts +++ b/libs/tangle-shared-ui/src/abi/blueprintServiceManager.ts @@ -48,6 +48,35 @@ const ABI = [ ], stateMutability: 'view', }, + { + type: 'function', + name: 'computeBillAdjustmentBps', + inputs: [ + { + name: 'serviceId', + type: 'uint64', + internalType: 'uint64', + }, + { + name: 'periodStart', + type: 'uint64', + internalType: 'uint64', + }, + { + name: 'periodEnd', + type: 'uint64', + internalType: 'uint64', + }, + ], + outputs: [ + { + name: 'adjustmentBps', + type: 'uint16', + internalType: 'uint16', + }, + ], + stateMutability: 'view', + }, { type: 'function', name: 'forceRemoveAllowsBelowMin', diff --git a/libs/tangle-shared-ui/src/abi/tangle.ts b/libs/tangle-shared-ui/src/abi/tangle.ts index 275ace100..cc2c5b4f2 100644 --- a/libs/tangle-shared-ui/src/abi/tangle.ts +++ b/libs/tangle-shared-ui/src/abi/tangle.ts @@ -2333,7 +2333,7 @@ const ABI = [ internalType: 'uint256', }, { - name: '__reservedAggregateCursor', + name: '__reserved0', type: 'uint256', internalType: 'uint256', }, @@ -3163,6 +3163,11 @@ const ABI = [ type: 'uint16', internalType: 'uint16', }, + { + name: 'keeperBps', + type: 'uint16', + internalType: 'uint16', + }, ], stateMutability: 'view', }, @@ -3789,6 +3794,11 @@ const ABI = [ type: 'uint16', internalType: 'uint16', }, + { + name: 'keeperBps', + type: 'uint16', + internalType: 'uint16', + }, ], }, ], @@ -4306,6 +4316,24 @@ const ABI = [ outputs: [], stateMutability: 'nonpayable', }, + { + type: 'function', + name: 'withdrawRemainingEscrowTo', + inputs: [ + { + name: 'serviceId', + type: 'uint64', + internalType: 'uint64', + }, + { + name: 'to', + type: 'address', + internalType: 'address payable', + }, + ], + outputs: [], + stateMutability: 'nonpayable', + }, { type: 'event', name: 'BlueprintCreated',