Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions modules/express/src/typedRoutes/api/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,9 @@ export const ExpressCoinSigningApiSpec = apiSpec({
'express.v2.coin.signtx': {
post: PostCoinSignTx,
},
});

export const ExpressExternalSigningApiSpec = apiSpec({
'express.v2.coin.sign': {
post: PostCoinSign,
},
Expand Down Expand Up @@ -275,6 +278,7 @@ export type ExpressApi = typeof ExpressPingApiSpec &
typeof ExpressOfcSignPayloadApiSpec &
typeof ExpressWalletRecoverTokenApiSpec &
typeof ExpressCoinSigningApiSpec &
typeof ExpressExternalSigningApiSpec &
typeof ExpressWalletSigningApiSpec &
typeof ExpressWalletManagementApiSpec;

Expand Down Expand Up @@ -307,6 +311,7 @@ export const ExpressApi: ExpressApi = {
...ExpressOfcSignPayloadApiSpec,
...ExpressWalletRecoverTokenApiSpec,
...ExpressCoinSigningApiSpec,
...ExpressExternalSigningApiSpec,
...ExpressWalletSigningApiSpec,
...ExpressWalletManagementApiSpec,
};
Expand Down