@medialane/sdk 0.118.2 → 0.119.0
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.cjs +3 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/dist/{services-B4wvnuIc.d.ts → services-4Z16tkFa.d.ts} +7 -1
- package/dist/{services-DNFeQEoF.d.cts → services-CkUqZ75g.d.cts} +7 -1
- package/dist/starknet/index.cjs +374 -12
- package/dist/starknet/index.cjs.map +1 -1
- package/dist/starknet/index.d.cts +17 -3
- package/dist/starknet/index.d.ts +17 -3
- package/dist/starknet/index.js +372 -13
- package/dist/starknet/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -471,6 +471,9 @@ var ApiClient = class {
|
|
|
471
471
|
confirmIntent(id, txHash) {
|
|
472
472
|
return this.patch(`/v1/intents/${id}/confirm`, { txHash });
|
|
473
473
|
}
|
|
474
|
+
syncTransaction(txHash) {
|
|
475
|
+
return this.post("/v1/tx/sync", { txHash });
|
|
476
|
+
}
|
|
474
477
|
createMintIntent(params) {
|
|
475
478
|
return this.post("/v1/intents/mint", params);
|
|
476
479
|
}
|