@allbridge/bridge-core-sdk 3.15.4 → 3.16.0-alpha.1
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/browser/index.js +3 -3
- package/dist/browser/index.js.map +4 -4
- package/dist/cjs/index.js +4 -4
- package/dist/cjs/index.js.map +4 -4
- package/dist/esm/index.js +4 -4
- package/dist/esm/index.js.map +4 -4
- package/dist/src/services/bridge/srb/index.js +11 -10
- package/dist/src/services/bridge/srb/index.js.map +1 -1
- package/dist/src/services/bridge/utils.js +1 -1
- package/dist/src/services/bridge/utils.js.map +1 -1
- package/dist/src/services/liquidity-pool/srb/index.js +17 -14
- package/dist/src/services/liquidity-pool/srb/index.js.map +1 -1
- package/dist/src/services/models/srb/bridge-contract.d.ts +801 -0
- package/dist/src/services/models/srb/{bridge.js → bridge-contract.js} +49 -97
- package/dist/src/services/models/srb/bridge-contract.js.map +1 -0
- package/dist/src/services/models/srb/gas-oracle-contract.d.ts +350 -0
- package/dist/src/services/models/srb/gas-oracle-contract.js +87 -0
- package/dist/src/services/models/srb/gas-oracle-contract.js.map +1 -0
- package/dist/src/services/models/srb/messenger-contract.d.ts +573 -0
- package/dist/src/services/models/srb/messenger-contract.js +111 -0
- package/dist/src/services/models/srb/messenger-contract.js.map +1 -0
- package/dist/src/services/models/srb/pool-contract.d.ts +690 -0
- package/dist/src/services/models/srb/pool-contract.js +125 -0
- package/dist/src/services/models/srb/pool-contract.js.map +1 -0
- package/dist/src/services/models/srb/token-contract.d.ts +437 -160
- package/dist/src/services/models/srb/token-contract.js +41 -288
- package/dist/src/services/models/srb/token-contract.js.map +1 -1
- package/dist/src/services/models/srb/utils.d.ts +6 -0
- package/dist/src/services/models/srb/utils.js +35 -0
- package/dist/src/services/models/srb/utils.js.map +1 -0
- package/dist/src/services/token/srb/index.js +1 -1
- package/dist/src/services/token/srb/index.js.map +1 -1
- package/dist/src/utils/srb/index.d.ts +5 -6
- package/dist/src/utils/srb/index.js +1 -1
- package/dist/src/utils/srb/index.js.map +1 -1
- package/dist/src/version.d.ts +1 -1
- package/dist/src/version.js +1 -1
- package/dist/src/version.js.map +1 -1
- package/package.json +2 -2
- package/dist/src/services/models/srb/bridge.d.ts +0 -169
- package/dist/src/services/models/srb/bridge.js.map +0 -1
- package/dist/src/services/models/srb/pool.d.ts +0 -293
- package/dist/src/services/models/srb/pool.js +0 -233
- package/dist/src/services/models/srb/pool.js.map +0 -1
- package/dist/src/services/utils/srb/assembled-tx.d.ts +0 -73
- package/dist/src/services/utils/srb/assembled-tx.js +0 -143
- package/dist/src/services/utils/srb/assembled-tx.js.map +0 -1
- package/dist/src/services/utils/srb/build-tx.d.ts +0 -48
- package/dist/src/services/utils/srb/build-tx.js +0 -62
- package/dist/src/services/utils/srb/build-tx.js.map +0 -1
- package/dist/src/services/utils/srb/method-options.d.ts +0 -47
- package/dist/src/services/utils/srb/method-options.js +0 -5
- package/dist/src/services/utils/srb/method-options.js.map +0 -1
|
@@ -1,233 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/* eslint-disable @typescript-eslint/ban-ts-comment */
|
|
3
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
4
|
-
if (k2 === undefined) k2 = k;
|
|
5
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
6
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
7
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
8
|
-
}
|
|
9
|
-
Object.defineProperty(o, k2, desc);
|
|
10
|
-
}) : (function(o, m, k, k2) {
|
|
11
|
-
if (k2 === undefined) k2 = k;
|
|
12
|
-
o[k2] = m[k];
|
|
13
|
-
}));
|
|
14
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
15
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
16
|
-
};
|
|
17
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
-
exports.PoolContract = exports.Errors = exports.networks = void 0;
|
|
19
|
-
const stellar_sdk_1 = require("stellar-sdk");
|
|
20
|
-
const assembled_tx_1 = require("../../utils/srb/assembled-tx");
|
|
21
|
-
const build_tx_1 = require("../../utils/srb/build-tx");
|
|
22
|
-
__exportStar(require("../../utils/srb/assembled-tx"), exports);
|
|
23
|
-
__exportStar(require("../../utils/srb/method-options"), exports);
|
|
24
|
-
exports.networks = {
|
|
25
|
-
testnet: {
|
|
26
|
-
networkPassphrase: "Test SDF Network ; September 2015",
|
|
27
|
-
contractId: "CAAIJH55UJZXY7YZ3QQJ5S43KAY4ACEU5EBNS6NLUKJXRQEU2ZC36MUR",
|
|
28
|
-
},
|
|
29
|
-
};
|
|
30
|
-
/**
|
|
31
|
-
|
|
32
|
-
*/
|
|
33
|
-
exports.Errors = {
|
|
34
|
-
0: { message: "" },
|
|
35
|
-
1: { message: "" },
|
|
36
|
-
2: { message: "" },
|
|
37
|
-
3: { message: "" },
|
|
38
|
-
4: { message: "" },
|
|
39
|
-
5: { message: "" },
|
|
40
|
-
6: { message: "" },
|
|
41
|
-
7: { message: "" },
|
|
42
|
-
8: { message: "" },
|
|
43
|
-
9: { message: "" },
|
|
44
|
-
103: { message: "" },
|
|
45
|
-
104: { message: "" },
|
|
46
|
-
105: { message: "" },
|
|
47
|
-
106: { message: "" },
|
|
48
|
-
107: { message: "" },
|
|
49
|
-
108: { message: "" },
|
|
50
|
-
109: { message: "" },
|
|
51
|
-
203: { message: "" },
|
|
52
|
-
204: { message: "" },
|
|
53
|
-
205: { message: "" },
|
|
54
|
-
206: { message: "" },
|
|
55
|
-
207: { message: "" },
|
|
56
|
-
208: { message: "" },
|
|
57
|
-
209: { message: "" },
|
|
58
|
-
210: { message: "" },
|
|
59
|
-
211: { message: "" },
|
|
60
|
-
212: { message: "" },
|
|
61
|
-
214: { message: "" },
|
|
62
|
-
215: { message: "" },
|
|
63
|
-
216: { message: "" },
|
|
64
|
-
217: { message: "" },
|
|
65
|
-
218: { message: "" },
|
|
66
|
-
300: { message: "" },
|
|
67
|
-
301: { message: "" },
|
|
68
|
-
302: { message: "" },
|
|
69
|
-
303: { message: "" },
|
|
70
|
-
400: { message: "" },
|
|
71
|
-
};
|
|
72
|
-
class PoolContract {
|
|
73
|
-
constructor(options) {
|
|
74
|
-
this.options = options;
|
|
75
|
-
this.parsers = {
|
|
76
|
-
deposit: (result) => {
|
|
77
|
-
if (result instanceof assembled_tx_1.Err)
|
|
78
|
-
return result;
|
|
79
|
-
return new assembled_tx_1.Ok(this.spec.funcResToNative("deposit", result));
|
|
80
|
-
},
|
|
81
|
-
withdraw: (result) => {
|
|
82
|
-
if (result instanceof assembled_tx_1.Err)
|
|
83
|
-
return result;
|
|
84
|
-
return new assembled_tx_1.Ok(this.spec.funcResToNative("withdraw", result));
|
|
85
|
-
},
|
|
86
|
-
claimRewards: (result) => {
|
|
87
|
-
if (result instanceof assembled_tx_1.Err)
|
|
88
|
-
return result;
|
|
89
|
-
return new assembled_tx_1.Ok(this.spec.funcResToNative("claim_rewards", result));
|
|
90
|
-
},
|
|
91
|
-
getPool: (result) => {
|
|
92
|
-
if (result instanceof assembled_tx_1.Err)
|
|
93
|
-
return result;
|
|
94
|
-
return new assembled_tx_1.Ok(this.spec.funcResToNative("get_pool", result));
|
|
95
|
-
},
|
|
96
|
-
getUserDeposit: (result) => {
|
|
97
|
-
if (result instanceof assembled_tx_1.Err)
|
|
98
|
-
return result;
|
|
99
|
-
return new assembled_tx_1.Ok(this.spec.funcResToNative("get_user_deposit", result));
|
|
100
|
-
},
|
|
101
|
-
};
|
|
102
|
-
/**
|
|
103
|
-
* Construct and simulate a deposit 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.
|
|
104
|
-
*/
|
|
105
|
-
this.depositXdr = async ({ sender, amount }, options = {}) => {
|
|
106
|
-
return await build_tx_1.XDRTransactionBuilder.xdrFromSimulation({
|
|
107
|
-
method: "deposit",
|
|
108
|
-
args: this.spec.funcArgsToScVals("deposit", {
|
|
109
|
-
sender: new stellar_sdk_1.Address(sender),
|
|
110
|
-
amount,
|
|
111
|
-
}),
|
|
112
|
-
account: sender,
|
|
113
|
-
...options,
|
|
114
|
-
...this.options,
|
|
115
|
-
errorTypes: exports.Errors,
|
|
116
|
-
// @ts-expect-error
|
|
117
|
-
parseResultXdr: this.parsers.deposit,
|
|
118
|
-
});
|
|
119
|
-
};
|
|
120
|
-
/**
|
|
121
|
-
* Construct and simulate a withdraw 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.
|
|
122
|
-
*/
|
|
123
|
-
this.withdrawXdr = async ({ sender, amount_lp }, options = {}) => {
|
|
124
|
-
return await build_tx_1.XDRTransactionBuilder.xdrFromSimulation({
|
|
125
|
-
method: "withdraw",
|
|
126
|
-
args: this.spec.funcArgsToScVals("withdraw", {
|
|
127
|
-
sender: new stellar_sdk_1.Address(sender),
|
|
128
|
-
amount_lp,
|
|
129
|
-
}),
|
|
130
|
-
account: sender,
|
|
131
|
-
...options,
|
|
132
|
-
...this.options,
|
|
133
|
-
errorTypes: exports.Errors,
|
|
134
|
-
// @ts-expect-error
|
|
135
|
-
parseResultXdr: this.parsers.withdraw,
|
|
136
|
-
});
|
|
137
|
-
};
|
|
138
|
-
/**
|
|
139
|
-
* Construct and simulate a claim_rewards 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.
|
|
140
|
-
*/
|
|
141
|
-
this.claimRewardsXdr = async ({ sender }, options = {}) => {
|
|
142
|
-
return await build_tx_1.XDRTransactionBuilder.xdrFromSimulation({
|
|
143
|
-
method: "claim_rewards",
|
|
144
|
-
args: this.spec.funcArgsToScVals("claim_rewards", {
|
|
145
|
-
sender: new stellar_sdk_1.Address(sender),
|
|
146
|
-
}),
|
|
147
|
-
account: sender,
|
|
148
|
-
...options,
|
|
149
|
-
...this.options,
|
|
150
|
-
errorTypes: exports.Errors,
|
|
151
|
-
// @ts-expect-error
|
|
152
|
-
parseResultXdr: this.parsers.claimRewards,
|
|
153
|
-
});
|
|
154
|
-
};
|
|
155
|
-
/**
|
|
156
|
-
* Construct and simulate a get_pool 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.
|
|
157
|
-
*/
|
|
158
|
-
this.getPool = async (options = {}) => {
|
|
159
|
-
return await assembled_tx_1.AssembledTransaction.fromSimulation({
|
|
160
|
-
method: "get_pool",
|
|
161
|
-
args: this.spec.funcArgsToScVals("get_pool", {}),
|
|
162
|
-
...options,
|
|
163
|
-
...this.options,
|
|
164
|
-
errorTypes: exports.Errors,
|
|
165
|
-
// @ts-expect-error
|
|
166
|
-
parseResultXdr: this.parsers.getPool,
|
|
167
|
-
});
|
|
168
|
-
};
|
|
169
|
-
/**
|
|
170
|
-
* Construct and simulate a get_user_deposit 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.
|
|
171
|
-
*/
|
|
172
|
-
this.getUserDeposit = async ({ user }, options = {}) => {
|
|
173
|
-
return await assembled_tx_1.AssembledTransaction.fromSimulation({
|
|
174
|
-
method: "get_user_deposit",
|
|
175
|
-
args: this.spec.funcArgsToScVals("get_user_deposit", {
|
|
176
|
-
user: new stellar_sdk_1.Address(user),
|
|
177
|
-
}),
|
|
178
|
-
...options,
|
|
179
|
-
...this.options,
|
|
180
|
-
errorTypes: exports.Errors,
|
|
181
|
-
// @ts-expect-error
|
|
182
|
-
parseResultXdr: this.parsers.getUserDeposit,
|
|
183
|
-
});
|
|
184
|
-
};
|
|
185
|
-
this.spec = new stellar_sdk_1.ContractSpec([
|
|
186
|
-
"AAAAAAAAAAAAAAAKaW5pdGlhbGl6ZQAAAAAABwAAAAAAAAAFYWRtaW4AAAAAAAATAAAAAAAAAAZicmlkZ2UAAAAAABMAAAAAAAAAAWEAAAAAAAAKAAAAAAAAAAV0b2tlbgAAAAAAABMAAAAAAAAADGZlZV9zaGFyZV9icAAAAAoAAAAAAAAAFGJhbGFuY2VfcmF0aW9fbWluX2JwAAAACgAAAAAAAAASYWRtaW5fZmVlX3NoYXJlX2JwAAAAAAAKAAAAAQAAA+kAAAPtAAAAAAAAAAM=",
|
|
187
|
-
"AAAAAAAAAAAAAAAHZGVwb3NpdAAAAAACAAAAAAAAAAZzZW5kZXIAAAAAABMAAAAAAAAABmFtb3VudAAAAAAACgAAAAEAAAPpAAAD7QAAAAAAAAAD",
|
|
188
|
-
"AAAAAAAAAAAAAAAId2l0aGRyYXcAAAACAAAAAAAAAAZzZW5kZXIAAAAAABMAAAAAAAAACWFtb3VudF9scAAAAAAAAAoAAAABAAAD6QAAA+0AAAAAAAAAAw==",
|
|
189
|
-
"AAAAAAAAAAAAAAANc3dhcF90b192X3VzZAAAAAAAAAMAAAAAAAAABHVzZXIAAAATAAAAAAAAAAZhbW91bnQAAAAAAAoAAAAAAAAACHplcm9fZmVlAAAAAQAAAAEAAAPpAAAACgAAAAM=",
|
|
190
|
-
"AAAAAAAAAAAAAAAPc3dhcF9mcm9tX3ZfdXNkAAAAAAUAAAAAAAAABHVzZXIAAAATAAAAAAAAAAt2dXNkX2Ftb3VudAAAAAAKAAAAAAAAABJyZWNlaXZlX2Ftb3VudF9taW4AAAAAAAoAAAAAAAAACHplcm9fZmVlAAAAAQAAAAAAAAAJY2xhaW1hYmxlAAAAAAAAAQAAAAEAAAPpAAAACgAAAAM=",
|
|
191
|
-
"AAAAAAAAAAAAAAANY2xhaW1fcmV3YXJkcwAAAAAAAAEAAAAAAAAABnNlbmRlcgAAAAAAEwAAAAEAAAPpAAAD7QAAAAAAAAAD",
|
|
192
|
-
"AAAAAAAAAAAAAAANY2xhaW1fYmFsYW5jZQAAAAAAAAEAAAAAAAAABHVzZXIAAAATAAAAAQAAA+kAAAPtAAAAAAAAAAM=",
|
|
193
|
-
"AAAAAAAAAAdgYWRtaW5gAAAAAA1zZXRfZmVlX3NoYXJlAAAAAAAAAQAAAAAAAAAMZmVlX3NoYXJlX2JwAAAACgAAAAEAAAPpAAAD7QAAAAAAAAAD",
|
|
194
|
-
"AAAAAAAAAAAAAAAWYWRqdXN0X3RvdGFsX2xwX2Ftb3VudAAAAAAAAAAAAAEAAAPpAAAD7QAAAAAAAAAD",
|
|
195
|
-
"AAAAAAAAAAAAAAAYc2V0X2JhbGFuY2VfcmF0aW9fbWluX2JwAAAAAQAAAAAAAAAUYmFsYW5jZV9yYXRpb19taW5fYnAAAAAKAAAAAQAAA+kAAAPtAAAAAAAAAAM=",
|
|
196
|
-
"AAAAAAAAAAAAAAAMc3RvcF9kZXBvc2l0AAAAAAAAAAEAAAPpAAAD7QAAAAAAAAAD",
|
|
197
|
-
"AAAAAAAAAAAAAAANc3RhcnRfZGVwb3NpdAAAAAAAAAAAAAABAAAD6QAAA+0AAAAAAAAAAw==",
|
|
198
|
-
"AAAAAAAAAAAAAAANc3RvcF93aXRoZHJhdwAAAAAAAAAAAAABAAAD6QAAA+0AAAAAAAAAAw==",
|
|
199
|
-
"AAAAAAAAAAAAAAAOc3RhcnRfd2l0aGRyYXcAAAAAAAAAAAABAAAD6QAAA+0AAAAAAAAAAw==",
|
|
200
|
-
"AAAAAAAAAAAAAAASc2V0X3N0b3BfYXV0aG9yaXR5AAAAAAABAAAAAAAAAA5zdG9wX2F1dGhvcml0eQAAAAAAEwAAAAEAAAPpAAAD7QAAAAAAAAAD",
|
|
201
|
-
"AAAAAAAAAAAAAAAKc2V0X2JyaWRnZQAAAAAAAQAAAAAAAAAGYnJpZGdlAAAAAAATAAAAAQAAA+kAAAPtAAAAAAAAAAM=",
|
|
202
|
-
"AAAAAAAAAAAAAAAJc2V0X2FkbWluAAAAAAAAAQAAAAAAAAAJbmV3X2FkbWluAAAAAAAAEwAAAAEAAAPpAAAD7QAAAAAAAAAD",
|
|
203
|
-
"AAAAAAAAAAAAAAATc2V0X2FkbWluX2ZlZV9zaGFyZQAAAAABAAAAAAAAABJhZG1pbl9mZWVfc2hhcmVfYnAAAAAAAAoAAAABAAAD6QAAA+0AAAAAAAAAAw==",
|
|
204
|
-
"AAAAAAAAAAAAAAAPY2xhaW1fYWRtaW5fZmVlAAAAAAAAAAABAAAD6QAAA+0AAAAAAAAAAw==",
|
|
205
|
-
"AAAAAAAAAAZgdmlld2AAAAAAAA5wZW5kaW5nX3Jld2FyZAAAAAAAAQAAAAAAAAAEdXNlcgAAABMAAAABAAAD6QAAAAoAAAAD",
|
|
206
|
-
"AAAAAAAAAAAAAAAIZ2V0X3Bvb2wAAAAAAAAAAQAAA+kAAAfQAAAABFBvb2wAAAAD",
|
|
207
|
-
"AAAAAAAAAAAAAAAJZ2V0X2FkbWluAAAAAAAAAAAAAAEAAAPpAAAAEwAAAAM=",
|
|
208
|
-
"AAAAAAAAAAAAAAASZ2V0X3N0b3BfYXV0aG9yaXR5AAAAAAAAAAAAAQAAA+kAAAATAAAAAw==",
|
|
209
|
-
"AAAAAAAAAAAAAAAKZ2V0X2JyaWRnZQAAAAAAAAAAAAEAAAPpAAAAEwAAAAM=",
|
|
210
|
-
"AAAAAAAAAAAAAAAQZ2V0X3VzZXJfZGVwb3NpdAAAAAEAAAAAAAAABHVzZXIAAAATAAAAAQAAA+kAAAfQAAAAC1VzZXJEZXBvc2l0AAAAAAM=",
|
|
211
|
-
"AAAAAAAAAAAAAAAVZ2V0X2NsYWltYWJsZV9iYWxhbmNlAAAAAAAAAQAAAAAAAAAEdXNlcgAAABMAAAABAAAD6QAAAAoAAAAD",
|
|
212
|
-
"AAAAAQAAAAAAAAAAAAAAD1N3YXBwZWRGcm9tVlVzZAAAAAAFAAAAAAAAAAZhbW91bnQAAAAAAAoAAAAAAAAAA2ZlZQAAAAAKAAAAAAAAAAlyZWNpcGllbnQAAAAAAAATAAAAAAAAAAV0b2tlbgAAAAAAABMAAAAAAAAAC3Z1c2RfYW1vdW50AAAAAAo=",
|
|
213
|
-
"AAAAAQAAAAAAAAAAAAAADVN3YXBwZWRUb1ZVc2QAAAAAAAAFAAAAAAAAAAZhbW91bnQAAAAAAAoAAAAAAAAAA2ZlZQAAAAAKAAAAAAAAAAZzZW5kZXIAAAAAABMAAAAAAAAABXRva2VuAAAAAAAAEwAAAAAAAAALdnVzZF9hbW91bnQAAAAACg==",
|
|
214
|
-
"AAAAAQAAAAAAAAAAAAAAB0RlcG9zaXQAAAAAAgAAAAAAAAAGYW1vdW50AAAAAAAKAAAAAAAAAAR1c2VyAAAAEw==",
|
|
215
|
-
"AAAAAQAAAAAAAAAAAAAACFdpdGhkcmF3AAAAAgAAAAAAAAAGYW1vdW50AAAAAAAKAAAAAAAAAAR1c2VyAAAAEw==",
|
|
216
|
-
"AAAAAQAAAAAAAAAAAAAADlJld2FyZHNDbGFpbWVkAAAAAAACAAAAAAAAAAZhbW91bnQAAAAAAAoAAAAAAAAABHVzZXIAAAAT",
|
|
217
|
-
"AAAAAQAAAAAAAAAAAAAADkJhbGFuY2VDbGFpbWVkAAAAAAACAAAAAAAAAAZhbW91bnQAAAAAAAoAAAAAAAAABHVzZXIAAAAT",
|
|
218
|
-
"AAAAAQAAAAAAAAAAAAAABkJyaWRnZQAAAAAAAQAAAAAAAAABMAAAAAAAABM=",
|
|
219
|
-
"AAAAAgAAAAAAAAAAAAAAB0RhdGFLZXkAAAAAAgAAAAEAAAAAAAAAC1VzZXJEZXBvc2l0AAAAAAEAAAATAAAAAQAAAAAAAAAQQ2xhaW1hYmxlQmFsYW5jZQAAAAEAAAAT",
|
|
220
|
-
"AAAAAQAAAAAAAAAAAAAABFBvb2wAAAAPAAAAAAAAAAFhAAAAAAAACgAAAAAAAAAWYWNjX3Jld2FyZF9wZXJfc2hhcmVfcAAAAAAACgAAAAAAAAAQYWRtaW5fZmVlX2Ftb3VudAAAAAoAAAAAAAAAEmFkbWluX2ZlZV9zaGFyZV9icAAAAAAACgAAAAAAAAAUYmFsYW5jZV9yYXRpb19taW5fYnAAAAAKAAAAAAAAAAtjYW5fZGVwb3NpdAAAAAABAAAAAAAAAAxjYW5fd2l0aGRyYXcAAAABAAAAAAAAAAFkAAAAAAAACgAAAAAAAAAIZGVjaW1hbHMAAAAEAAAAAAAAAAxmZWVfc2hhcmVfYnAAAAAKAAAAAAAAAAhyZXNlcnZlcwAAAAoAAAAAAAAABXRva2VuAAAAAAAAEwAAAAAAAAANdG9rZW5fYmFsYW5jZQAAAAAAAAoAAAAAAAAAD3RvdGFsX2xwX2Ftb3VudAAAAAAKAAAAAAAAAA12X3VzZF9iYWxhbmNlAAAAAAAACg==",
|
|
221
|
-
"AAAAAQAAAAAAAAAAAAAAC1VzZXJEZXBvc2l0AAAAAAIAAAAAAAAACWxwX2Ftb3VudAAAAAAAAAoAAAAAAAAAC3Jld2FyZF9kZWJ0AAAAAAo=",
|
|
222
|
-
"AAAAAQAAAAAAAAAAAAAAEENsYWltYWJsZUJhbGFuY2UAAAABAAAAAAAAAAZhbW91bnQAAAAAAAo=",
|
|
223
|
-
"AAAAAQAAAAAAAAAAAAAABUFkbWluAAAAAAAAAQAAAAAAAAABMAAAAAAAABM=",
|
|
224
|
-
"AAAAAQAAAAAAAAAAAAAAEEdhc09yYWNsZUFkZHJlc3MAAAABAAAAAAAAAAEwAAAAAAAAEw==",
|
|
225
|
-
"AAAAAQAAAAAAAAAAAAAACEdhc1VzYWdlAAAAAQAAAAAAAAABMAAAAAAAA+wAAAAEAAAACg==",
|
|
226
|
-
"AAAAAQAAAAAAAAAAAAAAC05hdGl2ZVRva2VuAAAAAAEAAAAAAAAAATAAAAAAAAAT",
|
|
227
|
-
"AAAAAQAAAAAAAAAAAAAADVN0b3BBdXRob3JpdHkAAAAAAAABAAAAAAAAAAEwAAAAAAAAEw==",
|
|
228
|
-
"AAAABAAAAAAAAAAAAAAABUVycm9yAAAAAAAAJQAAAAAAAAANVW5pbXBsZW1lbnRlZAAAAAAAAAAAAAAAAAAAC0luaXRpYWxpemVkAAAAAAEAAAAAAAAADVVuaW5pdGlhbGl6ZWQAAAAAAAACAAAAAAAAAAxVbmF1dGhvcml6ZWQAAAADAAAAAAAAAApJbnZhbGlkQXJnAAAAAAAEAAAAAAAAAA5JbnZhbGlkQ2hhaW5JZAAAAAAABQAAAAAAAAATSW52YWxpZE90aGVyQ2hhaW5JZAAAAAAGAAAAAAAAAA5HYXNVc2FnZU5vdFNldAAAAAAABwAAAAAAAAANQnJva2VuQWRkcmVzcwAAAAAAAAgAAAAAAAAACE5vdEZvdW5kAAAACQAAAAAAAAAKWmVyb0Ftb3VudAAAAAAAZwAAAAAAAAAMUG9vbE92ZXJmbG93AAAAaAAAAAAAAAALWmVyb0NoYW5nZXMAAAAAaQAAAAAAAAARUmVzZXJ2ZXNFeGhhdXN0ZWQAAAAAAABqAAAAAAAAABpJbnN1ZmZpY2llbnRSZWNlaXZlZEFtb3VudAAAAAAAawAAAAAAAAAUQmFsYW5jZVJhdGlvRXhjZWVkZWQAAABsAAAAAAAAAAlGb3JiaWRkZW4AAAAAAABtAAAAAAAAABlVbmF1dGhvcml6ZWRTdG9wQXV0aG9yaXR5AAAAAAAAywAAAAAAAAAOU3dhcFByb2hpYml0ZWQAAAAAAMwAAAAAAAAAEkFtb3VudFRvb0xvd0ZvckZlZQAAAAAAzQAAAAAAAAAWQnJpZGdlVG9UaGVaZXJvQWRkcmVzcwAAAAAAzgAAAAAAAAAORW1wdHlSZWNpcGllbnQAAAAAAM8AAAAAAAAAE1NvdXJjZU5vdFJlZ2lzdGVyZWQAAAAA0AAAAAAAAAAVV3JvbmdEZXN0aW5hdGlvbkNoYWluAAAAAAAA0QAAAAAAAAATVW5rbm93bkFub3RoZXJDaGFpbgAAAADSAAAAAAAAABFUb2tlbnNBbHJlYWR5U2VudAAAAAAAANMAAAAAAAAAEE1lc3NhZ2VQcm9jZXNzZWQAAADUAAAAAAAAAAxOb3RFbm91Z2hGZWUAAADWAAAAAAAAAAlOb01lc3NhZ2UAAAAAAADXAAAAAAAAAA1Ob1JlY2VpdmVQb29sAAAAAAAA2AAAAAAAAAAGTm9Qb29sAAAAAADZAAAAAAAAABNVbmtub3duQW5vdGhlclRva2VuAAAAANoAAAAAAAAAD1dyb25nQnl0ZUxlbmd0aAAAAAEsAAAAAAAAAApIYXNNZXNzYWdlAAAAAAEtAAAAAAAAABdJbnZhbGlkUHJpbWFyeVNpZ25hdHVyZQAAAAEuAAAAAAAAABlJbnZhbGlkU2Vjb25kYXJ5U2lnbmF0dXJlAAAAAAABLwAAAAAAAAARTm9HYXNEYXRhRm9yQ2hhaW4AAAAAAAGQ",
|
|
229
|
-
]);
|
|
230
|
-
}
|
|
231
|
-
}
|
|
232
|
-
exports.PoolContract = PoolContract;
|
|
233
|
-
//# sourceMappingURL=pool.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"pool.js","sourceRoot":"","sources":["../../../../../src/services/models/srb/pool.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,73 +0,0 @@
|
|
|
1
|
-
import type { Transaction } from "stellar-sdk";
|
|
2
|
-
import { Account, Address, SorobanRpc, xdr } from "stellar-sdk";
|
|
3
|
-
import type { ClassOptions, MethodOptions } from "./method-options";
|
|
4
|
-
export type Tx = Transaction;
|
|
5
|
-
export declare class ExpiredStateError extends Error {
|
|
6
|
-
}
|
|
7
|
-
export type u32 = number;
|
|
8
|
-
export type i32 = number;
|
|
9
|
-
export type u64 = bigint;
|
|
10
|
-
export type i64 = bigint;
|
|
11
|
-
export type u128 = bigint;
|
|
12
|
-
export type i128 = bigint;
|
|
13
|
-
export type u256 = bigint;
|
|
14
|
-
export type i256 = bigint;
|
|
15
|
-
export type Option<T> = T | undefined;
|
|
16
|
-
export type Typepoint = bigint;
|
|
17
|
-
export type Duration = bigint;
|
|
18
|
-
export { Address };
|
|
19
|
-
export interface Error_ {
|
|
20
|
-
message: string;
|
|
21
|
-
}
|
|
22
|
-
export interface Result<T, E extends Error_> {
|
|
23
|
-
unwrap(): T;
|
|
24
|
-
unwrapErr(): E;
|
|
25
|
-
isOk(): boolean;
|
|
26
|
-
isErr(): boolean;
|
|
27
|
-
}
|
|
28
|
-
export declare class Ok<T, E extends Error_ = Error_> implements Result<T, E> {
|
|
29
|
-
readonly value: T;
|
|
30
|
-
constructor(value: T);
|
|
31
|
-
unwrapErr(): E;
|
|
32
|
-
unwrap(): T;
|
|
33
|
-
isOk(): boolean;
|
|
34
|
-
isErr(): boolean;
|
|
35
|
-
}
|
|
36
|
-
export declare class Err<E extends Error_ = Error_> implements Result<any, E> {
|
|
37
|
-
readonly error: E;
|
|
38
|
-
constructor(error: E);
|
|
39
|
-
unwrapErr(): E;
|
|
40
|
-
unwrap(): never;
|
|
41
|
-
isOk(): boolean;
|
|
42
|
-
isErr(): boolean;
|
|
43
|
-
}
|
|
44
|
-
export declare const contractErrorPattern: RegExp;
|
|
45
|
-
type AssembledTransactionOptions<T = string> = MethodOptions & ClassOptions & {
|
|
46
|
-
method: string;
|
|
47
|
-
args?: any[];
|
|
48
|
-
parseResultXdr: (xdr: string | xdr.ScVal | Err) => T;
|
|
49
|
-
};
|
|
50
|
-
export declare const NULL_ACCOUNT = "GAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWHF";
|
|
51
|
-
export declare class AssembledTransaction<T> {
|
|
52
|
-
options: AssembledTransactionOptions<T>;
|
|
53
|
-
raw: Tx;
|
|
54
|
-
private simulation?;
|
|
55
|
-
private simulationResult?;
|
|
56
|
-
private simulationTransactionData?;
|
|
57
|
-
private server;
|
|
58
|
-
private constructor();
|
|
59
|
-
static fromSimulation<T>(options: AssembledTransactionOptions<T>): Promise<AssembledTransaction<T>>;
|
|
60
|
-
simulate: () => Promise<this>;
|
|
61
|
-
get simulationData(): {
|
|
62
|
-
result: SorobanRpc.Api.SimulateHostFunctionResult;
|
|
63
|
-
transactionData: xdr.SorobanTransactionData;
|
|
64
|
-
};
|
|
65
|
-
get result(): T;
|
|
66
|
-
parseError(errorMessage: string): Err | undefined;
|
|
67
|
-
/**
|
|
68
|
-
* Get account details from the Soroban network for the publicKey currently
|
|
69
|
-
* selected in user's wallet. If not connected to Freighter, use placeholder
|
|
70
|
-
* null account.
|
|
71
|
-
*/
|
|
72
|
-
getAccount: () => Account;
|
|
73
|
-
}
|
|
@@ -1,143 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.AssembledTransaction = exports.NULL_ACCOUNT = exports.contractErrorPattern = exports.Err = exports.Ok = exports.Address = exports.ExpiredStateError = void 0;
|
|
4
|
-
const stellar_sdk_1 = require("stellar-sdk");
|
|
5
|
-
Object.defineProperty(exports, "Address", { enumerable: true, get: function () { return stellar_sdk_1.Address; } });
|
|
6
|
-
class ExpiredStateError extends Error {
|
|
7
|
-
}
|
|
8
|
-
exports.ExpiredStateError = ExpiredStateError;
|
|
9
|
-
class Ok {
|
|
10
|
-
constructor(value) {
|
|
11
|
-
this.value = value;
|
|
12
|
-
}
|
|
13
|
-
unwrapErr() {
|
|
14
|
-
throw new Error("No error");
|
|
15
|
-
}
|
|
16
|
-
unwrap() {
|
|
17
|
-
return "value" in this.value ? this.value.value : this.value;
|
|
18
|
-
}
|
|
19
|
-
isOk() {
|
|
20
|
-
return true;
|
|
21
|
-
}
|
|
22
|
-
isErr() {
|
|
23
|
-
return !this.isOk();
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
exports.Ok = Ok;
|
|
27
|
-
class Err {
|
|
28
|
-
constructor(error) {
|
|
29
|
-
this.error = error;
|
|
30
|
-
}
|
|
31
|
-
unwrapErr() {
|
|
32
|
-
return "error" in this.error ? this.error.error : this.error;
|
|
33
|
-
}
|
|
34
|
-
unwrap() {
|
|
35
|
-
throw new Error(this.error.message);
|
|
36
|
-
}
|
|
37
|
-
isOk() {
|
|
38
|
-
return false;
|
|
39
|
-
}
|
|
40
|
-
isErr() {
|
|
41
|
-
return !this.isOk();
|
|
42
|
-
}
|
|
43
|
-
}
|
|
44
|
-
exports.Err = Err;
|
|
45
|
-
exports.contractErrorPattern = /Error\(Contract, #(\d+)\)/;
|
|
46
|
-
exports.NULL_ACCOUNT = "GAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWHF";
|
|
47
|
-
class AssembledTransaction {
|
|
48
|
-
constructor(options) {
|
|
49
|
-
this.options = options;
|
|
50
|
-
this.simulate = async () => {
|
|
51
|
-
this.simulation = await this.server.simulateTransaction(this.raw);
|
|
52
|
-
if (stellar_sdk_1.SorobanRpc.Api.isSimulationSuccess(this.simulation)) {
|
|
53
|
-
this.raw = stellar_sdk_1.SorobanRpc.assembleTransaction(this.raw, this.simulation).build();
|
|
54
|
-
}
|
|
55
|
-
return this;
|
|
56
|
-
};
|
|
57
|
-
/**
|
|
58
|
-
* Get account details from the Soroban network for the publicKey currently
|
|
59
|
-
* selected in user's wallet. If not connected to Freighter, use placeholder
|
|
60
|
-
* null account.
|
|
61
|
-
*/
|
|
62
|
-
this.getAccount = () => {
|
|
63
|
-
// const publicKey = await this.getPublicKey();
|
|
64
|
-
// return publicKey
|
|
65
|
-
// ? await this.server.getAccount(publicKey)
|
|
66
|
-
// : new Account(NULL_ACCOUNT, '0')
|
|
67
|
-
return new stellar_sdk_1.Account(exports.NULL_ACCOUNT, "0");
|
|
68
|
-
};
|
|
69
|
-
this.server = new stellar_sdk_1.SorobanRpc.Server(this.options.rpcUrl, {
|
|
70
|
-
allowHttp: this.options.rpcUrl.startsWith("http://"),
|
|
71
|
-
});
|
|
72
|
-
}
|
|
73
|
-
static async fromSimulation(options) {
|
|
74
|
-
const tx = new AssembledTransaction(options);
|
|
75
|
-
const contract = new stellar_sdk_1.Contract(options.contractId);
|
|
76
|
-
tx.raw = new stellar_sdk_1.TransactionBuilder(tx.getAccount(), {
|
|
77
|
-
fee: options.fee?.toString(10) ?? stellar_sdk_1.BASE_FEE,
|
|
78
|
-
networkPassphrase: options.networkPassphrase,
|
|
79
|
-
})
|
|
80
|
-
.addOperation(contract.call(options.method, ...(options.args ?? [])))
|
|
81
|
-
.setTimeout(stellar_sdk_1.TimeoutInfinite)
|
|
82
|
-
.build();
|
|
83
|
-
return await tx.simulate();
|
|
84
|
-
}
|
|
85
|
-
get simulationData() {
|
|
86
|
-
if (this.simulationResult && this.simulationTransactionData) {
|
|
87
|
-
return {
|
|
88
|
-
result: this.simulationResult,
|
|
89
|
-
transactionData: this.simulationTransactionData,
|
|
90
|
-
};
|
|
91
|
-
}
|
|
92
|
-
// else, we know we just did the simulation on this machine
|
|
93
|
-
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
94
|
-
const simulation = this.simulation;
|
|
95
|
-
if (stellar_sdk_1.SorobanRpc.Api.isSimulationError(simulation)) {
|
|
96
|
-
throw new Error(`Transaction simulation failed: "${simulation.error}"`);
|
|
97
|
-
}
|
|
98
|
-
// if (SorobanRpc.Api.isSimulationRestore(simulation)) {
|
|
99
|
-
// throw new ExpiredStateError(
|
|
100
|
-
// `You need to restore some contract state before you can invoke this method. ${JSON.stringify(
|
|
101
|
-
// simulation,
|
|
102
|
-
// null,
|
|
103
|
-
// 2
|
|
104
|
-
// )}`
|
|
105
|
-
// );
|
|
106
|
-
// }
|
|
107
|
-
if (!simulation.result) {
|
|
108
|
-
throw new Error(`Expected an invocation simulation, but got no 'result' field. Simulation: ${JSON.stringify(simulation, null, 2)}`);
|
|
109
|
-
}
|
|
110
|
-
// add to object for serialization & deserialization
|
|
111
|
-
this.simulationResult = simulation.result;
|
|
112
|
-
this.simulationTransactionData = simulation.transactionData.build();
|
|
113
|
-
return {
|
|
114
|
-
result: this.simulationResult,
|
|
115
|
-
transactionData: this.simulationTransactionData,
|
|
116
|
-
};
|
|
117
|
-
}
|
|
118
|
-
get result() {
|
|
119
|
-
try {
|
|
120
|
-
return this.options.parseResultXdr(this.simulationData.result.retval);
|
|
121
|
-
}
|
|
122
|
-
catch (e) {
|
|
123
|
-
// @ts-expect-error
|
|
124
|
-
const err = this.parseError(e.toString());
|
|
125
|
-
if (err)
|
|
126
|
-
return err;
|
|
127
|
-
throw e;
|
|
128
|
-
}
|
|
129
|
-
}
|
|
130
|
-
parseError(errorMessage) {
|
|
131
|
-
if (!this.options.errorTypes)
|
|
132
|
-
return;
|
|
133
|
-
const match = errorMessage.match(exports.contractErrorPattern);
|
|
134
|
-
if (!match)
|
|
135
|
-
return;
|
|
136
|
-
const i = parseInt(match[1], 10);
|
|
137
|
-
const err = this.options.errorTypes[i];
|
|
138
|
-
if (err.message)
|
|
139
|
-
return new Err(err);
|
|
140
|
-
}
|
|
141
|
-
}
|
|
142
|
-
exports.AssembledTransaction = AssembledTransaction;
|
|
143
|
-
//# sourceMappingURL=assembled-tx.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"assembled-tx.js","sourceRoot":"","sources":["../../../../../src/services/utils/srb/assembled-tx.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
import type { Transaction } from "stellar-sdk";
|
|
2
|
-
import { Address, xdr } from "stellar-sdk";
|
|
3
|
-
import type { ClassOptions, MethodOptions } from "./method-options";
|
|
4
|
-
export type Tx = Transaction;
|
|
5
|
-
export type u32 = number;
|
|
6
|
-
export type i32 = number;
|
|
7
|
-
export type u64 = bigint;
|
|
8
|
-
export type i64 = bigint;
|
|
9
|
-
export type u128 = bigint;
|
|
10
|
-
export type i128 = bigint;
|
|
11
|
-
export type u256 = bigint;
|
|
12
|
-
export type i256 = bigint;
|
|
13
|
-
export type Option<T> = T | undefined;
|
|
14
|
-
export type Typepoint = bigint;
|
|
15
|
-
export type Duration = bigint;
|
|
16
|
-
export { Address };
|
|
17
|
-
export interface Error_ {
|
|
18
|
-
message: string;
|
|
19
|
-
}
|
|
20
|
-
export interface Result<T, E extends Error_> {
|
|
21
|
-
unwrap(): T;
|
|
22
|
-
unwrapErr(): E;
|
|
23
|
-
isOk(): boolean;
|
|
24
|
-
isErr(): boolean;
|
|
25
|
-
}
|
|
26
|
-
export declare class Err<E extends Error_ = Error_> implements Result<any, E> {
|
|
27
|
-
readonly error: E;
|
|
28
|
-
constructor(error: E);
|
|
29
|
-
unwrapErr(): E;
|
|
30
|
-
unwrap(): never;
|
|
31
|
-
isOk(): boolean;
|
|
32
|
-
isErr(): boolean;
|
|
33
|
-
}
|
|
34
|
-
type XDRTransactionBuilderOptions<T = string> = MethodOptions & ClassOptions & {
|
|
35
|
-
method: string;
|
|
36
|
-
args?: any[];
|
|
37
|
-
parseResultXdr: (xdr: string | xdr.ScVal | Err) => T;
|
|
38
|
-
account: string;
|
|
39
|
-
};
|
|
40
|
-
export declare class XDRTransactionBuilder<T> {
|
|
41
|
-
options: XDRTransactionBuilderOptions<T>;
|
|
42
|
-
raw: Tx;
|
|
43
|
-
private simulation?;
|
|
44
|
-
private server;
|
|
45
|
-
private constructor();
|
|
46
|
-
static xdrFromSimulation<T>(options: XDRTransactionBuilderOptions<T>): Promise<string>;
|
|
47
|
-
simulate: () => Promise<this>;
|
|
48
|
-
}
|
|
@@ -1,62 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.XDRTransactionBuilder = exports.Err = exports.Address = void 0;
|
|
4
|
-
const stellar_sdk_1 = require("stellar-sdk");
|
|
5
|
-
Object.defineProperty(exports, "Address", { enumerable: true, get: function () { return stellar_sdk_1.Address; } });
|
|
6
|
-
class Err {
|
|
7
|
-
constructor(error) {
|
|
8
|
-
this.error = error;
|
|
9
|
-
}
|
|
10
|
-
unwrapErr() {
|
|
11
|
-
return this.error;
|
|
12
|
-
}
|
|
13
|
-
unwrap() {
|
|
14
|
-
throw new Error(this.error.message);
|
|
15
|
-
}
|
|
16
|
-
isOk() {
|
|
17
|
-
return false;
|
|
18
|
-
}
|
|
19
|
-
isErr() {
|
|
20
|
-
return !this.isOk();
|
|
21
|
-
}
|
|
22
|
-
}
|
|
23
|
-
exports.Err = Err;
|
|
24
|
-
class XDRTransactionBuilder {
|
|
25
|
-
constructor(options) {
|
|
26
|
-
this.options = options;
|
|
27
|
-
this.simulate = async () => {
|
|
28
|
-
this.simulation = await this.server.simulateTransaction(this.raw);
|
|
29
|
-
if (stellar_sdk_1.SorobanRpc.Api.isSimulationSuccess(this.simulation)) {
|
|
30
|
-
this.raw = stellar_sdk_1.SorobanRpc.assembleTransaction(this.raw, this.simulation).build();
|
|
31
|
-
}
|
|
32
|
-
return this;
|
|
33
|
-
};
|
|
34
|
-
this.server = new stellar_sdk_1.SorobanRpc.Server(this.options.rpcUrl, {
|
|
35
|
-
allowHttp: this.options.rpcUrl.startsWith("http://"),
|
|
36
|
-
});
|
|
37
|
-
}
|
|
38
|
-
static async xdrFromSimulation(options) {
|
|
39
|
-
const tx = new XDRTransactionBuilder(options);
|
|
40
|
-
const contract = new stellar_sdk_1.Contract(options.contractId);
|
|
41
|
-
tx.raw = new stellar_sdk_1.TransactionBuilder(await tx.server.getAccount(options.account), {
|
|
42
|
-
fee: options.fee?.toString(10) ?? stellar_sdk_1.BASE_FEE,
|
|
43
|
-
networkPassphrase: options.networkPassphrase,
|
|
44
|
-
})
|
|
45
|
-
.addOperation(contract.call(options.method, ...(options.args ?? [])))
|
|
46
|
-
.setTimeout(stellar_sdk_1.TimeoutInfinite)
|
|
47
|
-
.build();
|
|
48
|
-
const assembledTransaction = await tx.simulate();
|
|
49
|
-
const op = assembledTransaction.raw.operations[0];
|
|
50
|
-
assembledTransaction.raw = new stellar_sdk_1.TransactionBuilder(await tx.server.getAccount(options.account), {
|
|
51
|
-
fee: assembledTransaction.raw.fee,
|
|
52
|
-
networkPassphrase: options.networkPassphrase,
|
|
53
|
-
})
|
|
54
|
-
.setTimeout(stellar_sdk_1.TimeoutInfinite)
|
|
55
|
-
.addOperation(stellar_sdk_1.Operation.invokeHostFunction({ ...op, auth: op.auth ?? [] }))
|
|
56
|
-
.build();
|
|
57
|
-
await assembledTransaction.simulate();
|
|
58
|
-
return assembledTransaction.raw.toXDR();
|
|
59
|
-
}
|
|
60
|
-
}
|
|
61
|
-
exports.XDRTransactionBuilder = XDRTransactionBuilder;
|
|
62
|
-
//# sourceMappingURL=build-tx.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"build-tx.js","sourceRoot":"","sources":["../../../../../src/services/utils/srb/build-tx.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
declare let responseTypes: "simulated" | "full" | undefined;
|
|
2
|
-
export type ResponseTypes = typeof responseTypes;
|
|
3
|
-
export type XDR_BASE64 = string;
|
|
4
|
-
export interface Wallet {
|
|
5
|
-
isConnected: () => Promise<boolean>;
|
|
6
|
-
isAllowed: () => Promise<boolean>;
|
|
7
|
-
getUserInfo: () => Promise<{
|
|
8
|
-
publicKey?: string;
|
|
9
|
-
}>;
|
|
10
|
-
signTransaction: (tx: XDR_BASE64, opts?: {
|
|
11
|
-
network?: string;
|
|
12
|
-
networkPassphrase?: string;
|
|
13
|
-
accountToSign?: string;
|
|
14
|
-
}) => Promise<XDR_BASE64>;
|
|
15
|
-
signAuthEntry: (entryXdr: XDR_BASE64, opts?: {
|
|
16
|
-
accountToSign?: string;
|
|
17
|
-
}) => Promise<XDR_BASE64>;
|
|
18
|
-
}
|
|
19
|
-
export interface ClassOptions {
|
|
20
|
-
contractId: string;
|
|
21
|
-
networkPassphrase: string;
|
|
22
|
-
rpcUrl: string;
|
|
23
|
-
errorTypes?: Record<number, {
|
|
24
|
-
message: string;
|
|
25
|
-
}>;
|
|
26
|
-
/**
|
|
27
|
-
* A Wallet interface, such as Freighter, that has the methods `isConnected`, `isAllowed`, `getUserInfo`, and `signTransaction`. If not provided, will attempt to import and use Freighter. Example:
|
|
28
|
-
*
|
|
29
|
-
* @example
|
|
30
|
-
* ```ts
|
|
31
|
-
* import freighter from "@stellar/freighter-api";
|
|
32
|
-
* import { Contract } from "token";
|
|
33
|
-
* const contract = new Contract({
|
|
34
|
-
* …,
|
|
35
|
-
* wallet: freighter,
|
|
36
|
-
* })
|
|
37
|
-
* ```
|
|
38
|
-
*/
|
|
39
|
-
wallet?: Wallet;
|
|
40
|
-
}
|
|
41
|
-
export interface MethodOptions {
|
|
42
|
-
/**
|
|
43
|
-
* The fee to pay for the transaction. Default: soroban-sdk's BASE_FEE ('100')
|
|
44
|
-
*/
|
|
45
|
-
fee?: number;
|
|
46
|
-
}
|
|
47
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"method-options.js","sourceRoot":"","sources":["../../../../../src/services/utils/srb/method-options.ts"],"names":[],"mappings":";;AAAA,kEAAkE;AAClE,IAAI,aAA+C,CAAC"}
|