@@ -27,12 +27,12 @@ import type {
27
27
OnEvent ,
28
28
} from "../common" ;
29
29
30
- export type NormalizedAmountStruct = {
30
+ export type TrimmedAmountStruct = {
31
31
amount : BigNumberish ;
32
32
decimals : BigNumberish ;
33
33
} ;
34
34
35
- export type NormalizedAmountStructOutput = [ BigNumber , number ] & {
35
+ export type TrimmedAmountStructOutput = [ BigNumber , number ] & {
36
36
amount : BigNumber ;
37
37
decimals : number ;
38
38
} ;
@@ -63,40 +63,40 @@ export declare namespace TransceiverStructs {
63
63
64
64
export declare namespace IRateLimiter {
65
65
export type RateLimitParamsStruct = {
66
- limit : NormalizedAmountStruct ;
67
- currentCapacity : NormalizedAmountStruct ;
66
+ limit : TrimmedAmountStruct ;
67
+ currentCapacity : TrimmedAmountStruct ;
68
68
lastTxTimestamp : BigNumberish ;
69
69
} ;
70
70
71
71
export type RateLimitParamsStructOutput = [
72
- NormalizedAmountStructOutput ,
73
- NormalizedAmountStructOutput ,
72
+ TrimmedAmountStructOutput ,
73
+ TrimmedAmountStructOutput ,
74
74
BigNumber
75
75
] & {
76
- limit : NormalizedAmountStructOutput ;
77
- currentCapacity : NormalizedAmountStructOutput ;
76
+ limit : TrimmedAmountStructOutput ;
77
+ currentCapacity : TrimmedAmountStructOutput ;
78
78
lastTxTimestamp : BigNumber ;
79
79
} ;
80
80
81
81
export type InboundQueuedTransferStruct = {
82
- amount : NormalizedAmountStruct ;
82
+ amount : TrimmedAmountStruct ;
83
83
txTimestamp : BigNumberish ;
84
84
recipient : string ;
85
85
} ;
86
86
87
87
export type InboundQueuedTransferStructOutput = [
88
- NormalizedAmountStructOutput ,
88
+ TrimmedAmountStructOutput ,
89
89
BigNumber ,
90
90
string
91
91
] & {
92
- amount : NormalizedAmountStructOutput ;
92
+ amount : TrimmedAmountStructOutput ;
93
93
txTimestamp : BigNumber ;
94
94
recipient : string ;
95
95
} ;
96
96
97
97
export type OutboundQueuedTransferStruct = {
98
98
recipient : BytesLike ;
99
- amount : NormalizedAmountStruct ;
99
+ amount : TrimmedAmountStruct ;
100
100
txTimestamp : BigNumberish ;
101
101
recipientChain : BigNumberish ;
102
102
sender : string ;
@@ -105,14 +105,14 @@ export declare namespace IRateLimiter {
105
105
106
106
export type OutboundQueuedTransferStructOutput = [
107
107
string ,
108
- NormalizedAmountStructOutput ,
108
+ TrimmedAmountStructOutput ,
109
109
BigNumber ,
110
110
number ,
111
111
string ,
112
112
string
113
113
] & {
114
114
recipient : string ;
115
- amount : NormalizedAmountStructOutput ;
115
+ amount : TrimmedAmountStructOutput ;
116
116
txTimestamp : BigNumber ;
117
117
recipientChain : number ;
118
118
sender : string ;
0 commit comments