Skip to content

Commit 2a3e984

Browse files
Update OpenAPI schema (#240)
* Update OpenAPI schema * bump version --------- Co-authored-by: Kiln Bot <[email protected]> Co-authored-by: menefrego15 <[email protected]>
1 parent e31a4fe commit 2a3e984

File tree

2 files changed

+14
-18
lines changed

2 files changed

+14
-18
lines changed

package.json

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@kilnfi/sdk",
3-
"version": "4.2.12",
3+
"version": "4.2.13",
44
"autor": "Kiln <[email protected]> (https://kiln.fi)",
55
"license": "BUSL-1.1",
66
"description": "JavaScript sdk for Kiln API",
@@ -17,11 +17,7 @@
1717
"default": "./build/cjs/kiln.js"
1818
}
1919
},
20-
"files": [
21-
"package.json",
22-
"build",
23-
"src"
24-
],
20+
"files": ["package.json", "build", "src"],
2521
"scripts": {
2622
"lint": "biome check ./src",
2723
"format": "biome check ./src --write --unsafe",
@@ -31,15 +27,7 @@
3127
"build:cjs": "tsc --project ./tsconfig.build.json --module commonjs --outDir ./build/cjs --removeComments --verbatimModuleSyntax false && printf '{\"type\":\"commonjs\"}' > ./build/cjs/package.json",
3228
"build:types": "tsc --project ./tsconfig.build.json --module esnext --declarationDir ./build/types --emitDeclarationOnly --declaration --declarationMap"
3329
},
34-
"keywords": [
35-
"sdk",
36-
"js",
37-
"eth",
38-
"sol",
39-
"xtz",
40-
"validators",
41-
"staking"
42-
],
30+
"keywords": ["sdk", "js", "eth", "sol", "xtz", "validators", "staking"],
4331
"author": "Kiln",
4432
"bugs": {
4533
"url": "https://github.com/kilnfi/sdk-js/issues"

src/openapi/schema.ts

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40174,9 +40174,17 @@ export interface components {
4017440174
sender: string;
4017540175
};
4017640176
SUIBroadcastTxPayload: {
40177-
/** @description Signed serialized transaction */
40178-
transaction: string;
40179-
/** @description Signature of the transaction */
40177+
/**
40178+
* Format: base64
40179+
* @description Signed serialized transaction as base64 encoded bcs
40180+
* @example AAACAAgAypo7AAAAAAAg2+ZDD9PphmfRs1A4Aba3bIThZOG+V+8OS/Pjq3kbI9YCAgABAQAAAQEDAAAAAAEBABsdj13zFOK3uKhs/ir/eMwbwKDsykcidGrlIiYx0U9vAjWzex7zdLfWq8gj/oP81sYt3UJzyo4bDhvRJ7E1R/tVd1fpIAAAAAAgfCKhipjlwhR0OghzVijOV+b+CFucrTVw1y6LK+g4dXUM4X57NnqLr5kjWC0veDHxiAJG0cKrkJDEubjYQ6JXundX6SAAAAAAICh1unSYqH9yQqaJuKEftzLEGT5rqV7wHUD16BMQcmLAGx2PXfMU4re4qGz+Kv94zBvAoOzKRyJ0auUiJjHRT2/oAwAAAAAAAECrPAAAAAAAAA==
40181+
*/
40182+
tx_serialized: string;
40183+
/**
40184+
* Format: base64
40185+
* @description Base64 encoded signature of the transaction
40186+
* @example AMQ2b2LwCWca7IK5hY1lnzkhRwb4nkYCTA3on08RpMEA6myGSgTWmBH2KDLZmaXzSXI+++VCNKrP3dCzBZvM3gRzTJq3RpEQpcj32BYljGTj4jFrXXGGPohME56ZK2MBDw==
40187+
*/
4018040188
signature: string;
4018140189
};
4018240190
SUIDecodeTxPayload: {

0 commit comments

Comments
 (0)