@heyanon/sdk 2.1.1 → 2.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/blockchain/ton/types.d.ts +3 -6
- package/dist/index.js +0 -9
- package/dist/index.mjs +0 -9
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { SenderArguments } from '@ton/core';
|
|
2
2
|
import { TonApiClient } from '@ton-api/client';
|
|
3
3
|
import { ContractAdapter } from '@ton-api/ton-adapter';
|
|
4
|
-
import { Address } from '@ton/ton';
|
|
4
|
+
import { Address, TonClient, TonClient4 } from '@ton/ton';
|
|
5
5
|
export interface TransactionReturnData {
|
|
6
6
|
readonly message: string;
|
|
7
7
|
readonly hash: string;
|
|
@@ -15,10 +15,7 @@ export interface SendTransactionProps {
|
|
|
15
15
|
}
|
|
16
16
|
export interface Client {
|
|
17
17
|
readonly api: TonApiClient;
|
|
18
|
+
readonly client: TonClient;
|
|
19
|
+
readonly client4: TonClient4;
|
|
18
20
|
readonly adapter: ContractAdapter;
|
|
19
21
|
}
|
|
20
|
-
export declare enum WalletType {
|
|
21
|
-
V3R2 = "v3r2",
|
|
22
|
-
V4 = "v4",
|
|
23
|
-
V5R1 = "v5r1"
|
|
24
|
-
}
|
package/dist/index.js
CHANGED
|
@@ -520,15 +520,6 @@ __export(ton_exports, {
|
|
|
520
520
|
|
|
521
521
|
// src/blockchain/ton/types.ts
|
|
522
522
|
var types_exports3 = {};
|
|
523
|
-
__export(types_exports3, {
|
|
524
|
-
WalletType: () => WalletType
|
|
525
|
-
});
|
|
526
|
-
var WalletType = /* @__PURE__ */ ((WalletType2) => {
|
|
527
|
-
WalletType2["V3R2"] = "v3r2";
|
|
528
|
-
WalletType2["V4"] = "v4";
|
|
529
|
-
WalletType2["V5R1"] = "v5r1";
|
|
530
|
-
return WalletType2;
|
|
531
|
-
})(WalletType || {});
|
|
532
523
|
|
|
533
524
|
// src/utils/retry.ts
|
|
534
525
|
function delay(ms) {
|
package/dist/index.mjs
CHANGED
|
@@ -518,15 +518,6 @@ __export(ton_exports, {
|
|
|
518
518
|
|
|
519
519
|
// src/blockchain/ton/types.ts
|
|
520
520
|
var types_exports3 = {};
|
|
521
|
-
__export(types_exports3, {
|
|
522
|
-
WalletType: () => WalletType
|
|
523
|
-
});
|
|
524
|
-
var WalletType = /* @__PURE__ */ ((WalletType2) => {
|
|
525
|
-
WalletType2["V3R2"] = "v3r2";
|
|
526
|
-
WalletType2["V4"] = "v4";
|
|
527
|
-
WalletType2["V5R1"] = "v5r1";
|
|
528
|
-
return WalletType2;
|
|
529
|
-
})(WalletType || {});
|
|
530
521
|
|
|
531
522
|
// src/utils/retry.ts
|
|
532
523
|
function delay(ms) {
|