@@ -55,4 +55,54 @@ export declare function queueScheduledTransfer(web3: Web3, scheduledTransfer: Sc
5555 } | undefined ;
5656} > ;
5757export declare function getTransfers ( web3 : Web3 , address : `0x${string } `, nonce : number ) : Promise < AddressNonceRecord > ;
58+ export declare function cancelScheduledTransfer ( web3 : Web3 , address : `0x${string } `, nonce : number ) : Promise < {
59+ readonly transactionHash : string ;
60+ readonly transactionIndex : bigint ;
61+ readonly blockHash : string ;
62+ readonly blockNumber : bigint ;
63+ readonly from : string ;
64+ readonly to : string ;
65+ readonly cumulativeGasUsed : bigint ;
66+ readonly gasUsed : bigint ;
67+ readonly effectiveGasPrice ?: bigint | undefined ;
68+ readonly contractAddress ?: string | undefined ;
69+ readonly logs : {
70+ readonly id ?: string | undefined ;
71+ readonly removed ?: boolean | undefined ;
72+ readonly logIndex ?: bigint | undefined ;
73+ readonly transactionIndex ?: bigint | undefined ;
74+ readonly transactionHash ?: string | undefined ;
75+ readonly blockHash ?: string | undefined ;
76+ readonly blockNumber ?: bigint | undefined ;
77+ readonly address ?: string | undefined ;
78+ readonly data ?: string | undefined ;
79+ readonly topics ?: string [ ] | undefined ;
80+ } [ ] ;
81+ readonly logsBloom : string ;
82+ readonly root : string ;
83+ readonly status : bigint ;
84+ readonly type ?: bigint | undefined ;
85+ events ?: {
86+ [ x : string ] : {
87+ readonly event : string ;
88+ readonly id ?: string | undefined ;
89+ readonly logIndex ?: bigint | undefined ;
90+ readonly transactionIndex ?: bigint | undefined ;
91+ readonly transactionHash ?: string | undefined ;
92+ readonly blockHash ?: string | undefined ;
93+ readonly blockNumber ?: bigint | undefined ;
94+ readonly address : string ;
95+ readonly topics : string [ ] ;
96+ readonly data : string ;
97+ readonly raw ?: {
98+ data : string ;
99+ topics : unknown [ ] ;
100+ } | undefined ;
101+ readonly returnValues : {
102+ [ x : string ] : unknown ;
103+ } ;
104+ readonly signature ?: string | undefined ;
105+ } ;
106+ } | undefined ;
107+ } > ;
58108//# sourceMappingURL=web3.d.ts.map
0 commit comments