UNPKG
@etherspot/data-utils
Version:
latest (1.1.1)
1.1.1
1.1.0
1.0.0
Etherspot Data Utils
etherspot.dev
etherspot/etherspot-data-utils
@etherspot/data-utils
/
dist
/
esm
/
sdk
/
dto
/
get-transaction-status.dto.d.mts
11 lines
(8 loc)
•
248 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{
BridgingProvider
}
from
'../data/constants.mjs'
;
declare
class
GetTransactionStatusDto
{
fromChainId
:
number
;
toChainId
:
number
;
transactionHash
:
string
;
provider
?:
BridgingProvider
; }
export
{
GetTransactionStatusDto
};