-
Notifications
You must be signed in to change notification settings - Fork 324
/
Copy pathclient.ts
205 lines (192 loc) · 7.81 KB
/
client.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
import {
Operation,
xdr,
Address,
} from "@stellar/stellar-base";
import { Spec } from "./spec";
import { Server } from '../rpc';
import { AssembledTransaction } from "./assembled_transaction";
import type { ClientOptions, MethodOptions } from "./types";
import { processSpecEntryStream } from './utils';
const CONSTRUCTOR_FUNC = "__constructor";
async function specFromWasm(wasm: Buffer) {
const wasmModule = await WebAssembly.compile(wasm);
const xdrSections = WebAssembly.Module.customSections(
wasmModule,
"contractspecv0"
);
if (xdrSections.length === 0) {
throw new Error("Could not obtain contract spec from wasm");
}
const bufferSection = Buffer.from(xdrSections[0]);
const specEntryArray = processSpecEntryStream(bufferSection);
const spec = new Spec(specEntryArray);
return spec;
}
async function specFromWasmHash(
wasmHash: Buffer | string,
options: Server.Options & { rpcUrl: string },
format: "hex" | "base64" = "hex"
): Promise<Spec> {
if (!options || !options.rpcUrl) {
throw new TypeError("options must contain rpcUrl");
}
const { rpcUrl, allowHttp } = options;
const serverOpts: Server.Options = { allowHttp };
const server = new Server(rpcUrl, serverOpts);
const wasm = await server.getContractWasmByHash(wasmHash, format);
return specFromWasm(wasm);
}
/**
* Generate a class from the contract spec that where each contract method
* gets included with an identical name.
*
* Each method returns an {@link module:contract.AssembledTransaction | AssembledTransaction} that can
* be used to modify, simulate, decode results, and possibly sign, & submit the
* transaction.
*
* @memberof module:contract
*
* @class
* @param {module:contract.Spec} spec {@link Spec} to construct a Client for
* @param {ClientOptions} options see {@link ClientOptions}
*/
export class Client {
static async deploy<T = Client>(
/** Constructor/Initialization Args for the contract's `__constructor` method */
args: Record<string, any> | null,
/** Options for initializing a Client as well as for calling a method, with extras specific to deploying. */
options: MethodOptions &
Omit<ClientOptions, "contractId"> & {
/** The hash of the Wasm blob, which must already be installed on-chain. */
wasmHash: Buffer | string;
/** Salt used to generate the contract's ID. Passed through to {@link Operation.createCustomContract}. Default: random. */
salt?: Buffer | Uint8Array;
/** The format used to decode `wasmHash`, if it's provided as a string. */
format?: "hex" | "base64";
}
): Promise<AssembledTransaction<T>> {
const { wasmHash, salt, format, fee, timeoutInSeconds, simulate, ...clientOptions } = options;
const spec = await specFromWasmHash(wasmHash, clientOptions, format);
const operation = Operation.createCustomContract({
address: new Address(options.publicKey!),
wasmHash: typeof wasmHash === "string"
? Buffer.from(wasmHash, format ?? "hex")
: (wasmHash as Buffer),
salt,
constructorArgs: args
? spec.funcArgsToScVals(CONSTRUCTOR_FUNC, args)
: []
});
return AssembledTransaction.buildWithOp(operation, {
fee,
timeoutInSeconds,
simulate,
...clientOptions,
contractId: "ignored",
method: CONSTRUCTOR_FUNC,
parseResultXdr: (result) =>
new Client(spec, { ...clientOptions, contractId: Address.fromScVal(result).toString() })
}) as unknown as AssembledTransaction<T>;
}
constructor(
public readonly spec: Spec,
public readonly options: ClientOptions
) {
this.spec.funcs().forEach((xdrFn) => {
const method = xdrFn.name().toString();
if (method === CONSTRUCTOR_FUNC) {
return;
}
const assembleTransaction = (
args?: Record<string, any>,
methodOptions?: MethodOptions
) =>
AssembledTransaction.build({
method,
args: args && spec.funcArgsToScVals(method, args),
...options,
...methodOptions,
errorTypes: spec.errorCases().reduce(
(acc, curr) => ({
...acc,
[curr.value()]: { message: curr.doc().toString() },
}),
{} as Pick<ClientOptions, "errorTypes">,
),
parseResultXdr: (result: xdr.ScVal) =>
spec.funcResToNative(method, result),
});
// @ts-ignore error TS7053: Element implicitly has an 'any' type
this[method] =
spec.getFunc(method).inputs().length === 0
? (opts?: MethodOptions) => assembleTransaction(undefined, opts)
: assembleTransaction;
});
}
/**
* Generates a Client instance from the provided ClientOptions and the contract's wasm hash.
* The wasmHash can be provided in either hex or base64 format.
*
* @param {Buffer | string} wasmHash The hash of the contract's wasm binary, in either hex or base64 format.
* @param {ClientOptions} options The ClientOptions object containing the necessary configuration, including the rpcUrl.
* @param {('hex' | 'base64')} [format='hex'] The format of the provided wasmHash, either "hex" or "base64". Defaults to "hex".
* @returns {Promise<module:contract.Client>} A Promise that resolves to a Client instance.
* @throws {TypeError} If the provided options object does not contain an rpcUrl.
*/
static async fromWasmHash(wasmHash: Buffer | string,
options: ClientOptions,
format: "hex" | "base64" = "hex"
): Promise<Client> {
if (!options || !options.rpcUrl) {
throw new TypeError('options must contain rpcUrl');
}
const { rpcUrl, allowHttp } = options;
const serverOpts: Server.Options = { allowHttp };
const server = new Server(rpcUrl, serverOpts);
const wasm = await server.getContractWasmByHash(wasmHash, format);
return Client.fromWasm(wasm, options);
}
/**
* Generates a Client instance from the provided ClientOptions and the contract's wasm binary.
*
* @param {Buffer} wasm The contract's wasm binary as a Buffer.
* @param {ClientOptions} options The ClientOptions object containing the necessary configuration.
* @returns {Promise<module:contract.Client>} A Promise that resolves to a Client instance.
* @throws {Error} If the contract spec cannot be obtained from the provided wasm binary.
*/
static async fromWasm(wasm: Buffer, options: ClientOptions): Promise<Client> {
const spec = await specFromWasm(wasm);
return new Client(spec, options);
}
/**
* Generates a Client instance from the provided ClientOptions, which must include the contractId and rpcUrl.
*
* @param {ClientOptions} options The ClientOptions object containing the necessary configuration, including the contractId and rpcUrl.
* @returns {Promise<module:contract.Client>} A Promise that resolves to a Client instance.
* @throws {TypeError} If the provided options object does not contain both rpcUrl and contractId.
*/
static async from(options: ClientOptions): Promise<Client> {
if (!options || !options.rpcUrl || !options.contractId) {
throw new TypeError('options must contain rpcUrl and contractId');
}
const { rpcUrl, contractId, allowHttp } = options;
const serverOpts: Server.Options = { allowHttp };
const server = new Server(rpcUrl, serverOpts);
const wasm = await server.getContractWasmByContractId(contractId);
return Client.fromWasm(wasm, options);
}
txFromJSON = <T>(json: string): AssembledTransaction<T> => {
const { method, ...tx } = JSON.parse(json);
return AssembledTransaction.fromJSON(
{
...this.options,
method,
parseResultXdr: (result: xdr.ScVal) =>
this.spec.funcResToNative(method, result),
},
tx,
);
};
txFromXDR = <T>(xdrBase64: string): AssembledTransaction<T> => AssembledTransaction.fromXDR(this.options, xdrBase64, this.spec);
}