1
+ import { AmountMath } from '@agoric/ertp' ;
1
2
import { assertAllDefined , makeTracer } from '@agoric/internal' ;
2
3
import { atob } from '@endo/base64' ;
3
4
import { makeError , q } from '@endo/errors' ;
5
+ import { E } from '@endo/far' ;
4
6
import { M } from '@endo/patterns' ;
5
7
6
- import { AmountMath } from '@agoric/ertp ' ;
8
+ import { PendingTxStatus } from '../constants.js ' ;
7
9
import { addressTools } from '../utils/address.js' ;
8
10
import { makeFeeTools } from '../utils/fees.js' ;
9
11
10
12
/**
11
13
* @import {FungibleTokenPacketData} from '@agoric/cosmic-proto/ibc/applications/transfer/v2/packet.js';
12
- * @import {Denom, OrchestrationAccount, LocalAccountMethods} from '@agoric/orchestration';
14
+ * @import {Denom, OrchestrationAccount, LocalAccountMethods, ChainHub } from '@agoric/orchestration';
13
15
* @import {WithdrawToSeat} from '@agoric/orchestration/src/utils/zoe-tools'
14
16
* @import {IBCChannelID, VTransferIBCEvent} from '@agoric/vats';
15
17
* @import {Zone} from '@agoric/zone';
@@ -30,17 +32,21 @@ const trace = makeTracer('Settler');
30
32
* @param {FeeConfig } caps.feeConfig
31
33
* @param {HostOf<WithdrawToSeat> } caps.withdrawToSeat
32
34
* @param {import('@agoric/vow').VowTools } caps.vowTools
35
+ * @param {ChainHub } caps.chainHub
33
36
*/
34
37
export const prepareSettler = (
35
38
zone ,
36
- { statusManager, USDC , zcf, feeConfig, withdrawToSeat, vowTools } ,
39
+ { statusManager, USDC , zcf, feeConfig, withdrawToSeat, vowTools, chainHub } ,
37
40
) => {
38
41
assertAllDefined ( { statusManager } ) ;
39
42
return zone . exoClass (
40
43
'Fast USDC Settler' ,
41
44
M . interface ( 'SettlerI' , {
42
45
monitorTransfers : M . callWhen ( ) . returns ( M . any ( ) ) ,
43
46
receiveUpcall : M . call ( M . record ( ) ) . returns ( M . promise ( ) ) ,
47
+ settleSansFees : M . call ( M . string ( ) , M . string ( ) , M . nat ( ) ) . returns (
48
+ M . promise ( ) ,
49
+ ) ,
44
50
} ) ,
45
51
/**
46
52
* @param {{
@@ -111,6 +117,11 @@ export const prepareSettler = (
111
117
) ;
112
118
}
113
119
120
+ const pending = statusManager . lookupPending ( sender , amountInt ) ;
121
+ if ( pending . find ( it => it . status === PendingTxStatus . Observed ) ) {
122
+ return this . self . settleSansFees ( sender , EUD , amountInt ) ;
123
+ }
124
+
114
125
// Disperse funds
115
126
116
127
const { repayer, settlementAccount } = this . state ;
@@ -137,10 +148,25 @@ export const prepareSettler = (
137
148
repayer . repay ( settlingSeat , split ) ;
138
149
139
150
// update status manager, marking tx `SETTLED`
140
- statusManager . settle (
141
- /** @type {NobleAddress } */ ( tx . sender ) ,
142
- amountInt ,
151
+ statusManager . settle ( sender , amountInt ) ;
152
+ } ,
153
+ /**
154
+ * @param {NobleAddress } sender
155
+ * @param {string } EUD
156
+ * @param {bigint } amountInt
157
+ */
158
+ async settleSansFees ( sender , EUD , amountInt ) {
159
+ const { settlementAccount } = this . state ;
160
+
161
+ const dest = chainHub . makeChainAddress ( EUD ) ;
162
+
163
+ const txfrV = E ( settlementAccount ) . transfer (
164
+ dest ,
165
+ AmountMath . make ( USDC , amountInt ) ,
143
166
) ;
167
+ await vowTools . when ( txfrV ) ; // TODO: watch, handle failure
168
+
169
+ statusManager . settle ( sender , amountInt ) ;
144
170
} ,
145
171
} ,
146
172
{
0 commit comments