-
Notifications
You must be signed in to change notification settings - Fork 114
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
24 changed files
with
499 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
## [4.2.38] - 2024.7.23 | ||
|
||
### Added | ||
|
||
- Support for Ton basic api | ||
|
||
## [4.2.37] - 2024.7.23 | ||
|
||
### Added | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 26 additions & 0 deletions
26
src/dto/rpc/ton/models/Body_estimate_fee_estimateFee_post.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
/* istanbul ignore file */ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
|
||
export type Body_estimate_fee_estimateFee_post = { | ||
/** | ||
* Address in any format | ||
*/ | ||
address: string; | ||
/** | ||
* b64-encoded cell with message body | ||
*/ | ||
body: string; | ||
/** | ||
* b64-encoded cell with init-code | ||
*/ | ||
init_code?: string; | ||
/** | ||
* b64-encoded cell with init-data | ||
*/ | ||
init_data?: string; | ||
/** | ||
* If true during test query processing assume that all chksig operations return True | ||
*/ | ||
ignore_chksig?: boolean; | ||
}; |
22 changes: 22 additions & 0 deletions
22
src/dto/rpc/ton/models/Body_run_get_method_runGetMethod_post.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
/* istanbul ignore file */ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
|
||
export type Body_run_get_method_runGetMethod_post = { | ||
/** | ||
* Contract address | ||
*/ | ||
address: string; | ||
/** | ||
* Method name or method id | ||
*/ | ||
method: (string | number); | ||
/** | ||
* Array of stack elements: `[['num',3], ['cell', cell_object], ['slice', slice_object]]` | ||
*/ | ||
stack: Array<Array<any>>; | ||
/** | ||
* Seqno of masterchain block at which moment the Get Method is to be executed | ||
*/ | ||
seqno?: number; | ||
}; |
10 changes: 10 additions & 0 deletions
10
src/dto/rpc/ton/models/Body_send_boc_return_hash_sendBocReturnHash_post.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
/* istanbul ignore file */ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
|
||
export type Body_send_boc_return_hash_sendBocReturnHash_post = { | ||
/** | ||
* b64 encoded bag of cells | ||
*/ | ||
boc: string; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
/* istanbul ignore file */ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
|
||
export type Body_send_boc_sendBoc_post = { | ||
/** | ||
* b64 encoded bag of cells | ||
*/ | ||
boc: string; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
/* istanbul ignore file */ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
|
||
export type Body_send_query_sendQuery_post = { | ||
/** | ||
* Address in any format | ||
*/ | ||
address: string; | ||
/** | ||
* b64-encoded boc-serialized cell with message body | ||
*/ | ||
body: string; | ||
/** | ||
* b64-encoded boc-serialized cell with init-code | ||
*/ | ||
init_code?: string; | ||
/** | ||
* b64-encoded boc-serialized cell with init-data | ||
*/ | ||
init_data?: string; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/* istanbul ignore file */ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
|
||
export type DeprecatedTonResponseJsonRPC = { | ||
ok: boolean; | ||
result?: any; | ||
error?: string; | ||
code?: number; | ||
id: string; | ||
jsonrpc?: string; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
export interface GetBlockHeader { | ||
workchain: number; | ||
shard: number; | ||
seqno: number; | ||
root_hash?: string; | ||
file_hash?: string; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
export interface GetBlockTransactions { | ||
workchain: number; | ||
shard: number; | ||
seqno: number; | ||
root_hash?: string; | ||
file_hash?: string; | ||
after_lt?: number; | ||
after_hash?: string; | ||
count?: number; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
export interface GetBlockTransactionsExt { | ||
workchain: number; | ||
shard: number; | ||
seqno: number; | ||
root_hash?: string; | ||
file_hash?: string; | ||
after_lt?: number; | ||
after_hash?: string; | ||
count?: number; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
export interface GetShardBlockProof { | ||
workchain: number | ||
shard: number | ||
seqno: number | ||
from_seqno?: number | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
export interface GetTransactions { | ||
address: string | ||
limit?: number | ||
It?: number | ||
hash?: string | ||
to_It?: number | ||
archival?: boolean | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
export interface LookupBlock { | ||
workchain: number | ||
shard: number | ||
seqno?: number | ||
It?: number | ||
unixtime?: number | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
/* istanbul ignore file */ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
|
||
export type TonRequestJsonRPC = { | ||
method: string; | ||
params?: any; | ||
id?: string; | ||
jsonrpc?: string; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
/* istanbul ignore file */ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
|
||
export type TonResponse = { | ||
ok: boolean; | ||
result?: string; | ||
error?: string; | ||
code?: number; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
export interface TryLocateTx { | ||
source: string; | ||
destination: string; | ||
created_lt: number; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.