Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update OpenAPI schema #199

Merged
merged 1 commit into from
Feb 4, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions src/openapi/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34352,6 +34352,26 @@ export interface components {
* @example 0QBQJR9IALMi8kLWKKoo20A1-i9tLB1F2ZTIIyppHGPFYe8e
*/
from: string;
/**
* @description Destination address
* @example Ef8xihYQ_8JBVBmystDCnNcAsy5yH_NzpFi2eYcXNaSzIdgw
*/
to: string;
/**
* @description Amount in nanoton
* @example 1000000000000000
*/
amount: string;
/**
* @description Payload in boc base64 format.
* @example te6ccsEBAQEADAAMABQAAAAASGVsbG8hCaTc/g==
*/
payload: string;
/**
* @description Unix timestamp when the transaction will expire (we set it to 60 min)
* @example 1738689966
*/
valid_until: number;
};
TONUnstakeTxPayload: {
/**
Expand Down