@solana/transactions 2.0.0-experimental.c8d8b83 → 2.0.0-experimental.c9bd7fa
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/LICENSE +1 -1
- package/README.md +272 -5
- package/dist/index.browser.cjs +415 -316
- package/dist/index.browser.cjs.map +1 -1
- package/dist/index.browser.js +407 -313
- package/dist/index.browser.js.map +1 -1
- package/dist/index.development.js +983 -739
- package/dist/index.development.js.map +1 -1
- package/dist/index.native.js +407 -313
- package/dist/index.native.js.map +1 -1
- package/dist/index.node.cjs +415 -316
- package/dist/index.node.cjs.map +1 -1
- package/dist/index.node.js +407 -313
- package/dist/index.node.js.map +1 -1
- package/dist/index.production.min.js +23 -16
- package/dist/types/accounts.d.ts +2 -2
- package/dist/types/accounts.d.ts.map +1 -1
- package/dist/types/blockhash.d.ts +4 -3
- package/dist/types/blockhash.d.ts.map +1 -1
- package/dist/types/compilable-transaction.d.ts +7 -0
- package/dist/types/compilable-transaction.d.ts.map +1 -0
- package/dist/types/compile-address-table-lookups.d.ts +2 -2
- package/dist/types/compile-address-table-lookups.d.ts.map +1 -1
- package/dist/types/compile-static-accounts.d.ts +2 -2
- package/dist/types/compile-static-accounts.d.ts.map +1 -1
- package/dist/types/compile-transaction.d.ts +6 -7
- package/dist/types/compile-transaction.d.ts.map +1 -1
- package/dist/types/create-transaction.d.ts +1 -1
- package/dist/types/decompile-transaction.d.ts +5 -0
- package/dist/types/decompile-transaction.d.ts.map +1 -0
- package/dist/types/durable-nonce.d.ts +8 -8
- package/dist/types/durable-nonce.d.ts.map +1 -1
- package/dist/types/fee-payer.d.ts +4 -4
- package/dist/types/fee-payer.d.ts.map +1 -1
- package/dist/types/index.d.ts +11 -9
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/instructions.d.ts +2 -2
- package/dist/types/message.d.ts +1 -5
- package/dist/types/message.d.ts.map +1 -1
- package/dist/types/serializers/address-table-lookup.d.ts +5 -3
- package/dist/types/serializers/address-table-lookup.d.ts.map +1 -1
- package/dist/types/serializers/header.d.ts +4 -2
- package/dist/types/serializers/header.d.ts.map +1 -1
- package/dist/types/serializers/index.d.ts +2 -1
- package/dist/types/serializers/index.d.ts.map +1 -1
- package/dist/types/serializers/instruction.d.ts +4 -2
- package/dist/types/serializers/instruction.d.ts.map +1 -1
- package/dist/types/serializers/message.d.ts +5 -5
- package/dist/types/serializers/message.d.ts.map +1 -1
- package/dist/types/serializers/transaction-version.d.ts +4 -4
- package/dist/types/serializers/transaction-version.d.ts.map +1 -1
- package/dist/types/serializers/transaction.d.ts +6 -5
- package/dist/types/serializers/transaction.d.ts.map +1 -1
- package/dist/types/signatures.d.ts +9 -13
- package/dist/types/signatures.d.ts.map +1 -1
- package/dist/types/types.d.ts +6 -13
- package/dist/types/types.d.ts.map +1 -1
- package/dist/types/wire-transaction.d.ts +2 -2
- package/dist/types/wire-transaction.d.ts.map +1 -1
- package/package.json +19 -15
- package/dist/types/serializers/unimplemented.d.ts +0 -3
- package/dist/types/serializers/unimplemented.d.ts.map +0 -1
|
@@ -2,282 +2,198 @@ this.globalThis = this.globalThis || {};
|
|
|
2
2
|
this.globalThis.solanaWeb3 = (function (exports) {
|
|
3
3
|
'use strict';
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
});
|
|
21
|
-
return result;
|
|
22
|
-
};
|
|
23
|
-
var padBytes = (bytes2, length) => {
|
|
24
|
-
if (bytes2.length >= length)
|
|
25
|
-
return bytes2;
|
|
5
|
+
// ../codecs-core/dist/index.browser.js
|
|
6
|
+
function assertByteArrayIsNotEmptyForCodec(codecDescription, bytes, offset = 0) {
|
|
7
|
+
if (bytes.length - offset <= 0) {
|
|
8
|
+
throw new Error(`Codec [${codecDescription}] cannot decode empty byte arrays.`);
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
function assertByteArrayHasEnoughBytesForCodec(codecDescription, expected, bytes, offset = 0) {
|
|
12
|
+
const bytesLength = bytes.length - offset;
|
|
13
|
+
if (bytesLength < expected) {
|
|
14
|
+
throw new Error(`Codec [${codecDescription}] expected ${expected} bytes, got ${bytesLength}.`);
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
var padBytes = (bytes, length) => {
|
|
18
|
+
if (bytes.length >= length)
|
|
19
|
+
return bytes;
|
|
26
20
|
const paddedBytes = new Uint8Array(length).fill(0);
|
|
27
|
-
paddedBytes.set(
|
|
21
|
+
paddedBytes.set(bytes);
|
|
28
22
|
return paddedBytes;
|
|
29
23
|
};
|
|
30
|
-
var fixBytes = (
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
24
|
+
var fixBytes = (bytes, length) => padBytes(bytes.length <= length ? bytes : bytes.slice(0, length), length);
|
|
25
|
+
function getEncodedSize(value, encoder) {
|
|
26
|
+
return "fixedSize" in encoder ? encoder.fixedSize : encoder.getSizeFromValue(value);
|
|
27
|
+
}
|
|
28
|
+
function createEncoder(encoder) {
|
|
29
|
+
return Object.freeze({
|
|
30
|
+
...encoder,
|
|
31
|
+
encode: (value) => {
|
|
32
|
+
const bytes = new Uint8Array(getEncodedSize(value, encoder));
|
|
33
|
+
encoder.write(value, bytes, 0);
|
|
34
|
+
return bytes;
|
|
35
|
+
}
|
|
36
|
+
});
|
|
37
|
+
}
|
|
38
|
+
function createDecoder(decoder) {
|
|
39
|
+
return Object.freeze({
|
|
40
|
+
...decoder,
|
|
41
|
+
decode: (bytes, offset = 0) => decoder.read(bytes, offset)[0]
|
|
42
|
+
});
|
|
43
|
+
}
|
|
44
|
+
function isFixedSize(codec) {
|
|
45
|
+
return "fixedSize" in codec && typeof codec.fixedSize === "number";
|
|
46
|
+
}
|
|
47
|
+
function assertIsFixedSize(codec, message) {
|
|
48
|
+
if (!isFixedSize(codec)) {
|
|
49
|
+
throw new Error(message != null ? message : "Expected a fixed-size codec, got a variable-size one.");
|
|
37
50
|
}
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
51
|
+
}
|
|
52
|
+
function isVariableSize(codec) {
|
|
53
|
+
return !isFixedSize(codec);
|
|
54
|
+
}
|
|
55
|
+
function combineCodec(encoder, decoder) {
|
|
56
|
+
if (isFixedSize(encoder) !== isFixedSize(decoder)) {
|
|
57
|
+
throw new Error(`Encoder and decoder must either both be fixed-size or variable-size.`);
|
|
43
58
|
}
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
59
|
+
if (isFixedSize(encoder) && isFixedSize(decoder) && encoder.fixedSize !== decoder.fixedSize) {
|
|
60
|
+
throw new Error(
|
|
61
|
+
`Encoder and decoder must have the same fixed size, got [${encoder.fixedSize}] and [${decoder.fixedSize}].`
|
|
62
|
+
);
|
|
63
|
+
}
|
|
64
|
+
if (!isFixedSize(encoder) && !isFixedSize(decoder) && encoder.maxSize !== decoder.maxSize) {
|
|
65
|
+
throw new Error(
|
|
66
|
+
`Encoder and decoder must have the same max size, got [${encoder.maxSize}] and [${decoder.maxSize}].`
|
|
67
|
+
);
|
|
50
68
|
}
|
|
51
|
-
};
|
|
52
|
-
|
|
53
|
-
// ../../node_modules/.pnpm/@metaplex-foundation+umi-serializers-core@0.8.9/node_modules/@metaplex-foundation/umi-serializers-core/dist/esm/fixSerializer.mjs
|
|
54
|
-
function fixSerializer(serializer, fixedBytes, description) {
|
|
55
69
|
return {
|
|
56
|
-
|
|
70
|
+
...decoder,
|
|
71
|
+
...encoder,
|
|
72
|
+
decode: decoder.decode,
|
|
73
|
+
encode: encoder.encode,
|
|
74
|
+
read: decoder.read,
|
|
75
|
+
write: encoder.write
|
|
76
|
+
};
|
|
77
|
+
}
|
|
78
|
+
function fixEncoder(encoder, fixedBytes) {
|
|
79
|
+
return createEncoder({
|
|
80
|
+
fixedSize: fixedBytes,
|
|
81
|
+
write: (value, bytes, offset) => {
|
|
82
|
+
const variableByteArray = encoder.encode(value);
|
|
83
|
+
const fixedByteArray = variableByteArray.length > fixedBytes ? variableByteArray.slice(0, fixedBytes) : variableByteArray;
|
|
84
|
+
bytes.set(fixedByteArray, offset);
|
|
85
|
+
return offset + fixedBytes;
|
|
86
|
+
}
|
|
87
|
+
});
|
|
88
|
+
}
|
|
89
|
+
function fixDecoder(decoder, fixedBytes) {
|
|
90
|
+
return createDecoder({
|
|
57
91
|
fixedSize: fixedBytes,
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
if (buffer.length < fixedBytes) {
|
|
63
|
-
throw new NotEnoughBytesError("fixSerializer", fixedBytes, buffer.length);
|
|
92
|
+
read: (bytes, offset) => {
|
|
93
|
+
assertByteArrayHasEnoughBytesForCodec("fixCodec", fixedBytes, bytes, offset);
|
|
94
|
+
if (offset > 0 || bytes.length > fixedBytes) {
|
|
95
|
+
bytes = bytes.slice(offset, offset + fixedBytes);
|
|
64
96
|
}
|
|
65
|
-
if (
|
|
66
|
-
|
|
97
|
+
if (isFixedSize(decoder)) {
|
|
98
|
+
bytes = fixBytes(bytes, decoder.fixedSize);
|
|
67
99
|
}
|
|
68
|
-
const [value] =
|
|
100
|
+
const [value] = decoder.read(bytes, 0);
|
|
69
101
|
return [value, offset + fixedBytes];
|
|
70
102
|
}
|
|
71
|
-
};
|
|
103
|
+
});
|
|
72
104
|
}
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
fixedSize: serializer.fixedSize,
|
|
79
|
-
maxSize: serializer.maxSize,
|
|
80
|
-
serialize: (value) => serializer.serialize(unmap(value)),
|
|
81
|
-
deserialize: (buffer, offset = 0) => {
|
|
82
|
-
const [value, length] = serializer.deserialize(buffer, offset);
|
|
83
|
-
return map ? [map(value, buffer, offset), length] : [value, length];
|
|
84
|
-
}
|
|
85
|
-
};
|
|
105
|
+
function mapEncoder(encoder, unmap) {
|
|
106
|
+
return createEncoder({
|
|
107
|
+
...isVariableSize(encoder) ? { ...encoder, getSizeFromValue: (value) => encoder.getSizeFromValue(unmap(value)) } : encoder,
|
|
108
|
+
write: (value, bytes, offset) => encoder.write(unmap(value), bytes, offset)
|
|
109
|
+
});
|
|
86
110
|
}
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
__publicField(this, "name", "InvalidBaseStringError");
|
|
94
|
-
this.cause = cause;
|
|
95
|
-
}
|
|
96
|
-
};
|
|
97
|
-
|
|
98
|
-
// ../../node_modules/.pnpm/@metaplex-foundation+umi-serializers-encodings@0.8.9/node_modules/@metaplex-foundation/umi-serializers-encodings/dist/esm/baseX.mjs
|
|
99
|
-
var baseX = (alphabet) => {
|
|
100
|
-
const base = alphabet.length;
|
|
101
|
-
const baseBigInt = BigInt(base);
|
|
102
|
-
return {
|
|
103
|
-
description: `base${base}`,
|
|
104
|
-
fixedSize: null,
|
|
105
|
-
maxSize: null,
|
|
106
|
-
serialize(value) {
|
|
107
|
-
if (!value.match(new RegExp(`^[${alphabet}]*$`))) {
|
|
108
|
-
throw new InvalidBaseStringError(value, base);
|
|
109
|
-
}
|
|
110
|
-
if (value === "")
|
|
111
|
-
return new Uint8Array();
|
|
112
|
-
const chars = [...value];
|
|
113
|
-
let trailIndex = chars.findIndex((c) => c !== alphabet[0]);
|
|
114
|
-
trailIndex = trailIndex === -1 ? chars.length : trailIndex;
|
|
115
|
-
const leadingZeroes = Array(trailIndex).fill(0);
|
|
116
|
-
if (trailIndex === chars.length)
|
|
117
|
-
return Uint8Array.from(leadingZeroes);
|
|
118
|
-
const tailChars = chars.slice(trailIndex);
|
|
119
|
-
let base10Number = 0n;
|
|
120
|
-
let baseXPower = 1n;
|
|
121
|
-
for (let i = tailChars.length - 1; i >= 0; i -= 1) {
|
|
122
|
-
base10Number += baseXPower * BigInt(alphabet.indexOf(tailChars[i]));
|
|
123
|
-
baseXPower *= baseBigInt;
|
|
124
|
-
}
|
|
125
|
-
const tailBytes = [];
|
|
126
|
-
while (base10Number > 0n) {
|
|
127
|
-
tailBytes.unshift(Number(base10Number % 256n));
|
|
128
|
-
base10Number /= 256n;
|
|
129
|
-
}
|
|
130
|
-
return Uint8Array.from(leadingZeroes.concat(tailBytes));
|
|
131
|
-
},
|
|
132
|
-
deserialize(buffer, offset = 0) {
|
|
133
|
-
if (buffer.length === 0)
|
|
134
|
-
return ["", 0];
|
|
135
|
-
const bytes2 = buffer.slice(offset);
|
|
136
|
-
let trailIndex = bytes2.findIndex((n) => n !== 0);
|
|
137
|
-
trailIndex = trailIndex === -1 ? bytes2.length : trailIndex;
|
|
138
|
-
const leadingZeroes = alphabet[0].repeat(trailIndex);
|
|
139
|
-
if (trailIndex === bytes2.length)
|
|
140
|
-
return [leadingZeroes, buffer.length];
|
|
141
|
-
let base10Number = bytes2.slice(trailIndex).reduce((sum, byte) => sum * 256n + BigInt(byte), 0n);
|
|
142
|
-
const tailChars = [];
|
|
143
|
-
while (base10Number > 0n) {
|
|
144
|
-
tailChars.unshift(alphabet[Number(base10Number % baseBigInt)]);
|
|
145
|
-
base10Number /= baseBigInt;
|
|
146
|
-
}
|
|
147
|
-
return [leadingZeroes + tailChars.join(""), buffer.length];
|
|
111
|
+
function mapDecoder(decoder, map) {
|
|
112
|
+
return createDecoder({
|
|
113
|
+
...decoder,
|
|
114
|
+
read: (bytes, offset) => {
|
|
115
|
+
const [value, newOffset] = decoder.read(bytes, offset);
|
|
116
|
+
return [map(value, bytes, offset), newOffset];
|
|
148
117
|
}
|
|
149
|
-
};
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
// ../../node_modules/.pnpm/@metaplex-foundation+umi-serializers-encodings@0.8.9/node_modules/@metaplex-foundation/umi-serializers-encodings/dist/esm/base58.mjs
|
|
153
|
-
var base58 = baseX("123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz");
|
|
154
|
-
|
|
155
|
-
// ../../node_modules/.pnpm/@metaplex-foundation+umi-serializers-encodings@0.8.9/node_modules/@metaplex-foundation/umi-serializers-encodings/dist/esm/nullCharacters.mjs
|
|
156
|
-
var removeNullCharacters = (value) => (
|
|
157
|
-
// eslint-disable-next-line no-control-regex
|
|
158
|
-
value.replace(/\u0000/g, "")
|
|
159
|
-
);
|
|
160
|
-
|
|
161
|
-
// ../../node_modules/.pnpm/@metaplex-foundation+umi-serializers-encodings@0.8.9/node_modules/@metaplex-foundation/umi-serializers-encodings/dist/esm/utf8.mjs
|
|
162
|
-
var utf8 = {
|
|
163
|
-
description: "utf8",
|
|
164
|
-
fixedSize: null,
|
|
165
|
-
maxSize: null,
|
|
166
|
-
serialize(value) {
|
|
167
|
-
return new TextEncoder().encode(value);
|
|
168
|
-
},
|
|
169
|
-
deserialize(buffer, offset = 0) {
|
|
170
|
-
const value = new TextDecoder().decode(buffer.slice(offset));
|
|
171
|
-
return [removeNullCharacters(value), buffer.length];
|
|
172
|
-
}
|
|
173
|
-
};
|
|
174
|
-
|
|
175
|
-
// ../../node_modules/.pnpm/@metaplex-foundation+umi-serializers-numbers@0.8.9/node_modules/@metaplex-foundation/umi-serializers-numbers/dist/esm/common.mjs
|
|
176
|
-
var Endian;
|
|
177
|
-
(function(Endian2) {
|
|
178
|
-
Endian2["Little"] = "le";
|
|
179
|
-
Endian2["Big"] = "be";
|
|
180
|
-
})(Endian || (Endian = {}));
|
|
181
|
-
|
|
182
|
-
// ../../node_modules/.pnpm/@metaplex-foundation+umi-serializers-numbers@0.8.9/node_modules/@metaplex-foundation/umi-serializers-numbers/dist/esm/errors.mjs
|
|
183
|
-
var NumberOutOfRangeError = class extends RangeError {
|
|
184
|
-
constructor(serializer, min, max, actual) {
|
|
185
|
-
super(`Serializer [${serializer}] expected number to be between ${min} and ${max}, got ${actual}.`);
|
|
186
|
-
__publicField(this, "name", "NumberOutOfRangeError");
|
|
187
|
-
}
|
|
188
|
-
};
|
|
118
|
+
});
|
|
119
|
+
}
|
|
189
120
|
|
|
190
|
-
//
|
|
191
|
-
function
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
defaultDescription += littleEndian ? "(le)" : "(be)";
|
|
121
|
+
// ../codecs-numbers/dist/index.browser.js
|
|
122
|
+
function assertNumberIsBetweenForCodec(codecDescription, min, max, value) {
|
|
123
|
+
if (value < min || value > max) {
|
|
124
|
+
throw new Error(
|
|
125
|
+
`Codec [${codecDescription}] expected number to be in the range [${min}, ${max}], got ${value}.`
|
|
126
|
+
);
|
|
197
127
|
}
|
|
198
|
-
|
|
199
|
-
|
|
128
|
+
}
|
|
129
|
+
function isLittleEndian(config) {
|
|
130
|
+
return (config == null ? void 0 : config.endian) === 1 ? false : true;
|
|
131
|
+
}
|
|
132
|
+
function numberEncoderFactory(input) {
|
|
133
|
+
return createEncoder({
|
|
200
134
|
fixedSize: input.size,
|
|
201
|
-
|
|
202
|
-
serialize(value) {
|
|
135
|
+
write(value, bytes, offset) {
|
|
203
136
|
if (input.range) {
|
|
204
|
-
|
|
137
|
+
assertNumberIsBetweenForCodec(input.name, input.range[0], input.range[1], value);
|
|
205
138
|
}
|
|
206
|
-
const
|
|
207
|
-
input.set(new DataView(
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
deserialize(bytes2, offset = 0) {
|
|
211
|
-
const slice = bytes2.slice(offset, offset + input.size);
|
|
212
|
-
assertEnoughBytes("i8", slice, input.size);
|
|
213
|
-
const view = toDataView(slice);
|
|
214
|
-
return [input.get(view, littleEndian), offset + input.size];
|
|
139
|
+
const arrayBuffer = new ArrayBuffer(input.size);
|
|
140
|
+
input.set(new DataView(arrayBuffer), value, isLittleEndian(input.config));
|
|
141
|
+
bytes.set(new Uint8Array(arrayBuffer), offset);
|
|
142
|
+
return offset + input.size;
|
|
215
143
|
}
|
|
216
|
-
};
|
|
144
|
+
});
|
|
217
145
|
}
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
});
|
|
243
|
-
|
|
244
|
-
// ../../node_modules/.pnpm/@metaplex-foundation+umi-serializers-numbers@0.8.9/node_modules/@metaplex-foundation/umi-serializers-numbers/dist/esm/u32.mjs
|
|
245
|
-
var u32 = (options = {}) => numberFactory({
|
|
246
|
-
name: "u32",
|
|
247
|
-
size: 4,
|
|
248
|
-
range: [0, Number("0xffffffff")],
|
|
249
|
-
set: (view, value, le) => view.setUint32(0, Number(value), le),
|
|
250
|
-
get: (view, le) => view.getUint32(0, le),
|
|
251
|
-
options
|
|
252
|
-
});
|
|
253
|
-
|
|
254
|
-
// ../../node_modules/.pnpm/@metaplex-foundation+umi-serializers-numbers@0.8.9/node_modules/@metaplex-foundation/umi-serializers-numbers/dist/esm/shortU16.mjs
|
|
255
|
-
var shortU16 = (options = {}) => ({
|
|
256
|
-
description: options.description ?? "shortU16",
|
|
257
|
-
fixedSize: null,
|
|
146
|
+
function numberDecoderFactory(input) {
|
|
147
|
+
return createDecoder({
|
|
148
|
+
fixedSize: input.size,
|
|
149
|
+
read(bytes, offset = 0) {
|
|
150
|
+
assertByteArrayIsNotEmptyForCodec(input.name, bytes, offset);
|
|
151
|
+
assertByteArrayHasEnoughBytesForCodec(input.name, input.size, bytes, offset);
|
|
152
|
+
const view = new DataView(toArrayBuffer(bytes, offset, input.size));
|
|
153
|
+
return [input.get(view, isLittleEndian(input.config)), offset + input.size];
|
|
154
|
+
}
|
|
155
|
+
});
|
|
156
|
+
}
|
|
157
|
+
function toArrayBuffer(bytes, offset, length) {
|
|
158
|
+
const bytesOffset = bytes.byteOffset + (offset != null ? offset : 0);
|
|
159
|
+
const bytesLength = length != null ? length : bytes.byteLength;
|
|
160
|
+
return bytes.buffer.slice(bytesOffset, bytesOffset + bytesLength);
|
|
161
|
+
}
|
|
162
|
+
var getShortU16Encoder = () => createEncoder({
|
|
163
|
+
getSizeFromValue: (value) => {
|
|
164
|
+
if (value <= 127)
|
|
165
|
+
return 1;
|
|
166
|
+
if (value <= 16383)
|
|
167
|
+
return 2;
|
|
168
|
+
return 3;
|
|
169
|
+
},
|
|
258
170
|
maxSize: 3,
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
const
|
|
171
|
+
write: (value, bytes, offset) => {
|
|
172
|
+
assertNumberIsBetweenForCodec("shortU16", 0, 65535, value);
|
|
173
|
+
const shortU16Bytes = [0];
|
|
262
174
|
for (let ii = 0; ; ii += 1) {
|
|
263
175
|
const alignedValue = value >> ii * 7;
|
|
264
176
|
if (alignedValue === 0) {
|
|
265
177
|
break;
|
|
266
178
|
}
|
|
267
179
|
const nextSevenBits = 127 & alignedValue;
|
|
268
|
-
|
|
180
|
+
shortU16Bytes[ii] = nextSevenBits;
|
|
269
181
|
if (ii > 0) {
|
|
270
|
-
|
|
182
|
+
shortU16Bytes[ii - 1] |= 128;
|
|
271
183
|
}
|
|
272
184
|
}
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
185
|
+
bytes.set(shortU16Bytes, offset);
|
|
186
|
+
return offset + shortU16Bytes.length;
|
|
187
|
+
}
|
|
188
|
+
});
|
|
189
|
+
var getShortU16Decoder = () => createDecoder({
|
|
190
|
+
maxSize: 3,
|
|
191
|
+
read: (bytes, offset) => {
|
|
276
192
|
let value = 0;
|
|
277
193
|
let byteCount = 0;
|
|
278
194
|
while (++byteCount) {
|
|
279
195
|
const byteIndex = byteCount - 1;
|
|
280
|
-
const currentByte =
|
|
196
|
+
const currentByte = bytes[offset + byteIndex];
|
|
281
197
|
const nextSevenBits = 127 & currentByte;
|
|
282
198
|
value |= nextSevenBits << byteIndex * 7;
|
|
283
199
|
if ((currentByte & 128) === 0) {
|
|
@@ -287,210 +203,186 @@ this.globalThis.solanaWeb3 = (function (exports) {
|
|
|
287
203
|
return [value, offset + byteCount];
|
|
288
204
|
}
|
|
289
205
|
});
|
|
206
|
+
var getU32Encoder = (config = {}) => numberEncoderFactory({
|
|
207
|
+
config,
|
|
208
|
+
name: "u32",
|
|
209
|
+
range: [0, Number("0xffffffff")],
|
|
210
|
+
set: (view, value, le) => view.setUint32(0, value, le),
|
|
211
|
+
size: 4
|
|
212
|
+
});
|
|
213
|
+
var getU32Decoder = (config = {}) => numberDecoderFactory({
|
|
214
|
+
config,
|
|
215
|
+
get: (view, le) => view.getUint32(0, le),
|
|
216
|
+
name: "u32",
|
|
217
|
+
size: 4
|
|
218
|
+
});
|
|
219
|
+
var getU8Encoder = () => numberEncoderFactory({
|
|
220
|
+
name: "u8",
|
|
221
|
+
range: [0, Number("0xff")],
|
|
222
|
+
set: (view, value) => view.setUint8(0, value),
|
|
223
|
+
size: 1
|
|
224
|
+
});
|
|
225
|
+
var getU8Decoder = () => numberDecoderFactory({
|
|
226
|
+
get: (view) => view.getUint8(0),
|
|
227
|
+
name: "u8",
|
|
228
|
+
size: 1
|
|
229
|
+
});
|
|
290
230
|
|
|
291
|
-
//
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
__publicField(this, "name", "InvalidNumberOfItemsError");
|
|
296
|
-
}
|
|
297
|
-
};
|
|
298
|
-
var InvalidArrayLikeRemainderSizeError = class extends Error {
|
|
299
|
-
constructor(remainderSize, itemSize) {
|
|
300
|
-
super(`The remainder of the buffer (${remainderSize} bytes) cannot be split into chunks of ${itemSize} bytes. Serializers of "remainder" size must have a remainder that is a multiple of its item size. In other words, ${remainderSize} modulo ${itemSize} should be equal to zero.`);
|
|
301
|
-
__publicField(this, "name", "InvalidArrayLikeRemainderSizeError");
|
|
302
|
-
}
|
|
303
|
-
};
|
|
304
|
-
var UnrecognizedArrayLikeSerializerSizeError = class extends Error {
|
|
305
|
-
constructor(size) {
|
|
306
|
-
super(`Unrecognized array-like serializer size: ${JSON.stringify(size)}`);
|
|
307
|
-
__publicField(this, "name", "UnrecognizedArrayLikeSerializerSizeError");
|
|
231
|
+
// ../codecs-strings/dist/index.browser.js
|
|
232
|
+
function assertValidBaseString(alphabet4, testValue, givenValue = testValue) {
|
|
233
|
+
if (!testValue.match(new RegExp(`^[${alphabet4}]*$`))) {
|
|
234
|
+
throw new Error(`Expected a string of base ${alphabet4.length}, got [${givenValue}].`);
|
|
308
235
|
}
|
|
309
|
-
};
|
|
310
|
-
|
|
311
|
-
// ../../node_modules/.pnpm/@metaplex-foundation+umi-serializers@0.8.9/node_modules/@metaplex-foundation/umi-serializers/dist/esm/sumSerializerSizes.mjs
|
|
312
|
-
function sumSerializerSizes(sizes) {
|
|
313
|
-
return sizes.reduce((all, size) => all === null || size === null ? null : all + size, 0);
|
|
314
236
|
}
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
237
|
+
var getBaseXEncoder = (alphabet4) => {
|
|
238
|
+
return createEncoder({
|
|
239
|
+
getSizeFromValue: (value) => {
|
|
240
|
+
const [leadingZeroes, tailChars] = partitionLeadingZeroes(value, alphabet4[0]);
|
|
241
|
+
if (tailChars === "")
|
|
242
|
+
return value.length;
|
|
243
|
+
const base10Number = getBigIntFromBaseX(tailChars, alphabet4);
|
|
244
|
+
return leadingZeroes.length + Math.ceil(base10Number.toString(16).length / 2);
|
|
245
|
+
},
|
|
246
|
+
write(value, bytes, offset) {
|
|
247
|
+
assertValidBaseString(alphabet4, value);
|
|
248
|
+
if (value === "")
|
|
249
|
+
return offset;
|
|
250
|
+
const [leadingZeroes, tailChars] = partitionLeadingZeroes(value, alphabet4[0]);
|
|
251
|
+
if (tailChars === "") {
|
|
252
|
+
bytes.set(new Uint8Array(leadingZeroes.length).fill(0), offset);
|
|
253
|
+
return offset + leadingZeroes.length;
|
|
254
|
+
}
|
|
255
|
+
let base10Number = getBigIntFromBaseX(tailChars, alphabet4);
|
|
256
|
+
const tailBytes = [];
|
|
257
|
+
while (base10Number > 0n) {
|
|
258
|
+
tailBytes.unshift(Number(base10Number % 256n));
|
|
259
|
+
base10Number /= 256n;
|
|
260
|
+
}
|
|
261
|
+
const bytesToAdd = [...Array(leadingZeroes.length).fill(0), ...tailBytes];
|
|
262
|
+
bytes.set(bytesToAdd, offset);
|
|
263
|
+
return offset + bytesToAdd.length;
|
|
328
264
|
}
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
265
|
+
});
|
|
266
|
+
};
|
|
267
|
+
var getBaseXDecoder = (alphabet4) => {
|
|
268
|
+
return createDecoder({
|
|
269
|
+
read(rawBytes, offset) {
|
|
270
|
+
const bytes = offset === 0 ? rawBytes : rawBytes.slice(offset);
|
|
271
|
+
if (bytes.length === 0)
|
|
272
|
+
return ["", 0];
|
|
273
|
+
let trailIndex = bytes.findIndex((n) => n !== 0);
|
|
274
|
+
trailIndex = trailIndex === -1 ? bytes.length : trailIndex;
|
|
275
|
+
const leadingZeroes = alphabet4[0].repeat(trailIndex);
|
|
276
|
+
if (trailIndex === bytes.length)
|
|
277
|
+
return [leadingZeroes, rawBytes.length];
|
|
278
|
+
const base10Number = bytes.slice(trailIndex).reduce((sum, byte) => sum * 256n + BigInt(byte), 0n);
|
|
279
|
+
const tailChars = getBaseXFromBigInt(base10Number, alphabet4);
|
|
280
|
+
return [leadingZeroes + tailChars, rawBytes.length];
|
|
332
281
|
}
|
|
333
|
-
|
|
282
|
+
});
|
|
283
|
+
};
|
|
284
|
+
function partitionLeadingZeroes(value, zeroCharacter) {
|
|
285
|
+
const leadingZeroIndex = [...value].findIndex((c) => c !== zeroCharacter);
|
|
286
|
+
return leadingZeroIndex === -1 ? [value, ""] : [value.slice(0, leadingZeroIndex), value.slice(leadingZeroIndex)];
|
|
287
|
+
}
|
|
288
|
+
function getBigIntFromBaseX(value, alphabet4) {
|
|
289
|
+
const base = BigInt(alphabet4.length);
|
|
290
|
+
return [...value].reduce((sum, char) => sum * base + BigInt(alphabet4.indexOf(char)), 0n);
|
|
291
|
+
}
|
|
292
|
+
function getBaseXFromBigInt(value, alphabet4) {
|
|
293
|
+
const base = BigInt(alphabet4.length);
|
|
294
|
+
const tailChars = [];
|
|
295
|
+
while (value > 0n) {
|
|
296
|
+
tailChars.unshift(alphabet4[Number(value % base)]);
|
|
297
|
+
value /= base;
|
|
334
298
|
}
|
|
335
|
-
|
|
336
|
-
}
|
|
337
|
-
function getSizeDescription(size) {
|
|
338
|
-
return typeof size === "object" ? size.description : `${size}`;
|
|
299
|
+
return tailChars.join("");
|
|
339
300
|
}
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
}
|
|
351
|
-
|
|
352
|
-
// ../../node_modules/.pnpm/@metaplex-foundation+umi-serializers@0.8.9/node_modules/@metaplex-foundation/umi-serializers/dist/esm/array.mjs
|
|
353
|
-
function array(item, options = {}) {
|
|
354
|
-
const size = options.size ?? u32();
|
|
355
|
-
if (size === "remainder" && item.fixedSize === null) {
|
|
356
|
-
throw new ExpectedFixedSizeSerializerError('Serializers of "remainder" size must have fixed-size items.');
|
|
357
|
-
}
|
|
358
|
-
return {
|
|
359
|
-
description: options.description ?? `array(${item.description}; ${getSizeDescription(size)})`,
|
|
360
|
-
fixedSize: getSizeFromChildren(size, [item.fixedSize]),
|
|
361
|
-
maxSize: getSizeFromChildren(size, [item.maxSize]),
|
|
362
|
-
serialize: (value) => {
|
|
363
|
-
if (typeof size === "number" && value.length !== size) {
|
|
364
|
-
throw new InvalidNumberOfItemsError("array", size, value.length);
|
|
365
|
-
}
|
|
366
|
-
return mergeBytes([getSizePrefix(size, value.length), ...value.map((v) => item.serialize(v))]);
|
|
367
|
-
},
|
|
368
|
-
deserialize: (bytes2, offset = 0) => {
|
|
369
|
-
if (typeof size === "object" && bytes2.slice(offset).length === 0) {
|
|
370
|
-
return [[], offset];
|
|
371
|
-
}
|
|
372
|
-
const [resolvedSize, newOffset] = getResolvedSize(size, [item.fixedSize], bytes2, offset);
|
|
373
|
-
offset = newOffset;
|
|
374
|
-
const values = [];
|
|
375
|
-
for (let i = 0; i < resolvedSize; i += 1) {
|
|
376
|
-
const [value, newOffset2] = item.deserialize(bytes2, offset);
|
|
377
|
-
values.push(value);
|
|
378
|
-
offset = newOffset2;
|
|
301
|
+
var alphabet2 = "123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz";
|
|
302
|
+
var getBase58Encoder = () => getBaseXEncoder(alphabet2);
|
|
303
|
+
var getBase58Decoder = () => getBaseXDecoder(alphabet2);
|
|
304
|
+
var getBase64Decoder = () => {
|
|
305
|
+
{
|
|
306
|
+
return createDecoder({
|
|
307
|
+
read(bytes, offset = 0) {
|
|
308
|
+
const slice = bytes.slice(offset);
|
|
309
|
+
const value = btoa(String.fromCharCode(...slice));
|
|
310
|
+
return [value, bytes.length];
|
|
379
311
|
}
|
|
380
|
-
|
|
312
|
+
});
|
|
313
|
+
}
|
|
314
|
+
};
|
|
315
|
+
var removeNullCharacters = (value) => (
|
|
316
|
+
// eslint-disable-next-line no-control-regex
|
|
317
|
+
value.replace(/\u0000/g, "")
|
|
318
|
+
);
|
|
319
|
+
var e = globalThis.TextDecoder;
|
|
320
|
+
var o = globalThis.TextEncoder;
|
|
321
|
+
var getUtf8Encoder = () => {
|
|
322
|
+
let textEncoder;
|
|
323
|
+
return createEncoder({
|
|
324
|
+
getSizeFromValue: (value) => (textEncoder || (textEncoder = new o())).encode(value).length,
|
|
325
|
+
write: (value, bytes, offset) => {
|
|
326
|
+
const bytesToAdd = (textEncoder || (textEncoder = new o())).encode(value);
|
|
327
|
+
bytes.set(bytesToAdd, offset);
|
|
328
|
+
return offset + bytesToAdd.length;
|
|
381
329
|
}
|
|
382
|
-
};
|
|
383
|
-
}
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
description,
|
|
391
|
-
fixedSize: null,
|
|
392
|
-
maxSize: null,
|
|
393
|
-
serialize: (value) => new Uint8Array(value),
|
|
394
|
-
deserialize: (bytes2, offset = 0) => {
|
|
395
|
-
const slice = bytes2.slice(offset);
|
|
396
|
-
return [slice, offset + slice.length];
|
|
330
|
+
});
|
|
331
|
+
};
|
|
332
|
+
var getUtf8Decoder = () => {
|
|
333
|
+
let textDecoder;
|
|
334
|
+
return createDecoder({
|
|
335
|
+
read(bytes, offset) {
|
|
336
|
+
const value = (textDecoder || (textDecoder = new e())).decode(bytes.slice(offset));
|
|
337
|
+
return [removeNullCharacters(value), bytes.length];
|
|
397
338
|
}
|
|
398
|
-
};
|
|
339
|
+
});
|
|
340
|
+
};
|
|
341
|
+
function getStringEncoder(config = {}) {
|
|
342
|
+
var _a, _b;
|
|
343
|
+
const size = (_a = config.size) != null ? _a : getU32Encoder();
|
|
344
|
+
const encoding = (_b = config.encoding) != null ? _b : getUtf8Encoder();
|
|
399
345
|
if (size === "variable") {
|
|
400
|
-
return
|
|
346
|
+
return encoding;
|
|
401
347
|
}
|
|
402
348
|
if (typeof size === "number") {
|
|
403
|
-
return
|
|
349
|
+
return fixEncoder(encoding, size);
|
|
404
350
|
}
|
|
405
|
-
return {
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
serialize: (value) => {
|
|
410
|
-
const contentBytes = byteSerializer.serialize(value);
|
|
411
|
-
const lengthBytes = size.serialize(contentBytes.length);
|
|
412
|
-
return mergeBytes([lengthBytes, contentBytes]);
|
|
351
|
+
return createEncoder({
|
|
352
|
+
getSizeFromValue: (value) => {
|
|
353
|
+
const contentSize = getEncodedSize(value, encoding);
|
|
354
|
+
return getEncodedSize(contentSize, size) + contentSize;
|
|
413
355
|
},
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
const [lengthBigInt, lengthOffset] = size.deserialize(buffer, offset);
|
|
419
|
-
const length = Number(lengthBigInt);
|
|
420
|
-
offset = lengthOffset;
|
|
421
|
-
const contentBuffer = buffer.slice(offset, offset + length);
|
|
422
|
-
if (contentBuffer.length < length) {
|
|
423
|
-
throw new NotEnoughBytesError("bytes", length, contentBuffer.length);
|
|
424
|
-
}
|
|
425
|
-
const [value, contentOffset] = byteSerializer.deserialize(contentBuffer);
|
|
426
|
-
offset += contentOffset;
|
|
427
|
-
return [value, offset];
|
|
356
|
+
write: (value, bytes, offset) => {
|
|
357
|
+
const contentSize = getEncodedSize(value, encoding);
|
|
358
|
+
offset = size.write(contentSize, bytes, offset);
|
|
359
|
+
return encoding.write(value, bytes, offset);
|
|
428
360
|
}
|
|
429
|
-
};
|
|
361
|
+
});
|
|
430
362
|
}
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
const
|
|
435
|
-
const encoding = options.encoding ?? utf8;
|
|
436
|
-
const description = options.description ?? `string(${encoding.description}; ${getSizeDescription(size)})`;
|
|
363
|
+
function getStringDecoder(config = {}) {
|
|
364
|
+
var _a, _b;
|
|
365
|
+
const size = (_a = config.size) != null ? _a : getU32Decoder();
|
|
366
|
+
const encoding = (_b = config.encoding) != null ? _b : getUtf8Decoder();
|
|
437
367
|
if (size === "variable") {
|
|
438
|
-
return
|
|
439
|
-
...encoding,
|
|
440
|
-
description
|
|
441
|
-
};
|
|
368
|
+
return encoding;
|
|
442
369
|
}
|
|
443
370
|
if (typeof size === "number") {
|
|
444
|
-
return
|
|
371
|
+
return fixDecoder(encoding, size);
|
|
445
372
|
}
|
|
446
|
-
return {
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
serialize: (value) => {
|
|
451
|
-
const contentBytes = encoding.serialize(value);
|
|
452
|
-
const lengthBytes = size.serialize(contentBytes.length);
|
|
453
|
-
return mergeBytes([lengthBytes, contentBytes]);
|
|
454
|
-
},
|
|
455
|
-
deserialize: (buffer, offset = 0) => {
|
|
456
|
-
if (buffer.slice(offset).length === 0) {
|
|
457
|
-
throw new DeserializingEmptyBufferError("string");
|
|
458
|
-
}
|
|
459
|
-
const [lengthBigInt, lengthOffset] = size.deserialize(buffer, offset);
|
|
373
|
+
return createDecoder({
|
|
374
|
+
read: (bytes, offset = 0) => {
|
|
375
|
+
assertByteArrayIsNotEmptyForCodec("string", bytes, offset);
|
|
376
|
+
const [lengthBigInt, lengthOffset] = size.read(bytes, offset);
|
|
460
377
|
const length = Number(lengthBigInt);
|
|
461
378
|
offset = lengthOffset;
|
|
462
|
-
const
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
}
|
|
466
|
-
const [value, contentOffset] = encoding.deserialize(contentBuffer);
|
|
379
|
+
const contentBytes = bytes.slice(offset, offset + length);
|
|
380
|
+
assertByteArrayHasEnoughBytesForCodec("string", length, contentBytes);
|
|
381
|
+
const [value, contentOffset] = encoding.read(contentBytes, 0);
|
|
467
382
|
offset += contentOffset;
|
|
468
383
|
return [value, offset];
|
|
469
384
|
}
|
|
470
|
-
};
|
|
471
|
-
}
|
|
472
|
-
|
|
473
|
-
// ../../node_modules/.pnpm/@metaplex-foundation+umi-serializers@0.8.9/node_modules/@metaplex-foundation/umi-serializers/dist/esm/struct.mjs
|
|
474
|
-
function struct(fields, options = {}) {
|
|
475
|
-
const fieldDescriptions = fields.map(([name, serializer]) => `${String(name)}: ${serializer.description}`).join(", ");
|
|
476
|
-
return {
|
|
477
|
-
description: options.description ?? `struct(${fieldDescriptions})`,
|
|
478
|
-
fixedSize: sumSerializerSizes(fields.map(([, field]) => field.fixedSize)),
|
|
479
|
-
maxSize: sumSerializerSizes(fields.map(([, field]) => field.maxSize)),
|
|
480
|
-
serialize: (struct2) => {
|
|
481
|
-
const fieldBytes = fields.map(([key, serializer]) => serializer.serialize(struct2[key]));
|
|
482
|
-
return mergeBytes(fieldBytes);
|
|
483
|
-
},
|
|
484
|
-
deserialize: (bytes2, offset = 0) => {
|
|
485
|
-
const struct2 = {};
|
|
486
|
-
fields.forEach(([key, serializer]) => {
|
|
487
|
-
const [value, newOffset] = serializer.deserialize(bytes2, offset);
|
|
488
|
-
offset = newOffset;
|
|
489
|
-
struct2[key] = value;
|
|
490
|
-
});
|
|
491
|
-
return [struct2, offset];
|
|
492
|
-
}
|
|
493
|
-
};
|
|
385
|
+
});
|
|
494
386
|
}
|
|
495
387
|
|
|
496
388
|
// src/unsigned-transaction.ts
|
|
@@ -508,7 +400,10 @@ this.globalThis.solanaWeb3 = (function (exports) {
|
|
|
508
400
|
}
|
|
509
401
|
|
|
510
402
|
// src/blockhash.ts
|
|
403
|
+
var base58Encoder;
|
|
511
404
|
function assertIsBlockhash(putativeBlockhash) {
|
|
405
|
+
if (!base58Encoder)
|
|
406
|
+
base58Encoder = getBase58Encoder();
|
|
512
407
|
try {
|
|
513
408
|
if (
|
|
514
409
|
// Lowest value (32 bytes of zeroes)
|
|
@@ -517,17 +412,33 @@ this.globalThis.solanaWeb3 = (function (exports) {
|
|
|
517
412
|
) {
|
|
518
413
|
throw new Error("Expected input string to decode to a byte array of length 32.");
|
|
519
414
|
}
|
|
520
|
-
const
|
|
521
|
-
const numBytes =
|
|
415
|
+
const bytes = base58Encoder.encode(putativeBlockhash);
|
|
416
|
+
const numBytes = bytes.byteLength;
|
|
522
417
|
if (numBytes !== 32) {
|
|
523
418
|
throw new Error(`Expected input string to decode to a byte array of length 32. Actual length: ${numBytes}`);
|
|
524
419
|
}
|
|
525
|
-
} catch (
|
|
420
|
+
} catch (e2) {
|
|
526
421
|
throw new Error(`\`${putativeBlockhash}\` is not a blockhash`, {
|
|
527
|
-
cause:
|
|
422
|
+
cause: e2
|
|
528
423
|
});
|
|
529
424
|
}
|
|
530
425
|
}
|
|
426
|
+
function isTransactionWithBlockhashLifetime(transaction) {
|
|
427
|
+
const lifetimeConstraintShapeMatches = "lifetimeConstraint" in transaction && typeof transaction.lifetimeConstraint.blockhash === "string" && typeof transaction.lifetimeConstraint.lastValidBlockHeight === "bigint";
|
|
428
|
+
if (!lifetimeConstraintShapeMatches)
|
|
429
|
+
return false;
|
|
430
|
+
try {
|
|
431
|
+
assertIsBlockhash(transaction.lifetimeConstraint.blockhash);
|
|
432
|
+
return true;
|
|
433
|
+
} catch {
|
|
434
|
+
return false;
|
|
435
|
+
}
|
|
436
|
+
}
|
|
437
|
+
function assertIsTransactionWithBlockhashLifetime(transaction) {
|
|
438
|
+
if (!isTransactionWithBlockhashLifetime(transaction)) {
|
|
439
|
+
throw new Error("Transaction does not have a blockhash lifetime");
|
|
440
|
+
}
|
|
441
|
+
}
|
|
531
442
|
function setTransactionLifetimeUsingBlockhash(blockhashLifetimeConstraint, transaction) {
|
|
532
443
|
if ("lifetimeConstraint" in transaction && transaction.lifetimeConstraint.blockhash === blockhashLifetimeConstraint.blockhash && transaction.lifetimeConstraint.lastValidBlockHeight === blockhashLifetimeConstraint.lastValidBlockHeight) {
|
|
533
444
|
return transaction;
|
|
@@ -598,12 +509,13 @@ this.globalThis.solanaWeb3 = (function (exports) {
|
|
|
598
509
|
};
|
|
599
510
|
}
|
|
600
511
|
function isAdvanceNonceAccountInstruction(instruction) {
|
|
512
|
+
var _a;
|
|
601
513
|
return instruction.programAddress === SYSTEM_PROGRAM_ADDRESS && // Test for `AdvanceNonceAccount` instruction data
|
|
602
514
|
instruction.data != null && isAdvanceNonceAccountInstructionData(instruction.data) && // Test for exactly 3 accounts
|
|
603
|
-
instruction.accounts
|
|
515
|
+
((_a = instruction.accounts) == null ? void 0 : _a.length) === 3 && // First account is nonce account address
|
|
604
516
|
instruction.accounts[0].address != null && instruction.accounts[0].role === AccountRole.WRITABLE && // Second account is recent blockhashes sysvar
|
|
605
517
|
instruction.accounts[1].address === RECENT_BLOCKHASHES_SYSVAR_ADDRESS && instruction.accounts[1].role === AccountRole.READONLY && // Third account is nonce authority account
|
|
606
|
-
instruction.accounts[2].address != null && instruction.accounts[2].role
|
|
518
|
+
instruction.accounts[2].address != null && isSignerRole(instruction.accounts[2].role);
|
|
607
519
|
}
|
|
608
520
|
function isAdvanceNonceAccountInstructionData(data) {
|
|
609
521
|
return data.byteLength === 4 && data[0] === 4 && data[1] === 0 && data[2] === 0 && data[3] === 0;
|
|
@@ -611,21 +523,38 @@ this.globalThis.solanaWeb3 = (function (exports) {
|
|
|
611
523
|
function isDurableNonceTransaction(transaction) {
|
|
612
524
|
return "lifetimeConstraint" in transaction && typeof transaction.lifetimeConstraint.nonce === "string" && transaction.instructions[0] != null && isAdvanceNonceAccountInstruction(transaction.instructions[0]);
|
|
613
525
|
}
|
|
526
|
+
function isAdvanceNonceAccountInstructionForNonce(instruction, nonceAccountAddress, nonceAuthorityAddress) {
|
|
527
|
+
return instruction.accounts[0].address === nonceAccountAddress && instruction.accounts[2].address === nonceAuthorityAddress;
|
|
528
|
+
}
|
|
614
529
|
function setTransactionLifetimeUsingDurableNonce({
|
|
615
530
|
nonce,
|
|
616
531
|
nonceAccountAddress,
|
|
617
532
|
nonceAuthorityAddress
|
|
618
533
|
}, transaction) {
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
534
|
+
let newInstructions;
|
|
535
|
+
const firstInstruction = transaction.instructions[0];
|
|
536
|
+
if (firstInstruction && isAdvanceNonceAccountInstruction(firstInstruction)) {
|
|
537
|
+
if (isAdvanceNonceAccountInstructionForNonce(firstInstruction, nonceAccountAddress, nonceAuthorityAddress)) {
|
|
538
|
+
if (isDurableNonceTransaction(transaction) && transaction.lifetimeConstraint.nonce === nonce) {
|
|
539
|
+
return transaction;
|
|
540
|
+
} else {
|
|
541
|
+
newInstructions = [firstInstruction, ...transaction.instructions.slice(1)];
|
|
542
|
+
}
|
|
543
|
+
} else {
|
|
544
|
+
newInstructions = [
|
|
545
|
+
createAdvanceNonceAccountInstruction(nonceAccountAddress, nonceAuthorityAddress),
|
|
546
|
+
...transaction.instructions.slice(1)
|
|
547
|
+
];
|
|
548
|
+
}
|
|
549
|
+
} else {
|
|
550
|
+
newInstructions = [
|
|
551
|
+
createAdvanceNonceAccountInstruction(nonceAccountAddress, nonceAuthorityAddress),
|
|
552
|
+
...transaction.instructions
|
|
553
|
+
];
|
|
622
554
|
}
|
|
623
555
|
const out = {
|
|
624
556
|
...getUnsignedTransaction(transaction),
|
|
625
|
-
instructions:
|
|
626
|
-
createAdvanceNonceAccountInstruction(nonceAccountAddress, nonceAuthorityAddress),
|
|
627
|
-
...isAlreadyDurableNonceTransaction ? transaction.instructions.slice(1) : transaction.instructions
|
|
628
|
-
],
|
|
557
|
+
instructions: newInstructions,
|
|
629
558
|
lifetimeConstraint: {
|
|
630
559
|
nonce
|
|
631
560
|
}
|
|
@@ -674,23 +603,66 @@ this.globalThis.solanaWeb3 = (function (exports) {
|
|
|
674
603
|
}
|
|
675
604
|
}
|
|
676
605
|
async function assertKeyExporterIsAvailable() {
|
|
606
|
+
var _a;
|
|
677
607
|
assertIsSecureContext();
|
|
678
|
-
if (typeof globalThis.crypto === "undefined" || typeof globalThis.crypto.subtle
|
|
608
|
+
if (typeof globalThis.crypto === "undefined" || typeof ((_a = globalThis.crypto.subtle) == null ? void 0 : _a.exportKey) !== "function") {
|
|
679
609
|
throw new Error("No key export implementation could be found");
|
|
680
610
|
}
|
|
681
611
|
}
|
|
682
612
|
async function assertSigningCapabilityIsAvailable() {
|
|
613
|
+
var _a;
|
|
683
614
|
assertIsSecureContext();
|
|
684
|
-
if (typeof globalThis.crypto === "undefined" || typeof globalThis.crypto.subtle
|
|
615
|
+
if (typeof globalThis.crypto === "undefined" || typeof ((_a = globalThis.crypto.subtle) == null ? void 0 : _a.sign) !== "function") {
|
|
685
616
|
throw new Error("No signing implementation could be found");
|
|
686
617
|
}
|
|
687
618
|
}
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
619
|
+
|
|
620
|
+
// ../addresses/dist/index.browser.js
|
|
621
|
+
var memoizedBase58Encoder;
|
|
622
|
+
var memoizedBase58Decoder;
|
|
623
|
+
function getMemoizedBase58Encoder() {
|
|
624
|
+
if (!memoizedBase58Encoder)
|
|
625
|
+
memoizedBase58Encoder = getBase58Encoder();
|
|
626
|
+
return memoizedBase58Encoder;
|
|
627
|
+
}
|
|
628
|
+
function getMemoizedBase58Decoder() {
|
|
629
|
+
if (!memoizedBase58Decoder)
|
|
630
|
+
memoizedBase58Decoder = getBase58Decoder();
|
|
631
|
+
return memoizedBase58Decoder;
|
|
632
|
+
}
|
|
633
|
+
function assertIsAddress(putativeAddress) {
|
|
634
|
+
try {
|
|
635
|
+
if (
|
|
636
|
+
// Lowest address (32 bytes of zeroes)
|
|
637
|
+
putativeAddress.length < 32 || // Highest address (32 bytes of 255)
|
|
638
|
+
putativeAddress.length > 44
|
|
639
|
+
) {
|
|
640
|
+
throw new Error("Expected input string to decode to a byte array of length 32.");
|
|
641
|
+
}
|
|
642
|
+
const base58Encoder2 = getMemoizedBase58Encoder();
|
|
643
|
+
const bytes = base58Encoder2.encode(putativeAddress);
|
|
644
|
+
const numBytes = bytes.byteLength;
|
|
645
|
+
if (numBytes !== 32) {
|
|
646
|
+
throw new Error(`Expected input string to decode to a byte array of length 32. Actual length: ${numBytes}`);
|
|
647
|
+
}
|
|
648
|
+
} catch (e2) {
|
|
649
|
+
throw new Error(`\`${putativeAddress}\` is not a base-58 encoded address`, {
|
|
650
|
+
cause: e2
|
|
651
|
+
});
|
|
652
|
+
}
|
|
653
|
+
}
|
|
654
|
+
function address(putativeAddress) {
|
|
655
|
+
assertIsAddress(putativeAddress);
|
|
656
|
+
return putativeAddress;
|
|
657
|
+
}
|
|
658
|
+
function getAddressEncoder() {
|
|
659
|
+
return mapEncoder(
|
|
660
|
+
getStringEncoder({ encoding: getMemoizedBase58Encoder(), size: 32 }),
|
|
661
|
+
(putativeAddress) => address(putativeAddress)
|
|
662
|
+
);
|
|
663
|
+
}
|
|
664
|
+
function getAddressDecoder() {
|
|
665
|
+
return getStringDecoder({ encoding: getMemoizedBase58Decoder(), size: 32 });
|
|
694
666
|
}
|
|
695
667
|
function getAddressComparator() {
|
|
696
668
|
return new Intl.Collator("en", {
|
|
@@ -708,13 +680,13 @@ this.globalThis.solanaWeb3 = (function (exports) {
|
|
|
708
680
|
throw new Error("The `CryptoKey` must be an `Ed25519` public key");
|
|
709
681
|
}
|
|
710
682
|
const publicKeyBytes = await crypto.subtle.exportKey("raw", publicKey);
|
|
711
|
-
|
|
712
|
-
return base58EncodedAddress;
|
|
683
|
+
return getAddressDecoder().decode(new Uint8Array(publicKeyBytes));
|
|
713
684
|
}
|
|
714
685
|
|
|
715
686
|
// src/accounts.ts
|
|
716
|
-
function upsert(addressMap,
|
|
717
|
-
|
|
687
|
+
function upsert(addressMap, address2, update) {
|
|
688
|
+
var _a;
|
|
689
|
+
addressMap[address2] = update((_a = addressMap[address2]) != null ? _a : { role: AccountRole.READONLY });
|
|
718
690
|
}
|
|
719
691
|
var TYPE = Symbol("AddressMapTypeProperty");
|
|
720
692
|
function getAddressMapFromInstructions(feePayer, instructions) {
|
|
@@ -877,8 +849,8 @@ this.globalThis.solanaWeb3 = (function (exports) {
|
|
|
877
849
|
} else {
|
|
878
850
|
return addressComparator(leftAddress, rightAddress);
|
|
879
851
|
}
|
|
880
|
-
}).map(([
|
|
881
|
-
address,
|
|
852
|
+
}).map(([address2, addressMeta]) => ({
|
|
853
|
+
address: address2,
|
|
882
854
|
...addressMeta
|
|
883
855
|
}));
|
|
884
856
|
return orderedAccounts;
|
|
@@ -947,7 +919,7 @@ this.globalThis.solanaWeb3 = (function (exports) {
|
|
|
947
919
|
return instructions.map(({ accounts, data, programAddress }) => {
|
|
948
920
|
return {
|
|
949
921
|
programAddressIndex: accountIndex[programAddress],
|
|
950
|
-
...accounts ? { accountIndices: accounts.map(({ address }) => accountIndex[
|
|
922
|
+
...accounts ? { accountIndices: accounts.map(({ address: address2 }) => accountIndex[address2]) } : null,
|
|
951
923
|
...data ? { data } : null
|
|
952
924
|
};
|
|
953
925
|
});
|
|
@@ -965,7 +937,7 @@ this.globalThis.solanaWeb3 = (function (exports) {
|
|
|
965
937
|
function getCompiledStaticAccounts(orderedAccounts) {
|
|
966
938
|
const firstLookupTableAccountIndex = orderedAccounts.findIndex((account) => "lookupTableAddress" in account);
|
|
967
939
|
const orderedStaticAccounts = firstLookupTableAccountIndex === -1 ? orderedAccounts : orderedAccounts.slice(0, firstLookupTableAccountIndex);
|
|
968
|
-
return orderedStaticAccounts.map(({ address }) =>
|
|
940
|
+
return orderedStaticAccounts.map(({ address: address2 }) => address2);
|
|
969
941
|
}
|
|
970
942
|
|
|
971
943
|
// src/message.ts
|
|
@@ -982,292 +954,583 @@ this.globalThis.solanaWeb3 = (function (exports) {
|
|
|
982
954
|
};
|
|
983
955
|
}
|
|
984
956
|
|
|
985
|
-
//
|
|
986
|
-
function
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
957
|
+
// ../codecs-data-structures/dist/index.browser.js
|
|
958
|
+
function assertValidNumberOfItemsForCodec(codecDescription, expected, actual) {
|
|
959
|
+
if (expected !== actual) {
|
|
960
|
+
throw new Error(`Expected [${codecDescription}] to have ${expected} items, got ${actual}.`);
|
|
961
|
+
}
|
|
962
|
+
}
|
|
963
|
+
function sumCodecSizes(sizes) {
|
|
964
|
+
return sizes.reduce((all, size) => all === null || size === null ? null : all + size, 0);
|
|
965
|
+
}
|
|
966
|
+
function getFixedSize(codec) {
|
|
967
|
+
return isFixedSize(codec) ? codec.fixedSize : null;
|
|
968
|
+
}
|
|
969
|
+
function getMaxSize(codec) {
|
|
970
|
+
var _a;
|
|
971
|
+
return isFixedSize(codec) ? codec.fixedSize : (_a = codec.maxSize) != null ? _a : null;
|
|
972
|
+
}
|
|
973
|
+
function getArrayEncoder(item, config = {}) {
|
|
974
|
+
var _a, _b;
|
|
975
|
+
const size = (_a = config.size) != null ? _a : getU32Encoder();
|
|
976
|
+
if (size === "remainder") {
|
|
977
|
+
assertIsFixedSize(item, 'Codecs of "remainder" size must have fixed-size items.');
|
|
978
|
+
}
|
|
979
|
+
const fixedSize = computeArrayLikeCodecSize(size, getFixedSize(item));
|
|
980
|
+
const maxSize = (_b = computeArrayLikeCodecSize(size, getMaxSize(item))) != null ? _b : void 0;
|
|
981
|
+
return createEncoder({
|
|
982
|
+
...fixedSize !== null ? { fixedSize } : {
|
|
983
|
+
getSizeFromValue: (array) => {
|
|
984
|
+
const prefixSize = typeof size === "object" ? getEncodedSize(array.length, size) : 0;
|
|
985
|
+
return prefixSize + [...array].reduce((all, value) => all + getEncodedSize(value, item), 0);
|
|
986
|
+
},
|
|
987
|
+
maxSize
|
|
988
|
+
},
|
|
989
|
+
write: (array, bytes, offset) => {
|
|
990
|
+
if (typeof size === "number") {
|
|
991
|
+
assertValidNumberOfItemsForCodec("array", size, array.length);
|
|
992
|
+
}
|
|
993
|
+
if (typeof size === "object") {
|
|
994
|
+
offset = size.write(array.length, bytes, offset);
|
|
995
|
+
}
|
|
996
|
+
array.forEach((value) => {
|
|
997
|
+
offset = item.write(value, bytes, offset);
|
|
998
|
+
});
|
|
999
|
+
return offset;
|
|
993
1000
|
}
|
|
994
|
-
}
|
|
995
|
-
|
|
1001
|
+
});
|
|
1002
|
+
}
|
|
1003
|
+
function getArrayDecoder(item, config = {}) {
|
|
1004
|
+
var _a, _b;
|
|
1005
|
+
const size = (_a = config.size) != null ? _a : getU32Decoder();
|
|
1006
|
+
if (size === "remainder") {
|
|
1007
|
+
assertIsFixedSize(item, 'Codecs of "remainder" size must have fixed-size items.');
|
|
996
1008
|
}
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1009
|
+
const itemSize = getFixedSize(item);
|
|
1010
|
+
const fixedSize = computeArrayLikeCodecSize(size, itemSize);
|
|
1011
|
+
const maxSize = (_b = computeArrayLikeCodecSize(size, getMaxSize(item))) != null ? _b : void 0;
|
|
1012
|
+
return createDecoder({
|
|
1013
|
+
...fixedSize !== null ? { fixedSize } : { maxSize },
|
|
1014
|
+
read: (bytes, offset) => {
|
|
1015
|
+
const array = [];
|
|
1016
|
+
if (typeof size === "object" && bytes.slice(offset).length === 0) {
|
|
1017
|
+
return [array, offset];
|
|
1018
|
+
}
|
|
1019
|
+
const [resolvedSize, newOffset] = readArrayLikeCodecSize(size, itemSize, bytes, offset);
|
|
1020
|
+
offset = newOffset;
|
|
1021
|
+
for (let i = 0; i < resolvedSize; i += 1) {
|
|
1022
|
+
const [value, newOffset2] = item.read(bytes, offset);
|
|
1023
|
+
offset = newOffset2;
|
|
1024
|
+
array.push(value);
|
|
1025
|
+
}
|
|
1026
|
+
return [array, offset];
|
|
1027
|
+
}
|
|
1028
|
+
});
|
|
1029
|
+
}
|
|
1030
|
+
function readArrayLikeCodecSize(size, itemSize, bytes, offset) {
|
|
1031
|
+
if (typeof size === "number") {
|
|
1032
|
+
return [size, offset];
|
|
1033
|
+
}
|
|
1034
|
+
if (typeof size === "object") {
|
|
1035
|
+
return size.read(bytes, offset);
|
|
1036
|
+
}
|
|
1037
|
+
if (size === "remainder") {
|
|
1038
|
+
if (itemSize === null) {
|
|
1039
|
+
throw new Error('Codecs of "remainder" size must have fixed-size items.');
|
|
1040
|
+
}
|
|
1041
|
+
const remainder = Math.max(0, bytes.length - offset);
|
|
1042
|
+
if (remainder % itemSize !== 0) {
|
|
1043
|
+
throw new Error(
|
|
1044
|
+
`The remainder of the byte array (${remainder} bytes) cannot be split into chunks of ${itemSize} bytes. Codecs of "remainder" size must have a remainder that is a multiple of its item size. In other words, ${remainder} modulo ${itemSize} should be equal to zero.`
|
|
1045
|
+
);
|
|
1046
|
+
}
|
|
1047
|
+
return [remainder / itemSize, offset];
|
|
1048
|
+
}
|
|
1049
|
+
throw new Error(`Unrecognized array-like codec size: ${JSON.stringify(size)}`);
|
|
1050
|
+
}
|
|
1051
|
+
function computeArrayLikeCodecSize(size, itemSize) {
|
|
1052
|
+
if (typeof size !== "number")
|
|
1053
|
+
return null;
|
|
1054
|
+
if (size === 0)
|
|
1055
|
+
return 0;
|
|
1056
|
+
return itemSize === null ? null : itemSize * size;
|
|
1057
|
+
}
|
|
1058
|
+
function getBytesEncoder(config = {}) {
|
|
1059
|
+
var _a;
|
|
1060
|
+
const size = (_a = config.size) != null ? _a : "variable";
|
|
1061
|
+
const byteEncoder = createEncoder({
|
|
1062
|
+
getSizeFromValue: (value) => value.length,
|
|
1063
|
+
write: (value, bytes, offset) => {
|
|
1064
|
+
bytes.set(value, offset);
|
|
1065
|
+
return offset + value.length;
|
|
1066
|
+
}
|
|
1067
|
+
});
|
|
1068
|
+
if (size === "variable") {
|
|
1069
|
+
return byteEncoder;
|
|
1070
|
+
}
|
|
1071
|
+
if (typeof size === "number") {
|
|
1072
|
+
return fixEncoder(byteEncoder, size);
|
|
1073
|
+
}
|
|
1074
|
+
return createEncoder({
|
|
1075
|
+
getSizeFromValue: (value) => getEncodedSize(value.length, size) + value.length,
|
|
1076
|
+
write: (value, bytes, offset) => {
|
|
1077
|
+
offset = size.write(value.length, bytes, offset);
|
|
1078
|
+
return byteEncoder.write(value, bytes, offset);
|
|
1079
|
+
}
|
|
1080
|
+
});
|
|
1081
|
+
}
|
|
1082
|
+
function getBytesDecoder(config = {}) {
|
|
1083
|
+
var _a;
|
|
1084
|
+
const size = (_a = config.size) != null ? _a : "variable";
|
|
1085
|
+
const byteDecoder = createDecoder({
|
|
1086
|
+
read: (bytes, offset) => {
|
|
1087
|
+
const slice = bytes.slice(offset);
|
|
1088
|
+
return [slice, offset + slice.length];
|
|
1089
|
+
}
|
|
1090
|
+
});
|
|
1091
|
+
if (size === "variable") {
|
|
1092
|
+
return byteDecoder;
|
|
1093
|
+
}
|
|
1094
|
+
if (typeof size === "number") {
|
|
1095
|
+
return fixDecoder(byteDecoder, size);
|
|
1096
|
+
}
|
|
1097
|
+
return createDecoder({
|
|
1098
|
+
read: (bytes, offset) => {
|
|
1099
|
+
assertByteArrayIsNotEmptyForCodec("bytes", bytes, offset);
|
|
1100
|
+
const [lengthBigInt, lengthOffset] = size.read(bytes, offset);
|
|
1101
|
+
const length = Number(lengthBigInt);
|
|
1102
|
+
offset = lengthOffset;
|
|
1103
|
+
const contentBytes = bytes.slice(offset, offset + length);
|
|
1104
|
+
assertByteArrayHasEnoughBytesForCodec("bytes", length, contentBytes);
|
|
1105
|
+
const [value, contentOffset] = byteDecoder.read(contentBytes, 0);
|
|
1106
|
+
offset += contentOffset;
|
|
1107
|
+
return [value, offset];
|
|
1108
|
+
}
|
|
1109
|
+
});
|
|
1110
|
+
}
|
|
1111
|
+
function getStructEncoder(fields) {
|
|
1112
|
+
var _a;
|
|
1113
|
+
const fieldCodecs = fields.map(([, codec]) => codec);
|
|
1114
|
+
const fixedSize = sumCodecSizes(fieldCodecs.map(getFixedSize));
|
|
1115
|
+
const maxSize = (_a = sumCodecSizes(fieldCodecs.map(getMaxSize))) != null ? _a : void 0;
|
|
1116
|
+
return createEncoder({
|
|
1117
|
+
...fixedSize === null ? {
|
|
1118
|
+
getSizeFromValue: (value) => fields.map(([key, codec]) => getEncodedSize(value[key], codec)).reduce((all, one) => all + one, 0),
|
|
1119
|
+
maxSize
|
|
1120
|
+
} : { fixedSize },
|
|
1121
|
+
write: (struct, bytes, offset) => {
|
|
1122
|
+
fields.forEach(([key, codec]) => {
|
|
1123
|
+
offset = codec.write(struct[key], bytes, offset);
|
|
1124
|
+
});
|
|
1125
|
+
return offset;
|
|
1126
|
+
}
|
|
1127
|
+
});
|
|
1128
|
+
}
|
|
1129
|
+
function getStructDecoder(fields) {
|
|
1130
|
+
var _a;
|
|
1131
|
+
const fieldCodecs = fields.map(([, codec]) => codec);
|
|
1132
|
+
const fixedSize = sumCodecSizes(fieldCodecs.map(getFixedSize));
|
|
1133
|
+
const maxSize = (_a = sumCodecSizes(fieldCodecs.map(getMaxSize))) != null ? _a : void 0;
|
|
1134
|
+
return createDecoder({
|
|
1135
|
+
...fixedSize === null ? { maxSize } : { fixedSize },
|
|
1136
|
+
read: (bytes, offset) => {
|
|
1137
|
+
const struct = {};
|
|
1138
|
+
fields.forEach(([key, codec]) => {
|
|
1139
|
+
const [value, newOffset] = codec.read(bytes, offset);
|
|
1140
|
+
offset = newOffset;
|
|
1141
|
+
struct[key] = value;
|
|
1142
|
+
});
|
|
1143
|
+
return [struct, offset];
|
|
1144
|
+
}
|
|
1145
|
+
});
|
|
1001
1146
|
}
|
|
1002
1147
|
|
|
1003
1148
|
// src/serializers/address-table-lookup.ts
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
getAddressCodec(
|
|
1010
|
-
{
|
|
1011
|
-
description: "The address of the address lookup table account from which instruction addresses should be looked up"
|
|
1012
|
-
}
|
|
1013
|
-
)
|
|
1014
|
-
],
|
|
1149
|
+
var memoizedAddressTableLookupEncoder;
|
|
1150
|
+
function getAddressTableLookupEncoder() {
|
|
1151
|
+
if (!memoizedAddressTableLookupEncoder) {
|
|
1152
|
+
memoizedAddressTableLookupEncoder = getStructEncoder([
|
|
1153
|
+
["lookupTableAddress", getAddressEncoder()],
|
|
1015
1154
|
[
|
|
1016
1155
|
"writableIndices",
|
|
1017
|
-
|
|
1018
|
-
...{
|
|
1019
|
-
description: "The indices of the accounts in the lookup table that should be loaded as writeable"
|
|
1020
|
-
} ,
|
|
1021
|
-
size: shortU16()
|
|
1022
|
-
})
|
|
1156
|
+
getArrayEncoder(getU8Encoder(), { size: getShortU16Encoder() })
|
|
1023
1157
|
],
|
|
1024
1158
|
[
|
|
1025
1159
|
"readableIndices",
|
|
1026
|
-
|
|
1027
|
-
...{
|
|
1028
|
-
description: "The indices of the accounts in the lookup table that should be loaded as read-only"
|
|
1029
|
-
} ,
|
|
1030
|
-
size: shortU16()
|
|
1031
|
-
})
|
|
1160
|
+
getArrayEncoder(getU8Encoder(), { size: getShortU16Encoder() })
|
|
1032
1161
|
]
|
|
1033
|
-
]
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1162
|
+
]);
|
|
1163
|
+
}
|
|
1164
|
+
return memoizedAddressTableLookupEncoder;
|
|
1165
|
+
}
|
|
1166
|
+
var memoizedAddressTableLookupDecoder;
|
|
1167
|
+
function getAddressTableLookupDecoder() {
|
|
1168
|
+
if (!memoizedAddressTableLookupDecoder) {
|
|
1169
|
+
memoizedAddressTableLookupDecoder = getStructDecoder([
|
|
1170
|
+
["lookupTableAddress", getAddressDecoder()],
|
|
1171
|
+
["writableIndices", getArrayDecoder(getU8Decoder(), { size: getShortU16Decoder() })],
|
|
1172
|
+
["readableIndices", getArrayDecoder(getU8Decoder(), { size: getShortU16Decoder() })]
|
|
1173
|
+
]);
|
|
1174
|
+
}
|
|
1175
|
+
return memoizedAddressTableLookupDecoder;
|
|
1038
1176
|
}
|
|
1039
1177
|
|
|
1040
1178
|
// src/serializers/header.ts
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
)
|
|
1067
|
-
]
|
|
1068
|
-
],
|
|
1069
|
-
{
|
|
1070
|
-
description: "The transaction message header containing counts of the signer, readonly-signer, and readonly-nonsigner account addresses"
|
|
1071
|
-
}
|
|
1072
|
-
);
|
|
1179
|
+
var memoizedU8Encoder;
|
|
1180
|
+
function getMemoizedU8Encoder() {
|
|
1181
|
+
if (!memoizedU8Encoder)
|
|
1182
|
+
memoizedU8Encoder = getU8Encoder();
|
|
1183
|
+
return memoizedU8Encoder;
|
|
1184
|
+
}
|
|
1185
|
+
var memoizedU8Decoder;
|
|
1186
|
+
function getMemoizedU8Decoder() {
|
|
1187
|
+
if (!memoizedU8Decoder)
|
|
1188
|
+
memoizedU8Decoder = getU8Decoder();
|
|
1189
|
+
return memoizedU8Decoder;
|
|
1190
|
+
}
|
|
1191
|
+
function getMessageHeaderEncoder() {
|
|
1192
|
+
return getStructEncoder([
|
|
1193
|
+
["numSignerAccounts", getMemoizedU8Encoder()],
|
|
1194
|
+
["numReadonlySignerAccounts", getMemoizedU8Encoder()],
|
|
1195
|
+
["numReadonlyNonSignerAccounts", getMemoizedU8Encoder()]
|
|
1196
|
+
]);
|
|
1197
|
+
}
|
|
1198
|
+
function getMessageHeaderDecoder() {
|
|
1199
|
+
return getStructDecoder([
|
|
1200
|
+
["numSignerAccounts", getMemoizedU8Decoder()],
|
|
1201
|
+
["numReadonlySignerAccounts", getMemoizedU8Decoder()],
|
|
1202
|
+
["numReadonlyNonSignerAccounts", getMemoizedU8Decoder()]
|
|
1203
|
+
]);
|
|
1073
1204
|
}
|
|
1074
1205
|
|
|
1075
1206
|
// src/serializers/instruction.ts
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1207
|
+
var memoizedGetInstructionEncoder;
|
|
1208
|
+
function getInstructionEncoder() {
|
|
1209
|
+
if (!memoizedGetInstructionEncoder) {
|
|
1210
|
+
memoizedGetInstructionEncoder = mapEncoder(
|
|
1211
|
+
getStructEncoder([
|
|
1212
|
+
["programAddressIndex", getU8Encoder()],
|
|
1213
|
+
["accountIndices", getArrayEncoder(getU8Encoder(), { size: getShortU16Encoder() })],
|
|
1214
|
+
["data", getBytesEncoder({ size: getShortU16Encoder() })]
|
|
1215
|
+
]),
|
|
1216
|
+
// Convert an instruction to have all fields defined
|
|
1217
|
+
(instruction) => {
|
|
1218
|
+
var _a, _b;
|
|
1219
|
+
if (instruction.accountIndices !== void 0 && instruction.data !== void 0) {
|
|
1220
|
+
return instruction;
|
|
1221
|
+
}
|
|
1222
|
+
return {
|
|
1223
|
+
...instruction,
|
|
1224
|
+
accountIndices: (_a = instruction.accountIndices) != null ? _a : [],
|
|
1225
|
+
data: (_b = instruction.data) != null ? _b : new Uint8Array(0)
|
|
1226
|
+
};
|
|
1227
|
+
}
|
|
1228
|
+
);
|
|
1229
|
+
}
|
|
1230
|
+
return memoizedGetInstructionEncoder;
|
|
1231
|
+
}
|
|
1232
|
+
var memoizedGetInstructionDecoder;
|
|
1233
|
+
function getInstructionDecoder() {
|
|
1234
|
+
if (!memoizedGetInstructionDecoder) {
|
|
1235
|
+
memoizedGetInstructionDecoder = mapDecoder(
|
|
1236
|
+
getStructDecoder([
|
|
1237
|
+
["programAddressIndex", getU8Decoder()],
|
|
1238
|
+
["accountIndices", getArrayDecoder(getU8Decoder(), { size: getShortU16Decoder() })],
|
|
1239
|
+
["data", getBytesDecoder({ size: getShortU16Decoder() })]
|
|
1240
|
+
]),
|
|
1241
|
+
// Convert an instruction to exclude optional fields if they are empty
|
|
1242
|
+
(instruction) => {
|
|
1243
|
+
if (instruction.accountIndices.length && instruction.data.byteLength) {
|
|
1244
|
+
return instruction;
|
|
1245
|
+
}
|
|
1246
|
+
const { accountIndices, data, ...rest } = instruction;
|
|
1247
|
+
return {
|
|
1248
|
+
...rest,
|
|
1249
|
+
...accountIndices.length ? { accountIndices } : null,
|
|
1250
|
+
...data.byteLength ? { data } : null
|
|
1251
|
+
};
|
|
1252
|
+
}
|
|
1253
|
+
);
|
|
1254
|
+
}
|
|
1255
|
+
return memoizedGetInstructionDecoder;
|
|
1256
|
+
}
|
|
1257
|
+
|
|
1258
|
+
// src/serializers/transaction-version.ts
|
|
1259
|
+
var VERSION_FLAG_MASK = 128;
|
|
1260
|
+
function getTransactionVersionEncoder() {
|
|
1261
|
+
return createEncoder({
|
|
1262
|
+
getSizeFromValue: (value) => value === "legacy" ? 0 : 1,
|
|
1263
|
+
maxSize: 1,
|
|
1264
|
+
write: (value, bytes, offset) => {
|
|
1265
|
+
if (value === "legacy") {
|
|
1266
|
+
return offset;
|
|
1267
|
+
}
|
|
1268
|
+
if (value < 0 || value > 127) {
|
|
1269
|
+
throw new Error(`Transaction version must be in the range [0, 127]. \`${value}\` given.`);
|
|
1270
|
+
}
|
|
1271
|
+
bytes.set([value | VERSION_FLAG_MASK], offset);
|
|
1272
|
+
return offset + 1;
|
|
1273
|
+
}
|
|
1274
|
+
});
|
|
1275
|
+
}
|
|
1276
|
+
function getTransactionVersionDecoder() {
|
|
1277
|
+
return createDecoder({
|
|
1278
|
+
maxSize: 1,
|
|
1279
|
+
read: (bytes, offset) => {
|
|
1280
|
+
const firstByte = bytes[offset];
|
|
1281
|
+
if ((firstByte & VERSION_FLAG_MASK) === 0) {
|
|
1282
|
+
return ["legacy", offset];
|
|
1283
|
+
} else {
|
|
1284
|
+
const version = firstByte ^ VERSION_FLAG_MASK;
|
|
1285
|
+
return [version, offset + 1];
|
|
1286
|
+
}
|
|
1287
|
+
}
|
|
1288
|
+
});
|
|
1289
|
+
}
|
|
1290
|
+
|
|
1291
|
+
// src/serializers/message.ts
|
|
1292
|
+
function getCompiledMessageLegacyEncoder() {
|
|
1293
|
+
return getStructEncoder(getPreludeStructEncoderTuple());
|
|
1294
|
+
}
|
|
1295
|
+
function getCompiledMessageVersionedEncoder() {
|
|
1296
|
+
return mapEncoder(
|
|
1297
|
+
getStructEncoder([
|
|
1298
|
+
...getPreludeStructEncoderTuple(),
|
|
1299
|
+
["addressTableLookups", getAddressTableLookupArrayEncoder()]
|
|
1106
1300
|
]),
|
|
1107
1301
|
(value) => {
|
|
1108
|
-
|
|
1302
|
+
var _a;
|
|
1303
|
+
if (value.version === "legacy") {
|
|
1109
1304
|
return value;
|
|
1110
1305
|
}
|
|
1111
1306
|
return {
|
|
1112
1307
|
...value,
|
|
1113
|
-
|
|
1114
|
-
data: value.data ?? new Uint8Array(0)
|
|
1308
|
+
addressTableLookups: (_a = value.addressTableLookups) != null ? _a : []
|
|
1115
1309
|
};
|
|
1310
|
+
}
|
|
1311
|
+
);
|
|
1312
|
+
}
|
|
1313
|
+
function getPreludeStructEncoderTuple() {
|
|
1314
|
+
return [
|
|
1315
|
+
["version", getTransactionVersionEncoder()],
|
|
1316
|
+
["header", getMessageHeaderEncoder()],
|
|
1317
|
+
["staticAccounts", getArrayEncoder(getAddressEncoder(), { size: getShortU16Encoder() })],
|
|
1318
|
+
["lifetimeToken", getStringEncoder({ encoding: getBase58Encoder(), size: 32 })],
|
|
1319
|
+
["instructions", getArrayEncoder(getInstructionEncoder(), { size: getShortU16Encoder() })]
|
|
1320
|
+
];
|
|
1321
|
+
}
|
|
1322
|
+
function getPreludeStructDecoderTuple() {
|
|
1323
|
+
return [
|
|
1324
|
+
["version", getTransactionVersionDecoder()],
|
|
1325
|
+
["header", getMessageHeaderDecoder()],
|
|
1326
|
+
["staticAccounts", getArrayDecoder(getAddressDecoder(), { size: getShortU16Decoder() })],
|
|
1327
|
+
["lifetimeToken", getStringDecoder({ encoding: getBase58Decoder(), size: 32 })],
|
|
1328
|
+
["instructions", getArrayDecoder(getInstructionDecoder(), { size: getShortU16Decoder() })],
|
|
1329
|
+
["addressTableLookups", getAddressTableLookupArrayDecoder()]
|
|
1330
|
+
];
|
|
1331
|
+
}
|
|
1332
|
+
function getAddressTableLookupArrayEncoder() {
|
|
1333
|
+
return getArrayEncoder(getAddressTableLookupEncoder(), { size: getShortU16Encoder() });
|
|
1334
|
+
}
|
|
1335
|
+
function getAddressTableLookupArrayDecoder() {
|
|
1336
|
+
return getArrayDecoder(getAddressTableLookupDecoder(), { size: getShortU16Decoder() });
|
|
1337
|
+
}
|
|
1338
|
+
function getCompiledMessageEncoder() {
|
|
1339
|
+
return createEncoder({
|
|
1340
|
+
getSizeFromValue: (compiledMessage) => {
|
|
1341
|
+
if (compiledMessage.version === "legacy") {
|
|
1342
|
+
return getCompiledMessageLegacyEncoder().getSizeFromValue(compiledMessage);
|
|
1343
|
+
} else {
|
|
1344
|
+
return getCompiledMessageVersionedEncoder().getSizeFromValue(compiledMessage);
|
|
1345
|
+
}
|
|
1116
1346
|
},
|
|
1117
|
-
(
|
|
1118
|
-
if (
|
|
1119
|
-
return
|
|
1347
|
+
write: (compiledMessage, bytes, offset) => {
|
|
1348
|
+
if (compiledMessage.version === "legacy") {
|
|
1349
|
+
return getCompiledMessageLegacyEncoder().write(compiledMessage, bytes, offset);
|
|
1350
|
+
} else {
|
|
1351
|
+
return getCompiledMessageVersionedEncoder().write(compiledMessage, bytes, offset);
|
|
1120
1352
|
}
|
|
1121
|
-
const { accountIndices, data, ...rest } = value;
|
|
1122
|
-
return {
|
|
1123
|
-
...rest,
|
|
1124
|
-
...accountIndices.length ? { accountIndices } : null,
|
|
1125
|
-
...data.byteLength ? { data } : null
|
|
1126
|
-
};
|
|
1127
1353
|
}
|
|
1128
|
-
);
|
|
1354
|
+
});
|
|
1129
1355
|
}
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
);
|
|
1356
|
+
function getCompiledMessageDecoder() {
|
|
1357
|
+
return mapDecoder(getStructDecoder(getPreludeStructDecoderTuple()), ({ addressTableLookups, ...restOfMessage }) => {
|
|
1358
|
+
if (restOfMessage.version === "legacy" || !(addressTableLookups == null ? void 0 : addressTableLookups.length)) {
|
|
1359
|
+
return restOfMessage;
|
|
1360
|
+
}
|
|
1361
|
+
return { ...restOfMessage, addressTableLookups };
|
|
1362
|
+
});
|
|
1137
1363
|
}
|
|
1138
|
-
function
|
|
1139
|
-
return ()
|
|
1140
|
-
throw getError("decoder", name);
|
|
1141
|
-
};
|
|
1364
|
+
function getCompiledMessageCodec() {
|
|
1365
|
+
return combineCodec(getCompiledMessageEncoder(), getCompiledMessageDecoder());
|
|
1142
1366
|
}
|
|
1143
1367
|
|
|
1144
|
-
// src/
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
return ["legacy", offset];
|
|
1368
|
+
// src/compile-transaction.ts
|
|
1369
|
+
function getCompiledTransaction(transaction) {
|
|
1370
|
+
var _a;
|
|
1371
|
+
const compiledMessage = compileMessage(transaction);
|
|
1372
|
+
let signatures;
|
|
1373
|
+
if ("signatures" in transaction) {
|
|
1374
|
+
signatures = [];
|
|
1375
|
+
for (let ii = 0; ii < compiledMessage.header.numSignerAccounts; ii++) {
|
|
1376
|
+
signatures[ii] = (_a = transaction.signatures[compiledMessage.staticAccounts[ii]]) != null ? _a : new Uint8Array(Array(64).fill(0));
|
|
1377
|
+
}
|
|
1155
1378
|
} else {
|
|
1156
|
-
|
|
1157
|
-
return [version, offset + 1];
|
|
1379
|
+
signatures = Array(compiledMessage.header.numSignerAccounts).fill(new Uint8Array(Array(64).fill(0)));
|
|
1158
1380
|
}
|
|
1381
|
+
return {
|
|
1382
|
+
compiledMessage,
|
|
1383
|
+
signatures
|
|
1384
|
+
};
|
|
1385
|
+
}
|
|
1386
|
+
|
|
1387
|
+
// ../functional/dist/index.browser.js
|
|
1388
|
+
function pipe(init, ...fns) {
|
|
1389
|
+
return fns.reduce((acc, fn) => fn(acc), init);
|
|
1159
1390
|
}
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1391
|
+
|
|
1392
|
+
// src/decompile-transaction.ts
|
|
1393
|
+
function getAccountMetas(message) {
|
|
1394
|
+
const { header } = message;
|
|
1395
|
+
const numWritableSignerAccounts = header.numSignerAccounts - header.numReadonlySignerAccounts;
|
|
1396
|
+
const numWritableNonSignerAccounts = message.staticAccounts.length - header.numSignerAccounts - header.numReadonlyNonSignerAccounts;
|
|
1397
|
+
const accountMetas = [];
|
|
1398
|
+
let accountIndex = 0;
|
|
1399
|
+
for (let i = 0; i < numWritableSignerAccounts; i++) {
|
|
1400
|
+
accountMetas.push({
|
|
1401
|
+
address: message.staticAccounts[accountIndex],
|
|
1402
|
+
role: AccountRole.WRITABLE_SIGNER
|
|
1403
|
+
});
|
|
1404
|
+
accountIndex++;
|
|
1163
1405
|
}
|
|
1164
|
-
|
|
1165
|
-
|
|
1406
|
+
for (let i = 0; i < header.numReadonlySignerAccounts; i++) {
|
|
1407
|
+
accountMetas.push({
|
|
1408
|
+
address: message.staticAccounts[accountIndex],
|
|
1409
|
+
role: AccountRole.READONLY_SIGNER
|
|
1410
|
+
});
|
|
1411
|
+
accountIndex++;
|
|
1166
1412
|
}
|
|
1167
|
-
|
|
1413
|
+
for (let i = 0; i < numWritableNonSignerAccounts; i++) {
|
|
1414
|
+
accountMetas.push({
|
|
1415
|
+
address: message.staticAccounts[accountIndex],
|
|
1416
|
+
role: AccountRole.WRITABLE
|
|
1417
|
+
});
|
|
1418
|
+
accountIndex++;
|
|
1419
|
+
}
|
|
1420
|
+
for (let i = 0; i < header.numReadonlyNonSignerAccounts; i++) {
|
|
1421
|
+
accountMetas.push({
|
|
1422
|
+
address: message.staticAccounts[accountIndex],
|
|
1423
|
+
role: AccountRole.READONLY
|
|
1424
|
+
});
|
|
1425
|
+
accountIndex++;
|
|
1426
|
+
}
|
|
1427
|
+
return accountMetas;
|
|
1168
1428
|
}
|
|
1169
|
-
function
|
|
1429
|
+
function convertInstruction(instruction, accountMetas) {
|
|
1430
|
+
var _a, _b;
|
|
1431
|
+
const programAddress = (_a = accountMetas[instruction.programAddressIndex]) == null ? void 0 : _a.address;
|
|
1432
|
+
if (!programAddress) {
|
|
1433
|
+
throw new Error(`Could not find program address at index ${instruction.programAddressIndex}`);
|
|
1434
|
+
}
|
|
1435
|
+
const accounts = (_b = instruction.accountIndices) == null ? void 0 : _b.map((accountIndex) => accountMetas[accountIndex]);
|
|
1436
|
+
const { data } = instruction;
|
|
1170
1437
|
return {
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
1438
|
+
programAddress,
|
|
1439
|
+
...accounts && accounts.length ? { accounts } : {},
|
|
1440
|
+
...data && data.length ? { data } : {}
|
|
1174
1441
|
};
|
|
1175
1442
|
}
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
function serialize2(compiledMessage) {
|
|
1184
|
-
if (compiledMessage.version === "legacy") {
|
|
1185
|
-
return struct(getPreludeStructSerializerTuple()).serialize(compiledMessage);
|
|
1443
|
+
function getLifetimeConstraint(messageLifetimeToken, firstInstruction, lastValidBlockHeight) {
|
|
1444
|
+
if (!firstInstruction || !isAdvanceNonceAccountInstruction(firstInstruction)) {
|
|
1445
|
+
return {
|
|
1446
|
+
blockhash: messageLifetimeToken,
|
|
1447
|
+
lastValidBlockHeight: lastValidBlockHeight != null ? lastValidBlockHeight : 2n ** 64n - 1n
|
|
1448
|
+
// U64 MAX
|
|
1449
|
+
};
|
|
1186
1450
|
} else {
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
return {
|
|
1197
|
-
...value,
|
|
1198
|
-
addressTableLookups: value.addressTableLookups ?? []
|
|
1199
|
-
};
|
|
1200
|
-
}
|
|
1201
|
-
).serialize(compiledMessage);
|
|
1451
|
+
const nonceAccountAddress = firstInstruction.accounts[0].address;
|
|
1452
|
+
assertIsAddress(nonceAccountAddress);
|
|
1453
|
+
const nonceAuthorityAddress = firstInstruction.accounts[2].address;
|
|
1454
|
+
assertIsAddress(nonceAuthorityAddress);
|
|
1455
|
+
return {
|
|
1456
|
+
nonce: messageLifetimeToken,
|
|
1457
|
+
nonceAccountAddress,
|
|
1458
|
+
nonceAuthorityAddress
|
|
1459
|
+
};
|
|
1202
1460
|
}
|
|
1203
1461
|
}
|
|
1204
|
-
function
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
]
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
|
|
1462
|
+
function convertSignatures(compiledTransaction) {
|
|
1463
|
+
const {
|
|
1464
|
+
compiledMessage: { staticAccounts },
|
|
1465
|
+
signatures
|
|
1466
|
+
} = compiledTransaction;
|
|
1467
|
+
return signatures.reduce((acc, sig, index) => {
|
|
1468
|
+
const allZeros = sig.every((byte) => byte === 0);
|
|
1469
|
+
if (allZeros)
|
|
1470
|
+
return acc;
|
|
1471
|
+
const address2 = staticAccounts[index];
|
|
1472
|
+
return { ...acc, [address2]: sig };
|
|
1473
|
+
}, {});
|
|
1474
|
+
}
|
|
1475
|
+
function decompileTransaction(compiledTransaction, lastValidBlockHeight) {
|
|
1476
|
+
const { compiledMessage } = compiledTransaction;
|
|
1477
|
+
if ("addressTableLookups" in compiledMessage && compiledMessage.addressTableLookups.length > 0) {
|
|
1478
|
+
throw new Error("Cannot convert transaction with addressTableLookups");
|
|
1479
|
+
}
|
|
1480
|
+
const feePayer = compiledMessage.staticAccounts[0];
|
|
1481
|
+
if (!feePayer)
|
|
1482
|
+
throw new Error("No fee payer set in CompiledTransaction");
|
|
1483
|
+
const accountMetas = getAccountMetas(compiledMessage);
|
|
1484
|
+
const instructions = compiledMessage.instructions.map(
|
|
1485
|
+
(compiledInstruction) => convertInstruction(compiledInstruction, accountMetas)
|
|
1486
|
+
);
|
|
1487
|
+
const firstInstruction = instructions[0];
|
|
1488
|
+
const lifetimeConstraint = getLifetimeConstraint(
|
|
1489
|
+
compiledMessage.lifetimeToken,
|
|
1490
|
+
firstInstruction,
|
|
1491
|
+
lastValidBlockHeight
|
|
1492
|
+
);
|
|
1493
|
+
const signatures = convertSignatures(compiledTransaction);
|
|
1494
|
+
return pipe(
|
|
1495
|
+
createTransaction({ version: compiledMessage.version }),
|
|
1496
|
+
(tx) => setTransactionFeePayer(feePayer, tx),
|
|
1497
|
+
(tx) => instructions.reduce((acc, instruction) => {
|
|
1498
|
+
return appendTransactionInstruction(instruction, acc);
|
|
1499
|
+
}, tx),
|
|
1500
|
+
(tx) => "blockhash" in lifetimeConstraint ? setTransactionLifetimeUsingBlockhash(lifetimeConstraint, tx) : setTransactionLifetimeUsingDurableNonce(lifetimeConstraint, tx),
|
|
1501
|
+
(tx) => compiledTransaction.signatures.length ? { ...tx, signatures } : tx
|
|
1502
|
+
);
|
|
1244
1503
|
}
|
|
1245
1504
|
|
|
1246
1505
|
// src/serializers/transaction.ts
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
return
|
|
1506
|
+
function getCompiledTransactionEncoder() {
|
|
1507
|
+
return getStructEncoder([
|
|
1508
|
+
["signatures", getArrayEncoder(getBytesEncoder({ size: 64 }), { size: getShortU16Encoder() })],
|
|
1509
|
+
["compiledMessage", getCompiledMessageEncoder()]
|
|
1510
|
+
]);
|
|
1511
|
+
}
|
|
1512
|
+
function getCompiledTransactionDecoder() {
|
|
1513
|
+
return getStructDecoder([
|
|
1255
1514
|
[
|
|
1256
1515
|
"signatures",
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
size: shortU16()
|
|
1516
|
+
getArrayDecoder(getBytesDecoder({ size: 64 }), {
|
|
1517
|
+
size: getShortU16Decoder()
|
|
1260
1518
|
})
|
|
1261
1519
|
],
|
|
1262
|
-
["compiledMessage",
|
|
1263
|
-
])
|
|
1520
|
+
["compiledMessage", getCompiledMessageDecoder()]
|
|
1521
|
+
]);
|
|
1264
1522
|
}
|
|
1265
1523
|
function getTransactionEncoder() {
|
|
1266
|
-
return
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
|
|
1524
|
+
return mapEncoder(getCompiledTransactionEncoder(), getCompiledTransaction);
|
|
1525
|
+
}
|
|
1526
|
+
function getTransactionDecoder(lastValidBlockHeight) {
|
|
1527
|
+
return mapDecoder(
|
|
1528
|
+
getCompiledTransactionDecoder(),
|
|
1529
|
+
(compiledTransaction) => decompileTransaction(compiledTransaction, lastValidBlockHeight)
|
|
1530
|
+
);
|
|
1531
|
+
}
|
|
1532
|
+
function getTransactionCodec(lastValidBlockHeight) {
|
|
1533
|
+
return combineCodec(getTransactionEncoder(), getTransactionDecoder(lastValidBlockHeight));
|
|
1271
1534
|
}
|
|
1272
1535
|
|
|
1273
1536
|
// ../keys/dist/index.browser.js
|
|
@@ -1278,64 +1541,26 @@ this.globalThis.solanaWeb3 = (function (exports) {
|
|
|
1278
1541
|
}
|
|
1279
1542
|
|
|
1280
1543
|
// src/signatures.ts
|
|
1281
|
-
|
|
1282
|
-
try {
|
|
1283
|
-
if (
|
|
1284
|
-
// Lowest value (64 bytes of zeroes)
|
|
1285
|
-
putativeTransactionSignature.length < 64 || // Highest value (64 bytes of 255)
|
|
1286
|
-
putativeTransactionSignature.length > 88
|
|
1287
|
-
) {
|
|
1288
|
-
throw new Error("Expected input string to decode to a byte array of length 64.");
|
|
1289
|
-
}
|
|
1290
|
-
const bytes2 = base58.serialize(putativeTransactionSignature);
|
|
1291
|
-
const numBytes = bytes2.byteLength;
|
|
1292
|
-
if (numBytes !== 64) {
|
|
1293
|
-
throw new Error(`Expected input string to decode to a byte array of length 64. Actual length: ${numBytes}`);
|
|
1294
|
-
}
|
|
1295
|
-
} catch (e) {
|
|
1296
|
-
throw new Error(`\`${putativeTransactionSignature}\` is not a transaction signature`, {
|
|
1297
|
-
cause: e
|
|
1298
|
-
});
|
|
1299
|
-
}
|
|
1300
|
-
}
|
|
1301
|
-
function isTransactionSignature(putativeTransactionSignature) {
|
|
1302
|
-
if (
|
|
1303
|
-
// Lowest value (64 bytes of zeroes)
|
|
1304
|
-
putativeTransactionSignature.length < 64 || // Highest value (64 bytes of 255)
|
|
1305
|
-
putativeTransactionSignature.length > 88
|
|
1306
|
-
) {
|
|
1307
|
-
return false;
|
|
1308
|
-
}
|
|
1309
|
-
const bytes2 = base58.serialize(putativeTransactionSignature);
|
|
1310
|
-
const numBytes = bytes2.byteLength;
|
|
1311
|
-
if (numBytes !== 64) {
|
|
1312
|
-
return false;
|
|
1313
|
-
}
|
|
1314
|
-
return true;
|
|
1315
|
-
}
|
|
1316
|
-
async function getCompiledMessageSignature(message, secretKey) {
|
|
1317
|
-
const wireMessageBytes = getCompiledMessageEncoder().serialize(message);
|
|
1318
|
-
const signature = await signBytes(secretKey, wireMessageBytes);
|
|
1319
|
-
return signature;
|
|
1320
|
-
}
|
|
1544
|
+
var base58Decoder;
|
|
1321
1545
|
function getSignatureFromTransaction(transaction) {
|
|
1322
|
-
|
|
1323
|
-
|
|
1546
|
+
if (!base58Decoder)
|
|
1547
|
+
base58Decoder = getBase58Decoder();
|
|
1548
|
+
const signatureBytes = transaction.signatures[transaction.feePayer];
|
|
1549
|
+
if (!signatureBytes) {
|
|
1324
1550
|
throw new Error(
|
|
1325
1551
|
"Could not determine this transaction's signature. Make sure that the transaction has been signed by its fee payer."
|
|
1326
1552
|
);
|
|
1327
1553
|
}
|
|
1328
|
-
|
|
1554
|
+
const transactionSignature = base58Decoder.decode(signatureBytes);
|
|
1555
|
+
return transactionSignature;
|
|
1329
1556
|
}
|
|
1330
|
-
async function
|
|
1557
|
+
async function partiallySignTransaction(keyPairs, transaction) {
|
|
1331
1558
|
const compiledMessage = compileMessage(transaction);
|
|
1332
1559
|
const nextSignatures = "signatures" in transaction ? { ...transaction.signatures } : {};
|
|
1560
|
+
const wireMessageBytes = getCompiledMessageEncoder().encode(compiledMessage);
|
|
1333
1561
|
const publicKeySignaturePairs = await Promise.all(
|
|
1334
1562
|
keyPairs.map(
|
|
1335
|
-
(keyPair) => Promise.all([
|
|
1336
|
-
getAddressFromPublicKey(keyPair.publicKey),
|
|
1337
|
-
getCompiledMessageSignature(compiledMessage, keyPair.privateKey)
|
|
1338
|
-
])
|
|
1563
|
+
(keyPair) => Promise.all([getAddressFromPublicKey(keyPair.publicKey), signBytes(keyPair.privateKey, wireMessageBytes)])
|
|
1339
1564
|
)
|
|
1340
1565
|
);
|
|
1341
1566
|
for (const [signerPublicKey, signature] of publicKeySignaturePairs) {
|
|
@@ -1348,34 +1573,53 @@ this.globalThis.solanaWeb3 = (function (exports) {
|
|
|
1348
1573
|
Object.freeze(out);
|
|
1349
1574
|
return out;
|
|
1350
1575
|
}
|
|
1351
|
-
function
|
|
1352
|
-
|
|
1353
|
-
|
|
1576
|
+
async function signTransaction(keyPairs, transaction) {
|
|
1577
|
+
const out = await partiallySignTransaction(keyPairs, transaction);
|
|
1578
|
+
assertTransactionIsFullySigned(out);
|
|
1579
|
+
Object.freeze(out);
|
|
1580
|
+
return out;
|
|
1581
|
+
}
|
|
1582
|
+
function assertTransactionIsFullySigned(transaction) {
|
|
1583
|
+
const signerAddressesFromInstructions = transaction.instructions.flatMap((i) => {
|
|
1584
|
+
var _a, _b;
|
|
1585
|
+
return (_b = (_a = i.accounts) == null ? void 0 : _a.filter((a) => isSignerRole(a.role))) != null ? _b : [];
|
|
1586
|
+
}).map((a) => a.address);
|
|
1587
|
+
const requiredSigners = /* @__PURE__ */ new Set([transaction.feePayer, ...signerAddressesFromInstructions]);
|
|
1588
|
+
requiredSigners.forEach((address2) => {
|
|
1589
|
+
if (!transaction.signatures[address2]) {
|
|
1590
|
+
throw new Error(`Transaction is missing signature for address \`${address2}\``);
|
|
1591
|
+
}
|
|
1592
|
+
});
|
|
1354
1593
|
}
|
|
1355
1594
|
|
|
1356
1595
|
// src/wire-transaction.ts
|
|
1357
1596
|
function getBase64EncodedWireTransaction(transaction) {
|
|
1358
|
-
const wireTransactionBytes = getTransactionEncoder().
|
|
1359
|
-
|
|
1360
|
-
return btoa(String.fromCharCode(...wireTransactionBytes));
|
|
1361
|
-
}
|
|
1597
|
+
const wireTransactionBytes = getTransactionEncoder().encode(transaction);
|
|
1598
|
+
return getBase64Decoder().decode(wireTransactionBytes);
|
|
1362
1599
|
}
|
|
1363
1600
|
|
|
1364
1601
|
exports.appendTransactionInstruction = appendTransactionInstruction;
|
|
1365
1602
|
exports.assertIsBlockhash = assertIsBlockhash;
|
|
1366
1603
|
exports.assertIsDurableNonceTransaction = assertIsDurableNonceTransaction;
|
|
1367
|
-
exports.
|
|
1604
|
+
exports.assertIsTransactionWithBlockhashLifetime = assertIsTransactionWithBlockhashLifetime;
|
|
1605
|
+
exports.assertTransactionIsFullySigned = assertTransactionIsFullySigned;
|
|
1606
|
+
exports.compileMessage = compileMessage;
|
|
1368
1607
|
exports.createTransaction = createTransaction;
|
|
1369
1608
|
exports.getBase64EncodedWireTransaction = getBase64EncodedWireTransaction;
|
|
1609
|
+
exports.getCompiledMessageCodec = getCompiledMessageCodec;
|
|
1610
|
+
exports.getCompiledMessageDecoder = getCompiledMessageDecoder;
|
|
1611
|
+
exports.getCompiledMessageEncoder = getCompiledMessageEncoder;
|
|
1370
1612
|
exports.getSignatureFromTransaction = getSignatureFromTransaction;
|
|
1613
|
+
exports.getTransactionCodec = getTransactionCodec;
|
|
1614
|
+
exports.getTransactionDecoder = getTransactionDecoder;
|
|
1371
1615
|
exports.getTransactionEncoder = getTransactionEncoder;
|
|
1372
|
-
exports.
|
|
1616
|
+
exports.isAdvanceNonceAccountInstruction = isAdvanceNonceAccountInstruction;
|
|
1617
|
+
exports.partiallySignTransaction = partiallySignTransaction;
|
|
1373
1618
|
exports.prependTransactionInstruction = prependTransactionInstruction;
|
|
1374
1619
|
exports.setTransactionFeePayer = setTransactionFeePayer;
|
|
1375
1620
|
exports.setTransactionLifetimeUsingBlockhash = setTransactionLifetimeUsingBlockhash;
|
|
1376
1621
|
exports.setTransactionLifetimeUsingDurableNonce = setTransactionLifetimeUsingDurableNonce;
|
|
1377
1622
|
exports.signTransaction = signTransaction;
|
|
1378
|
-
exports.transactionSignature = transactionSignature;
|
|
1379
1623
|
|
|
1380
1624
|
return exports;
|
|
1381
1625
|
|