Skip to content

Commit 9460dcc

Browse files
committed
chore: update client-sdk build
1 parent 3c9632e commit 9460dcc

File tree

5 files changed

+64
-8
lines changed

5 files changed

+64
-8
lines changed

client-sdk/dist/web3.d.ts

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,4 +55,54 @@ export declare function queueScheduledTransfer(web3: Web3, scheduledTransfer: Sc
5555
} | undefined;
5656
}>;
5757
export 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

client-sdk/dist/web3.d.ts.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client-sdk/dist/web3.js

Lines changed: 6 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client-sdk/dist/web3.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client-sdk/package-lock.json

Lines changed: 6 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)