mirror of
https://github.com/orionprotocol/sdk.git
synced 2026-04-04 20:18:03 +03:00
314 lines
9.4 KiB
TypeScript
314 lines
9.4 KiB
TypeScript
import { z } from 'zod';
|
|
import fetchWithValidation from '../../fetchWithValidation';
|
|
import { PairStatusEnum, pairStatusSchema } from './schemas/adminPoolsListSchema';
|
|
import {
|
|
IDOSchema, atomicHistorySchema,
|
|
poolsConfigSchema, poolsInfoSchema, infoSchema, historySchema,
|
|
addPoolSchema, adminPoolsListSchema,
|
|
} from './schemas';
|
|
import { OrionBlockchainSocketIO } from './ws';
|
|
import redeemOrderSchema from '../OrionAggregator/schemas/redeemOrderSchema';
|
|
import { sourceAtomicHistorySchema, targetAtomicHistorySchema } from './schemas/atomicHistorySchema';
|
|
import { makePartial } from '../../utils';
|
|
|
|
interface IAdminAuthHeaders {
|
|
auth: string;
|
|
[key: string]: string
|
|
}
|
|
|
|
export interface IEditPool {
|
|
tokenAIcon?: string;
|
|
tokenBIcon?: string;
|
|
symbol?: string;
|
|
status: PairStatusEnum;
|
|
qtyPrecision?: number;
|
|
pricePrecision?: number;
|
|
minQty?: number;
|
|
tokenASymbol?: string;
|
|
tokenBSymbol?: string;
|
|
tokensReversed?: boolean;
|
|
}
|
|
|
|
type AtomicSwapHistoryBaseQuery = {
|
|
limit?: number
|
|
sender?: string,
|
|
receiver?: string,
|
|
used?: 0 | 1,
|
|
page?: number,
|
|
}
|
|
|
|
type AtomicSwapHistorySourceQuery = AtomicSwapHistoryBaseQuery & {
|
|
type?: 'source',
|
|
expiredLock?: 0 | 1,
|
|
state?: 'LOCKED' | 'CLAIMED' |'REFUNDED',
|
|
|
|
}
|
|
type AtomicSwapHistoryTargetQuery = AtomicSwapHistoryBaseQuery & {
|
|
type?: 'target',
|
|
expiredRedeem?: 0 | 1,
|
|
state?: 'REDEEMED' | 'BEFORE-REDEEM',
|
|
}
|
|
class OrionBlockchain {
|
|
private readonly apiUrl: string;
|
|
|
|
readonly ws: OrionBlockchainSocketIO;
|
|
|
|
constructor(apiUrl: string) {
|
|
this.apiUrl = apiUrl;
|
|
this.ws = new OrionBlockchainSocketIO(`https://${apiUrl}/`);
|
|
|
|
this.getAtomicSwapAssets = this.getAtomicSwapAssets.bind(this);
|
|
this.getAtomicSwapHistory = this.getAtomicSwapHistory.bind(this);
|
|
this.getAuthToken = this.getAuthToken.bind(this);
|
|
this.getCirculatingSupply = this.getCirculatingSupply.bind(this);
|
|
this.getInfo = this.getInfo.bind(this);
|
|
this.getPoolsConfig = this.getPoolsConfig.bind(this);
|
|
this.getPoolsInfo = this.getPoolsInfo.bind(this);
|
|
this.getHistory = this.getHistory.bind(this);
|
|
this.getPrices = this.getPrices.bind(this);
|
|
this.getTokensFee = this.getTokensFee.bind(this);
|
|
this.getGasPriceWei = this.getGasPriceWei.bind(this);
|
|
this.checkFreeRedeemAvailable = this.checkFreeRedeemAvailable.bind(this);
|
|
this.redeemAtomicSwap = this.redeemAtomicSwap.bind(this);
|
|
this.redeem2AtomicSwaps = this.redeem2AtomicSwaps.bind(this);
|
|
this.checkRedeem = this.checkRedeem.bind(this);
|
|
this.checkRedeem2Atomics = this.checkRedeem2Atomics.bind(this);
|
|
this.getIDOInfo = this.getIDOInfo.bind(this);
|
|
this.checkAuth = this.checkAuth.bind(this);
|
|
this.addPool = this.addPool.bind(this);
|
|
this.editPool = this.editPool.bind(this);
|
|
this.getPoolsList = this.getPoolsList.bind(this);
|
|
this.getSourceAtomicSwapHistory = this.getSourceAtomicSwapHistory.bind(this);
|
|
this.getTargetAtomicSwapHistory = this.getTargetAtomicSwapHistory.bind(this);
|
|
this.checkPoolInformation = this.checkPoolInformation.bind(this);
|
|
this.checkIfHashUsed = this.checkIfHashUsed.bind(this);
|
|
this.getQueueLength = this.getQueueLength.bind(this);
|
|
this.getBlockNumber = this.getBlockNumber.bind(this);
|
|
}
|
|
|
|
get orionBlockchainWsUrl() {
|
|
return `https://${this.apiUrl}/`;
|
|
}
|
|
|
|
getAuthToken() {
|
|
return fetchWithValidation(`https://${this.apiUrl}/api/auth/token`, z.object({ token: z.string() }));
|
|
}
|
|
|
|
getCirculatingSupply() {
|
|
return fetchWithValidation(`https://${this.apiUrl}/api/circulating-supply`, z.number());
|
|
}
|
|
|
|
getInfo() {
|
|
return fetchWithValidation(`https://${this.apiUrl}/api/info`, infoSchema);
|
|
}
|
|
|
|
getPoolsConfig() {
|
|
return fetchWithValidation(`https://${this.apiUrl}/api/pools/config`, poolsConfigSchema);
|
|
}
|
|
|
|
getPoolsInfo() {
|
|
return fetchWithValidation(`https://${this.apiUrl}/api/pools/info`, poolsInfoSchema);
|
|
}
|
|
|
|
getHistory(address: string) {
|
|
return fetchWithValidation(`https://${this.apiUrl}/api/history/${address}`, historySchema);
|
|
}
|
|
|
|
getPrices() {
|
|
return fetchWithValidation(`https://${this.apiUrl}/api/prices`, z.record(z.string()).transform(makePartial));
|
|
}
|
|
|
|
getTokensFee() {
|
|
return fetchWithValidation(`https://${this.apiUrl}/api/tokensFee`, z.record(z.string()).transform(makePartial));
|
|
}
|
|
|
|
getGasPriceWei() {
|
|
return fetchWithValidation(`https://${this.apiUrl}/api/gasPrice`, z.string());
|
|
}
|
|
|
|
checkFreeRedeemAvailable(walletAddress: string) {
|
|
return fetchWithValidation(`https://${this.apiUrl}/api/atomic/has-free-redeem/${walletAddress}`, z.boolean());
|
|
}
|
|
|
|
redeemAtomicSwap(
|
|
redeemOrder: z.infer<typeof redeemOrderSchema>,
|
|
secret: string,
|
|
sourceNetwork: string,
|
|
) {
|
|
return fetchWithValidation(
|
|
`https://${this.apiUrl}/api/atomic/matcher-redeem`,
|
|
z.string(),
|
|
{
|
|
method: 'POST',
|
|
body: JSON.stringify({
|
|
order: redeemOrder,
|
|
secret,
|
|
sourceNetwork,
|
|
}),
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
},
|
|
},
|
|
);
|
|
}
|
|
|
|
redeem2AtomicSwaps(
|
|
redeemOrder1: z.infer<typeof redeemOrderSchema>,
|
|
secret1: string,
|
|
redeemOrder2: z.infer<typeof redeemOrderSchema>,
|
|
secret2: string,
|
|
sourceNetwork: string,
|
|
) {
|
|
return fetchWithValidation(
|
|
`https://${this.apiUrl}/api/atomic/matcher-redeem2atomics`,
|
|
z.string(),
|
|
{
|
|
method: 'POST',
|
|
body: JSON.stringify({
|
|
order1: redeemOrder1,
|
|
secret1,
|
|
order2: redeemOrder2,
|
|
secret2,
|
|
sourceNetwork,
|
|
}),
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
},
|
|
},
|
|
);
|
|
}
|
|
|
|
checkRedeem(secretHash: string) {
|
|
return fetchWithValidation(
|
|
`https://${this.apiUrl}/api/atomic/matcher-redeem/${secretHash}`,
|
|
z.enum(['OK', 'FAIL']).nullable(),
|
|
);
|
|
}
|
|
|
|
checkRedeem2Atomics(firstSecretHash: string, secondSecretHash: string) {
|
|
return fetchWithValidation(
|
|
`https://${this.apiUrl}/api/atomic/matcher-redeem/${firstSecretHash}-${secondSecretHash}`,
|
|
z.enum(['OK', 'FAIL']).nullable(),
|
|
);
|
|
}
|
|
|
|
getBlockNumber() {
|
|
return fetchWithValidation(`https://${this.apiUrl}/api/blocknumber`, z.number().int());
|
|
}
|
|
|
|
getQueueLength() {
|
|
return fetchWithValidation(`https://${this.apiUrl}/api/queueLength`, z.number().int());
|
|
}
|
|
|
|
getIDOInfo() {
|
|
return fetchWithValidation(`https://${this.apiUrl}/api/solarflare`, IDOSchema);
|
|
}
|
|
|
|
checkAuth(headers: IAdminAuthHeaders) {
|
|
return fetchWithValidation(`https://${this.apiUrl}/api/auth/check`, z.object({
|
|
auth: z.boolean(),
|
|
}), { headers });
|
|
}
|
|
|
|
getPoolsList(headers: IAdminAuthHeaders) {
|
|
return fetchWithValidation(
|
|
`https://${this.apiUrl}/api/pools/list`,
|
|
adminPoolsListSchema,
|
|
{ headers },
|
|
);
|
|
}
|
|
|
|
editPool(address: string, data: IEditPool, headers: IAdminAuthHeaders) {
|
|
return fetchWithValidation(
|
|
`https://${this.apiUrl}/api/pools/edit/${address}`,
|
|
pairStatusSchema,
|
|
{
|
|
method: 'POST',
|
|
body: JSON.stringify(data),
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
...headers,
|
|
},
|
|
},
|
|
);
|
|
}
|
|
|
|
addPool(data: z.infer<typeof addPoolSchema>) {
|
|
return fetchWithValidation(
|
|
`https://${this.apiUrl}/api/pools/add`,
|
|
z.number(),
|
|
{
|
|
method: 'POST',
|
|
body: JSON.stringify(data),
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
Accept: 'application/json',
|
|
},
|
|
},
|
|
z.string(),
|
|
);
|
|
}
|
|
|
|
checkPoolInformation(poolAddress: string) {
|
|
return fetchWithValidation(`https://${this.apiUrl}/api/pools/check/${poolAddress}`, pairStatusSchema);
|
|
}
|
|
|
|
getAtomicSwapAssets() {
|
|
return fetchWithValidation(`https://${this.apiUrl}/api/atomic/swap-assets`, z.array(z.string()));
|
|
}
|
|
|
|
/**
|
|
* Sender is user address in source Orion Blockchain instance \
|
|
* Receiver is user address in target Orion Blockchain instance
|
|
*/
|
|
getAtomicSwapHistory(query: AtomicSwapHistorySourceQuery | AtomicSwapHistoryTargetQuery) {
|
|
const url = new URL(`https://${this.apiUrl}/api/atomic/history/`);
|
|
|
|
Object.entries(query)
|
|
.forEach(([key, value]) => url.searchParams.append(key, value.toString()));
|
|
|
|
return fetchWithValidation(url.toString(), atomicHistorySchema);
|
|
}
|
|
|
|
getSourceAtomicSwapHistory(query: AtomicSwapHistorySourceQuery) {
|
|
const url = new URL(`https://${this.apiUrl}/api/atomic/history/`);
|
|
|
|
Object.entries(query)
|
|
.forEach(([key, value]) => url.searchParams.append(key, value.toString()));
|
|
|
|
if (!query.type) url.searchParams.append('type', 'source');
|
|
|
|
return fetchWithValidation(url.toString(), sourceAtomicHistorySchema);
|
|
}
|
|
|
|
getTargetAtomicSwapHistory(query: AtomicSwapHistoryTargetQuery) {
|
|
const url = new URL(`https://${this.apiUrl}/api/atomic/history/`);
|
|
|
|
Object.entries(query)
|
|
.forEach(([key, value]) => url.searchParams.append(key, value.toString()));
|
|
|
|
if (!query.type) url.searchParams.append('type', 'target');
|
|
|
|
return fetchWithValidation(url.toString(), targetAtomicHistorySchema);
|
|
}
|
|
|
|
checkIfHashUsed(secretHashes: string[]) {
|
|
return fetchWithValidation(
|
|
`https://${this.apiUrl}/api/atomic/is-hash-used`,
|
|
z.record(z.boolean()).transform(makePartial),
|
|
{
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
Accept: 'application/json',
|
|
},
|
|
method: 'POST',
|
|
body: JSON.stringify(secretHashes),
|
|
},
|
|
);
|
|
}
|
|
}
|
|
|
|
export * as ws from './ws';
|
|
export * as schemas from './schemas';
|
|
export { OrionBlockchain };
|