@huma-finance/soroban-huma-config 0.0.16 → 0.0.17-beta.66
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/README.md +4 -4
- package/dist/cjs/index.d.ts +9 -11
- package/dist/cjs/index.js +26 -18
- package/dist/index.d.ts +9 -11
- package/dist/index.js +26 -18
- package/package.json +4 -4
- package/src/index.ts +256 -292
- package/tsconfig.json +1 -1
- package/tsconfig.tsbuildinfo +1 -1
package/README.md
CHANGED
|
@@ -6,9 +6,9 @@ This library was automatically generated by Soroban CLI using a command similar
|
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
8
|
soroban contract bindings ts \
|
|
9
|
-
--rpc-url https://
|
|
10
|
-
--network-passphrase "
|
|
11
|
-
--contract-id
|
|
9
|
+
--rpc-url https://soroban-testnet.stellar.org \
|
|
10
|
+
--network-passphrase "Test SDF Network ; September 2015" \
|
|
11
|
+
--contract-id CAMYYWFQOTFGWVGPT5R4TIGS56SDQPXJ6K37KLKOBA4G3ZLPMPPBW67K \
|
|
12
12
|
--output-dir ./path/to/tb-humaConfig
|
|
13
13
|
```
|
|
14
14
|
|
|
@@ -30,7 +30,7 @@ However, we've actually encountered [frustration](https://github.com/stellar/sor
|
|
|
30
30
|
|
|
31
31
|
```json
|
|
32
32
|
"scripts": {
|
|
33
|
-
"postinstall": "soroban contract bindings ts --rpc-url https://
|
|
33
|
+
"postinstall": "soroban contract bindings ts --rpc-url https://soroban-testnet.stellar.org --network-passphrase \"Test SDF Network ; September 2015\" --id CAMYYWFQOTFGWVGPT5R4TIGS56SDQPXJ6K37KLKOBA4G3ZLPMPPBW67K --name tb-humaConfig"
|
|
34
34
|
}
|
|
35
35
|
```
|
|
36
36
|
|
package/dist/cjs/index.d.ts
CHANGED
|
@@ -1,15 +1,13 @@
|
|
|
1
|
-
/// <reference types="node" />
|
|
2
|
-
/// <reference types="node" />
|
|
3
1
|
import { Buffer } from "buffer";
|
|
4
|
-
import { AssembledTransaction, Client as ContractClient, ClientOptions as ContractClientOptions } from
|
|
5
|
-
import type { u32 } from
|
|
6
|
-
export * from
|
|
7
|
-
export * as contract from
|
|
8
|
-
export * as rpc from
|
|
2
|
+
import { AssembledTransaction, Client as ContractClient, ClientOptions as ContractClientOptions } from '@stellar/stellar-sdk/contract';
|
|
3
|
+
import type { u32 } from '@stellar/stellar-sdk/contract';
|
|
4
|
+
export * from '@stellar/stellar-sdk';
|
|
5
|
+
export * as contract from '@stellar/stellar-sdk/contract';
|
|
6
|
+
export * as rpc from '@stellar/stellar-sdk/rpc';
|
|
9
7
|
export declare const networks: {
|
|
10
|
-
readonly
|
|
11
|
-
readonly networkPassphrase: "
|
|
12
|
-
readonly contractId: "
|
|
8
|
+
readonly testnet: {
|
|
9
|
+
readonly networkPassphrase: "Test SDF Network ; September 2015";
|
|
10
|
+
readonly contractId: "CAMYYWFQOTFGWVGPT5R4TIGS56SDQPXJ6K37KLKOBA4G3ZLPMPPBW67K";
|
|
13
11
|
};
|
|
14
12
|
};
|
|
15
13
|
export declare const Errors: {
|
|
@@ -106,7 +104,7 @@ export interface Client {
|
|
|
106
104
|
/**
|
|
107
105
|
* Construct and simulate a initialize transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
108
106
|
*/
|
|
109
|
-
initialize: ({ huma_owner, huma_treasury, sentinel
|
|
107
|
+
initialize: ({ huma_owner, huma_treasury, sentinel }: {
|
|
110
108
|
huma_owner: string;
|
|
111
109
|
huma_treasury: string;
|
|
112
110
|
sentinel: string;
|
package/dist/cjs/index.js
CHANGED
|
@@ -18,13 +18,23 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
|
|
|
18
18
|
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
19
19
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
20
20
|
};
|
|
21
|
-
var __importStar = (this && this.__importStar) || function (
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
};
|
|
21
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
22
|
+
var ownKeys = function(o) {
|
|
23
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
24
|
+
var ar = [];
|
|
25
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
26
|
+
return ar;
|
|
27
|
+
};
|
|
28
|
+
return ownKeys(o);
|
|
29
|
+
};
|
|
30
|
+
return function (mod) {
|
|
31
|
+
if (mod && mod.__esModule) return mod;
|
|
32
|
+
var result = {};
|
|
33
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
34
|
+
__setModuleDefault(result, mod);
|
|
35
|
+
return result;
|
|
36
|
+
};
|
|
37
|
+
})();
|
|
28
38
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
39
|
exports.Client = exports.Errors = exports.networks = exports.rpc = exports.contract = void 0;
|
|
30
40
|
const buffer_1 = require("buffer");
|
|
@@ -32,15 +42,15 @@ const contract_1 = require("@stellar/stellar-sdk/contract");
|
|
|
32
42
|
__exportStar(require("@stellar/stellar-sdk"), exports);
|
|
33
43
|
exports.contract = __importStar(require("@stellar/stellar-sdk/contract"));
|
|
34
44
|
exports.rpc = __importStar(require("@stellar/stellar-sdk/rpc"));
|
|
35
|
-
if (typeof window !==
|
|
45
|
+
if (typeof window !== 'undefined') {
|
|
36
46
|
//@ts-ignore Buffer exists
|
|
37
47
|
window.Buffer = window.Buffer || buffer_1.Buffer;
|
|
38
48
|
}
|
|
39
49
|
exports.networks = {
|
|
40
|
-
|
|
41
|
-
networkPassphrase: "
|
|
42
|
-
contractId: "
|
|
43
|
-
}
|
|
50
|
+
testnet: {
|
|
51
|
+
networkPassphrase: "Test SDF Network ; September 2015",
|
|
52
|
+
contractId: "CAMYYWFQOTFGWVGPT5R4TIGS56SDQPXJ6K37KLKOBA4G3ZLPMPPBW67K",
|
|
53
|
+
}
|
|
44
54
|
};
|
|
45
55
|
exports.Errors = {
|
|
46
56
|
101: { message: "PauserRequired" },
|
|
@@ -52,13 +62,12 @@ exports.Errors = {
|
|
|
52
62
|
4: { message: "PoolOperatorRequired" },
|
|
53
63
|
5: { message: "AuthorizedContractCallerRequired" },
|
|
54
64
|
6: { message: "UnsupportedFunction" },
|
|
55
|
-
7: { message: "ZeroAmountProvided" }
|
|
65
|
+
7: { message: "ZeroAmountProvided" }
|
|
56
66
|
};
|
|
57
67
|
class Client extends contract_1.Client {
|
|
58
68
|
options;
|
|
59
69
|
constructor(options) {
|
|
60
|
-
super(new contract_1.Spec([
|
|
61
|
-
"AAAAAAAAAAAAAAAKaW5pdGlhbGl6ZQAAAAAAAwAAAAAAAAAKaHVtYV9vd25lcgAAAAAAEwAAAAAAAAANaHVtYV90cmVhc3VyeQAAAAAAABMAAAAAAAAACHNlbnRpbmVsAAAAEwAAAAA=",
|
|
70
|
+
super(new contract_1.Spec(["AAAAAAAAAAAAAAAKaW5pdGlhbGl6ZQAAAAAAAwAAAAAAAAAKaHVtYV9vd25lcgAAAAAAEwAAAAAAAAANaHVtYV90cmVhc3VyeQAAAAAAABMAAAAAAAAACHNlbnRpbmVsAAAAEwAAAAA=",
|
|
62
71
|
"AAAAAAAAAAAAAAAOc2V0X2h1bWFfb3duZXIAAAAAAAEAAAAAAAAABGFkZHIAAAATAAAAAA==",
|
|
63
72
|
"AAAAAAAAAAAAAAARc2V0X2h1bWFfdHJlYXN1cnkAAAAAAAABAAAAAAAAAARhZGRyAAAAEwAAAAA=",
|
|
64
73
|
"AAAAAAAAAAAAAAAMc2V0X3NlbnRpbmVsAAAAAQAAAAAAAAAEYWRkcgAAABMAAAAA",
|
|
@@ -89,8 +98,7 @@ class Client extends contract_1.Client {
|
|
|
89
98
|
"AAAAAQAAAAAAAAAAAAAAGkxpcXVpZGl0eUFzc2V0UmVtb3ZlZEV2ZW50AAAAAAABAAAAAAAAAAVhc3NldAAAAAAAABM=",
|
|
90
99
|
"AAAAAQAAAAAAAAAAAAAAIlNlbnRpbmVsU2VydmljZUFjY291bnRDaGFuZ2VkRXZlbnQAAAAAAAEAAAAAAAAAB2FjY291bnQAAAAAEw==",
|
|
91
100
|
"AAAAAQAAAAAAAAAAAAAAF1Byb3RvY29sRmVlQ2hhbmdlZEV2ZW50AAAAAAIAAAAAAAAAC25ld19mZWVfYnBzAAAAAAQAAAAAAAAAC29sZF9mZWVfYnBzAAAAAAQ=",
|
|
92
|
-
"AAAABAAAAAAAAAAAAAAAC0NvbW1vbkVycm9yAAAAAAcAAAAAAAAAEkFscmVhZHlJbml0aWFsaXplZAAAAAAAAQAAAAAAAAAdUHJvdG9jb2xJc1BhdXNlZE9yUG9vbElzTm90T24AAAAAAAACAAAAAAAAABxQb29sT3duZXJPckh1bWFPd25lclJlcXVpcmVkAAAAAwAAAAAAAAAUUG9vbE9wZXJhdG9yUmVxdWlyZWQAAAAEAAAAAAAAACBBdXRob3JpemVkQ29udHJhY3RDYWxsZXJSZXF1aXJlZAAAAAUAAAAAAAAAE1Vuc3VwcG9ydGVkRnVuY3Rpb24AAAAABgAAAAAAAAASWmVyb0Ftb3VudFByb3ZpZGVkAAAAAAAH",
|
|
93
|
-
]), options);
|
|
101
|
+
"AAAABAAAAAAAAAAAAAAAC0NvbW1vbkVycm9yAAAAAAcAAAAAAAAAEkFscmVhZHlJbml0aWFsaXplZAAAAAAAAQAAAAAAAAAdUHJvdG9jb2xJc1BhdXNlZE9yUG9vbElzTm90T24AAAAAAAACAAAAAAAAABxQb29sT3duZXJPckh1bWFPd25lclJlcXVpcmVkAAAAAwAAAAAAAAAUUG9vbE9wZXJhdG9yUmVxdWlyZWQAAAAEAAAAAAAAACBBdXRob3JpemVkQ29udHJhY3RDYWxsZXJSZXF1aXJlZAAAAAUAAAAAAAAAE1Vuc3VwcG9ydGVkRnVuY3Rpb24AAAAABgAAAAAAAAASWmVyb0Ftb3VudFByb3ZpZGVkAAAAAAAH"]), options);
|
|
94
102
|
this.options = options;
|
|
95
103
|
}
|
|
96
104
|
fromJSON = {
|
|
@@ -111,7 +119,7 @@ class Client extends contract_1.Client {
|
|
|
111
119
|
get_protocol_fee_bps: (this.txFromJSON),
|
|
112
120
|
is_pauser: (this.txFromJSON),
|
|
113
121
|
is_protocol_paused: (this.txFromJSON),
|
|
114
|
-
is_asset_valid: (this.txFromJSON)
|
|
122
|
+
is_asset_valid: (this.txFromJSON)
|
|
115
123
|
};
|
|
116
124
|
}
|
|
117
125
|
exports.Client = Client;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,15 +1,13 @@
|
|
|
1
|
-
/// <reference types="node" />
|
|
2
|
-
/// <reference types="node" />
|
|
3
1
|
import { Buffer } from "buffer";
|
|
4
|
-
import { AssembledTransaction, Client as ContractClient, ClientOptions as ContractClientOptions } from
|
|
5
|
-
import type { u32 } from
|
|
6
|
-
export * from
|
|
7
|
-
export * as contract from
|
|
8
|
-
export * as rpc from
|
|
2
|
+
import { AssembledTransaction, Client as ContractClient, ClientOptions as ContractClientOptions } from '@stellar/stellar-sdk/contract';
|
|
3
|
+
import type { u32 } from '@stellar/stellar-sdk/contract';
|
|
4
|
+
export * from '@stellar/stellar-sdk';
|
|
5
|
+
export * as contract from '@stellar/stellar-sdk/contract';
|
|
6
|
+
export * as rpc from '@stellar/stellar-sdk/rpc';
|
|
9
7
|
export declare const networks: {
|
|
10
|
-
readonly
|
|
11
|
-
readonly networkPassphrase: "
|
|
12
|
-
readonly contractId: "
|
|
8
|
+
readonly testnet: {
|
|
9
|
+
readonly networkPassphrase: "Test SDF Network ; September 2015";
|
|
10
|
+
readonly contractId: "CAMYYWFQOTFGWVGPT5R4TIGS56SDQPXJ6K37KLKOBA4G3ZLPMPPBW67K";
|
|
13
11
|
};
|
|
14
12
|
};
|
|
15
13
|
export declare const Errors: {
|
|
@@ -106,7 +104,7 @@ export interface Client {
|
|
|
106
104
|
/**
|
|
107
105
|
* Construct and simulate a initialize transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
108
106
|
*/
|
|
109
|
-
initialize: ({ huma_owner, huma_treasury, sentinel
|
|
107
|
+
initialize: ({ huma_owner, huma_treasury, sentinel }: {
|
|
110
108
|
huma_owner: string;
|
|
111
109
|
huma_treasury: string;
|
|
112
110
|
sentinel: string;
|
package/dist/index.js
CHANGED
|
@@ -18,13 +18,23 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
|
|
|
18
18
|
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
19
19
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
20
20
|
};
|
|
21
|
-
var __importStar = (this && this.__importStar) || function (
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
};
|
|
21
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
22
|
+
var ownKeys = function(o) {
|
|
23
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
24
|
+
var ar = [];
|
|
25
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
26
|
+
return ar;
|
|
27
|
+
};
|
|
28
|
+
return ownKeys(o);
|
|
29
|
+
};
|
|
30
|
+
return function (mod) {
|
|
31
|
+
if (mod && mod.__esModule) return mod;
|
|
32
|
+
var result = {};
|
|
33
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
34
|
+
__setModuleDefault(result, mod);
|
|
35
|
+
return result;
|
|
36
|
+
};
|
|
37
|
+
})();
|
|
28
38
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
39
|
exports.Client = exports.Errors = exports.networks = exports.rpc = exports.contract = void 0;
|
|
30
40
|
const buffer_1 = require("buffer");
|
|
@@ -32,15 +42,15 @@ const contract_1 = require("@stellar/stellar-sdk/contract");
|
|
|
32
42
|
__exportStar(require("@stellar/stellar-sdk"), exports);
|
|
33
43
|
exports.contract = __importStar(require("@stellar/stellar-sdk/contract"));
|
|
34
44
|
exports.rpc = __importStar(require("@stellar/stellar-sdk/rpc"));
|
|
35
|
-
if (typeof window !==
|
|
45
|
+
if (typeof window !== 'undefined') {
|
|
36
46
|
//@ts-ignore Buffer exists
|
|
37
47
|
window.Buffer = window.Buffer || buffer_1.Buffer;
|
|
38
48
|
}
|
|
39
49
|
exports.networks = {
|
|
40
|
-
|
|
41
|
-
networkPassphrase: "
|
|
42
|
-
contractId: "
|
|
43
|
-
}
|
|
50
|
+
testnet: {
|
|
51
|
+
networkPassphrase: "Test SDF Network ; September 2015",
|
|
52
|
+
contractId: "CAMYYWFQOTFGWVGPT5R4TIGS56SDQPXJ6K37KLKOBA4G3ZLPMPPBW67K",
|
|
53
|
+
}
|
|
44
54
|
};
|
|
45
55
|
exports.Errors = {
|
|
46
56
|
101: { message: "PauserRequired" },
|
|
@@ -52,13 +62,12 @@ exports.Errors = {
|
|
|
52
62
|
4: { message: "PoolOperatorRequired" },
|
|
53
63
|
5: { message: "AuthorizedContractCallerRequired" },
|
|
54
64
|
6: { message: "UnsupportedFunction" },
|
|
55
|
-
7: { message: "ZeroAmountProvided" }
|
|
65
|
+
7: { message: "ZeroAmountProvided" }
|
|
56
66
|
};
|
|
57
67
|
class Client extends contract_1.Client {
|
|
58
68
|
options;
|
|
59
69
|
constructor(options) {
|
|
60
|
-
super(new contract_1.Spec([
|
|
61
|
-
"AAAAAAAAAAAAAAAKaW5pdGlhbGl6ZQAAAAAAAwAAAAAAAAAKaHVtYV9vd25lcgAAAAAAEwAAAAAAAAANaHVtYV90cmVhc3VyeQAAAAAAABMAAAAAAAAACHNlbnRpbmVsAAAAEwAAAAA=",
|
|
70
|
+
super(new contract_1.Spec(["AAAAAAAAAAAAAAAKaW5pdGlhbGl6ZQAAAAAAAwAAAAAAAAAKaHVtYV9vd25lcgAAAAAAEwAAAAAAAAANaHVtYV90cmVhc3VyeQAAAAAAABMAAAAAAAAACHNlbnRpbmVsAAAAEwAAAAA=",
|
|
62
71
|
"AAAAAAAAAAAAAAAOc2V0X2h1bWFfb3duZXIAAAAAAAEAAAAAAAAABGFkZHIAAAATAAAAAA==",
|
|
63
72
|
"AAAAAAAAAAAAAAARc2V0X2h1bWFfdHJlYXN1cnkAAAAAAAABAAAAAAAAAARhZGRyAAAAEwAAAAA=",
|
|
64
73
|
"AAAAAAAAAAAAAAAMc2V0X3NlbnRpbmVsAAAAAQAAAAAAAAAEYWRkcgAAABMAAAAA",
|
|
@@ -89,8 +98,7 @@ class Client extends contract_1.Client {
|
|
|
89
98
|
"AAAAAQAAAAAAAAAAAAAAGkxpcXVpZGl0eUFzc2V0UmVtb3ZlZEV2ZW50AAAAAAABAAAAAAAAAAVhc3NldAAAAAAAABM=",
|
|
90
99
|
"AAAAAQAAAAAAAAAAAAAAIlNlbnRpbmVsU2VydmljZUFjY291bnRDaGFuZ2VkRXZlbnQAAAAAAAEAAAAAAAAAB2FjY291bnQAAAAAEw==",
|
|
91
100
|
"AAAAAQAAAAAAAAAAAAAAF1Byb3RvY29sRmVlQ2hhbmdlZEV2ZW50AAAAAAIAAAAAAAAAC25ld19mZWVfYnBzAAAAAAQAAAAAAAAAC29sZF9mZWVfYnBzAAAAAAQ=",
|
|
92
|
-
"AAAABAAAAAAAAAAAAAAAC0NvbW1vbkVycm9yAAAAAAcAAAAAAAAAEkFscmVhZHlJbml0aWFsaXplZAAAAAAAAQAAAAAAAAAdUHJvdG9jb2xJc1BhdXNlZE9yUG9vbElzTm90T24AAAAAAAACAAAAAAAAABxQb29sT3duZXJPckh1bWFPd25lclJlcXVpcmVkAAAAAwAAAAAAAAAUUG9vbE9wZXJhdG9yUmVxdWlyZWQAAAAEAAAAAAAAACBBdXRob3JpemVkQ29udHJhY3RDYWxsZXJSZXF1aXJlZAAAAAUAAAAAAAAAE1Vuc3VwcG9ydGVkRnVuY3Rpb24AAAAABgAAAAAAAAASWmVyb0Ftb3VudFByb3ZpZGVkAAAAAAAH",
|
|
93
|
-
]), options);
|
|
101
|
+
"AAAABAAAAAAAAAAAAAAAC0NvbW1vbkVycm9yAAAAAAcAAAAAAAAAEkFscmVhZHlJbml0aWFsaXplZAAAAAAAAQAAAAAAAAAdUHJvdG9jb2xJc1BhdXNlZE9yUG9vbElzTm90T24AAAAAAAACAAAAAAAAABxQb29sT3duZXJPckh1bWFPd25lclJlcXVpcmVkAAAAAwAAAAAAAAAUUG9vbE9wZXJhdG9yUmVxdWlyZWQAAAAEAAAAAAAAACBBdXRob3JpemVkQ29udHJhY3RDYWxsZXJSZXF1aXJlZAAAAAUAAAAAAAAAE1Vuc3VwcG9ydGVkRnVuY3Rpb24AAAAABgAAAAAAAAASWmVyb0Ftb3VudFByb3ZpZGVkAAAAAAAH"]), options);
|
|
94
102
|
this.options = options;
|
|
95
103
|
}
|
|
96
104
|
fromJSON = {
|
|
@@ -111,7 +119,7 @@ class Client extends contract_1.Client {
|
|
|
111
119
|
get_protocol_fee_bps: (this.txFromJSON),
|
|
112
120
|
is_pauser: (this.txFromJSON),
|
|
113
121
|
is_protocol_paused: (this.txFromJSON),
|
|
114
|
-
is_asset_valid: (this.txFromJSON)
|
|
122
|
+
is_asset_valid: (this.txFromJSON)
|
|
115
123
|
};
|
|
116
124
|
}
|
|
117
125
|
exports.Client = Client;
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.0.
|
|
2
|
+
"version": "0.0.17-beta.66+2d77d8b",
|
|
3
3
|
"name": "@huma-finance/soroban-huma-config",
|
|
4
4
|
"exports": {
|
|
5
5
|
".": {
|
|
@@ -13,15 +13,15 @@
|
|
|
13
13
|
"clean": "tsc --build --clean && rm -rf dist"
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@stellar/stellar-sdk": "
|
|
16
|
+
"@stellar/stellar-sdk": "13.0.0",
|
|
17
17
|
"buffer": "6.0.3"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
|
-
"typescript": "5.
|
|
20
|
+
"typescript": "^5.6.2"
|
|
21
21
|
},
|
|
22
22
|
"publishConfig": {
|
|
23
23
|
"access": "public",
|
|
24
24
|
"registry": "https://registry.npmjs.org/"
|
|
25
25
|
},
|
|
26
|
-
"gitHead": "
|
|
26
|
+
"gitHead": "2d77d8b4e2587941ab66fef1503f18be7ddc407f"
|
|
27
27
|
}
|