@triadxyz/triad-protocol 1.3.4-beta → 1.3.6-beta
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +2 -8
- package/dist/index.js +11 -12
- package/dist/local-test.js +2 -2
- package/dist/types/idl_triad_protocol.json +0 -33
- package/dist/types/triad_protocol.d.ts +0 -33
- package/dist/utils/constants.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -82,7 +82,7 @@ export default class TriadProtocolClient {
|
|
|
82
82
|
* @param verifier - Verifier keypair
|
|
83
83
|
* @param options - RPC options
|
|
84
84
|
*/
|
|
85
|
-
spinWheel(isSol: boolean, options?: RpcOptions): Promise<
|
|
85
|
+
spinWheel(isSol: boolean, options?: RpcOptions): Promise<number>;
|
|
86
86
|
/**
|
|
87
87
|
* Mint Poseidon
|
|
88
88
|
* @param number - Poseidon number
|
|
@@ -90,11 +90,5 @@ export default class TriadProtocolClient {
|
|
|
90
90
|
* @param options - RPC options
|
|
91
91
|
*
|
|
92
92
|
*/
|
|
93
|
-
mintPoseidon(items:
|
|
94
|
-
number: number;
|
|
95
|
-
attributes: {
|
|
96
|
-
key: string;
|
|
97
|
-
value: string;
|
|
98
|
-
}[];
|
|
99
|
-
}[], options?: RpcOptions): Promise<string>;
|
|
93
|
+
mintPoseidon(items: number[], options?: RpcOptions): Promise<string>;
|
|
100
94
|
}
|
package/dist/index.js
CHANGED
|
@@ -14,6 +14,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
14
14
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
15
|
const anchor_1 = require("@coral-xyz/anchor");
|
|
16
16
|
const web3_js_1 = require("@solana/web3.js");
|
|
17
|
+
const base64_js_1 = require("base64-js");
|
|
17
18
|
const idl_triad_protocol_json_1 = __importDefault(require("./types/idl_triad_protocol.json"));
|
|
18
19
|
const trade_1 = __importDefault(require("./trade"));
|
|
19
20
|
const helpers_1 = require("./utils/helpers");
|
|
@@ -228,6 +229,7 @@ class TriadProtocolClient {
|
|
|
228
229
|
* @param options - RPC options
|
|
229
230
|
*/
|
|
230
231
|
spinWheel(isSol, options) {
|
|
232
|
+
var _a, _b, _c;
|
|
231
233
|
return __awaiter(this, void 0, void 0, function* () {
|
|
232
234
|
const spinPDA = (0, pda_1.getSpinPDA)(this.program.programId, constants_1.SPIN_NAME);
|
|
233
235
|
const method = this.program.methods.spinWheel(isSol).accounts({
|
|
@@ -236,17 +238,16 @@ class TriadProtocolClient {
|
|
|
236
238
|
mint: constants_1.TCMAS_MINT
|
|
237
239
|
});
|
|
238
240
|
const tx = yield (0, sendTransactionWithOptions_1.default)(method, options);
|
|
239
|
-
const
|
|
241
|
+
const txResult = (yield this.provider.connection.getTransaction(tx, {
|
|
240
242
|
commitment: 'confirmed',
|
|
241
243
|
maxSupportedTransactionVersion: 0
|
|
242
|
-
});
|
|
243
|
-
const
|
|
244
|
-
if (!
|
|
245
|
-
throw new Error('
|
|
244
|
+
}));
|
|
245
|
+
const returnData = (_b = (_a = txResult.meta) === null || _a === void 0 ? void 0 : _a.returnData) === null || _b === void 0 ? void 0 : _b.data;
|
|
246
|
+
if (!returnData) {
|
|
247
|
+
throw new Error('No return data found in transaction');
|
|
246
248
|
}
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
return prizeType;
|
|
249
|
+
let value = (_c = txResult.meta) === null || _c === void 0 ? void 0 : _c.returnData.data[0];
|
|
250
|
+
return new anchor_1.BN((0, base64_js_1.toByteArray)(value), 'le').toNumber();
|
|
250
251
|
});
|
|
251
252
|
}
|
|
252
253
|
/**
|
|
@@ -266,14 +267,12 @@ class TriadProtocolClient {
|
|
|
266
267
|
ixs.push(yield this.program.methods
|
|
267
268
|
.mintPoseidon({
|
|
268
269
|
collectionSymbol: constants_1.POSEIDON_COLLECTION_SYMBOL,
|
|
269
|
-
number: new anchor_1.BN(item
|
|
270
|
-
attributes: item.attributes
|
|
270
|
+
number: new anchor_1.BN(item)
|
|
271
271
|
})
|
|
272
272
|
.accounts({
|
|
273
273
|
signer: this.provider.wallet.publicKey,
|
|
274
274
|
asset: asset.publicKey,
|
|
275
|
-
coreCollection: constants_1.POSEIDON_CORE_COLLECTION
|
|
276
|
-
nftMint: new web3_js_1.PublicKey('EzhK3EPW5PfWBRdyNaZbxTBfnYE5M2JSordnCBdMoCvp')
|
|
275
|
+
coreCollection: constants_1.POSEIDON_CORE_COLLECTION
|
|
277
276
|
})
|
|
278
277
|
.instruction());
|
|
279
278
|
}
|
package/dist/local-test.js
CHANGED
|
@@ -446,11 +446,11 @@ const getSpinPrize = () => __awaiter(void 0, void 0, void 0, function* () {
|
|
|
446
446
|
console.log(prizes);
|
|
447
447
|
});
|
|
448
448
|
const spinWheel = () => __awaiter(void 0, void 0, void 0, function* () {
|
|
449
|
-
const response = yield triadProtocol.spinWheel(false);
|
|
449
|
+
const response = yield triadProtocol.spinWheel(false, { skipPreflight: false });
|
|
450
450
|
console.log(response);
|
|
451
451
|
});
|
|
452
452
|
spinWheel();
|
|
453
453
|
const mintPoseidon = () => __awaiter(void 0, void 0, void 0, function* () {
|
|
454
|
-
const response = yield triadProtocol.mintPoseidon([]);
|
|
454
|
+
const response = yield triadProtocol.mintPoseidon([1]);
|
|
455
455
|
console.log(response);
|
|
456
456
|
});
|
|
@@ -785,10 +785,6 @@
|
|
|
785
785
|
"writable": true,
|
|
786
786
|
"signer": true
|
|
787
787
|
},
|
|
788
|
-
{
|
|
789
|
-
"name": "nft_mint",
|
|
790
|
-
"writable": true
|
|
791
|
-
},
|
|
792
788
|
{
|
|
793
789
|
"name": "collection",
|
|
794
790
|
"writable": true,
|
|
@@ -2538,19 +2534,6 @@
|
|
|
2538
2534
|
{
|
|
2539
2535
|
"name": "number",
|
|
2540
2536
|
"type": "u64"
|
|
2541
|
-
},
|
|
2542
|
-
{
|
|
2543
|
-
"name": "attributes",
|
|
2544
|
-
"type": {
|
|
2545
|
-
"array": [
|
|
2546
|
-
{
|
|
2547
|
-
"defined": {
|
|
2548
|
-
"name": "PoseidonAttribute"
|
|
2549
|
-
}
|
|
2550
|
-
},
|
|
2551
|
-
7
|
|
2552
|
-
]
|
|
2553
|
-
}
|
|
2554
2537
|
}
|
|
2555
2538
|
]
|
|
2556
2539
|
}
|
|
@@ -2814,22 +2797,6 @@
|
|
|
2814
2797
|
]
|
|
2815
2798
|
}
|
|
2816
2799
|
},
|
|
2817
|
-
{
|
|
2818
|
-
"name": "PoseidonAttribute",
|
|
2819
|
-
"type": {
|
|
2820
|
-
"kind": "struct",
|
|
2821
|
-
"fields": [
|
|
2822
|
-
{
|
|
2823
|
-
"name": "key",
|
|
2824
|
-
"type": "string"
|
|
2825
|
-
},
|
|
2826
|
-
{
|
|
2827
|
-
"name": "value",
|
|
2828
|
-
"type": "string"
|
|
2829
|
-
}
|
|
2830
|
-
]
|
|
2831
|
-
}
|
|
2832
|
-
},
|
|
2833
2800
|
{
|
|
2834
2801
|
"name": "PriceUpdate",
|
|
2835
2802
|
"type": {
|
|
@@ -1110,10 +1110,6 @@ export type TriadProtocol = {
|
|
|
1110
1110
|
writable: true;
|
|
1111
1111
|
signer: true;
|
|
1112
1112
|
},
|
|
1113
|
-
{
|
|
1114
|
-
name: 'nftMint';
|
|
1115
|
-
writable: true;
|
|
1116
|
-
},
|
|
1117
1113
|
{
|
|
1118
1114
|
name: 'collection';
|
|
1119
1115
|
writable: true;
|
|
@@ -3294,19 +3290,6 @@ export type TriadProtocol = {
|
|
|
3294
3290
|
{
|
|
3295
3291
|
name: 'number';
|
|
3296
3292
|
type: 'u64';
|
|
3297
|
-
},
|
|
3298
|
-
{
|
|
3299
|
-
name: 'attributes';
|
|
3300
|
-
type: {
|
|
3301
|
-
array: [
|
|
3302
|
-
{
|
|
3303
|
-
defined: {
|
|
3304
|
-
name: 'poseidonAttribute';
|
|
3305
|
-
};
|
|
3306
|
-
},
|
|
3307
|
-
7
|
|
3308
|
-
];
|
|
3309
|
-
};
|
|
3310
3293
|
}
|
|
3311
3294
|
];
|
|
3312
3295
|
};
|
|
@@ -3570,22 +3553,6 @@ export type TriadProtocol = {
|
|
|
3570
3553
|
];
|
|
3571
3554
|
};
|
|
3572
3555
|
},
|
|
3573
|
-
{
|
|
3574
|
-
name: 'poseidonAttribute';
|
|
3575
|
-
type: {
|
|
3576
|
-
kind: 'struct';
|
|
3577
|
-
fields: [
|
|
3578
|
-
{
|
|
3579
|
-
name: 'key';
|
|
3580
|
-
type: 'string';
|
|
3581
|
-
},
|
|
3582
|
-
{
|
|
3583
|
-
name: 'value';
|
|
3584
|
-
type: 'string';
|
|
3585
|
-
}
|
|
3586
|
-
];
|
|
3587
|
-
};
|
|
3588
|
-
},
|
|
3589
3556
|
{
|
|
3590
3557
|
name: 'priceUpdate';
|
|
3591
3558
|
type: {
|
package/dist/utils/constants.js
CHANGED
|
@@ -10,6 +10,6 @@ exports.TRIAD_ADMIN = new web3_js_1.PublicKey('82ppCojm3yrEKgdpH8B5AmBJTU1r1uAWX
|
|
|
10
10
|
exports.SOL_MINT = new web3_js_1.PublicKey('So11111111111111111111111111111111111111112');
|
|
11
11
|
exports.TICKET_CORE_COLLECTION = new web3_js_1.PublicKey('BaqopH1VXYUCT6VsojbTibVcd3k5jpGGT6296HFb6fVa');
|
|
12
12
|
exports.SPIN_NAME = 'christmas';
|
|
13
|
-
exports.TCMAS_MINT = new web3_js_1.PublicKey('
|
|
13
|
+
exports.TCMAS_MINT = new web3_js_1.PublicKey('tCMraBSGHeMcQS76hNnBhnfbMzrtnnT3nbt3vAnSCE2');
|
|
14
14
|
exports.POSEIDON_COLLECTION_SYMBOL = '$PSN';
|
|
15
15
|
exports.POSEIDON_CORE_COLLECTION = new web3_js_1.PublicKey('69CLccefLRmvDSAJP7Er632dvn878qkpdcnvq5ZUspSm');
|