mirror of
https://github.com/pezkuwichain/pwap.git
synced 2026-04-21 23:47:56 +00:00
1295c36241
- Fixed TypeScript type assertion issues - Updated imports from api-augment/substrate to api-augment/bizinikiwi - Fixed imgConvert.mjs header and imports - Added @ts-expect-error for runtime-converted types - Fixed all @polkadot copyright headers to @pezkuwi
109 lines
3.3 KiB
TypeScript
109 lines
3.3 KiB
TypeScript
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
import type { ApiInterfaceRx } from '@pezkuwi/api/types';
|
|
import type { Enum } from '@pezkuwi/types';
|
|
import type { AccountId, AccountIndex, Address, Balance } from '@pezkuwi/types/interfaces';
|
|
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
|
|
import type { Struct, u64, u128, Vec } from '@pezkuwi/types-codec';
|
|
import type { ITuple } from '@pezkuwi/types-codec/types';
|
|
|
|
import { map, of } from 'rxjs';
|
|
|
|
import { memo } from '@pezkuwi/api-derive/util';
|
|
import { U8aFixed } from '@pezkuwi/types-codec';
|
|
|
|
export interface SignedBalance extends Enum {
|
|
readonly isPositive: boolean;
|
|
readonly asPositive: Balance;
|
|
readonly isNegative: boolean;
|
|
readonly asNegative: Balance;
|
|
}
|
|
|
|
export const u64FromCurrency = (currency: string): bigint => {
|
|
const buf = Buffer.from(currency.toLowerCase());
|
|
const size = buf.length;
|
|
|
|
return buf.reduce((val, digit, i) => {
|
|
const exp = BigInt(size - 1 - i);
|
|
|
|
return BigInt(val) + BigInt(256) ** exp * BigInt(digit);
|
|
}, BigInt(0));
|
|
};
|
|
|
|
const TOKENS = ['eq'];
|
|
|
|
interface EqPrimitivesBalanceAccountData extends Enum {
|
|
readonly isV0: boolean;
|
|
readonly asV0: {
|
|
readonly lock: u128;
|
|
readonly balance: Vec<ITuple<[u64, EqPrimitivesSignedBalance]>>;
|
|
} & Struct;
|
|
readonly type: 'V0';
|
|
}
|
|
|
|
interface EqPrimitivesSignedBalance extends Enum {
|
|
readonly isPositive: boolean;
|
|
readonly asPositive: u128;
|
|
readonly isNegative: boolean;
|
|
readonly asNegative: u128;
|
|
readonly type: 'Positive' | 'Negative';
|
|
}
|
|
|
|
export const createDerives = (tokens: string[]) => tokens.reduce((prev, token, i) => {
|
|
const isNative = !i;
|
|
|
|
return {
|
|
...prev,
|
|
|
|
[token]: { customAccount: (instanceId: string, api: ApiInterfaceRx) => {
|
|
const { registry } = api;
|
|
const asset = u64FromCurrency(token);
|
|
|
|
return memo(instanceId, (address: AccountIndex | AccountId | Address | string) => api.query.system.account(address).pipe(map((v) => {
|
|
const data = (v as unknown as { data: EqPrimitivesBalanceAccountData }).data;
|
|
|
|
const miscFrozen = isNative ? data.asV0.lock : registry.createType('u128', 0);
|
|
const feeFrozen = miscFrozen;
|
|
const reserved = registry.createType('u128', 0);
|
|
|
|
const entry = data.asV0.balance.find(([assetId]) => {
|
|
return assetId.toBigInt() === asset;
|
|
});
|
|
|
|
const balance = entry?.[1];
|
|
|
|
const free = balance?.isPositive
|
|
? balance.asPositive
|
|
: registry.createType('u128', 0);
|
|
|
|
return {
|
|
feeFrozen, free, miscFrozen, reserved
|
|
};
|
|
})));
|
|
},
|
|
customLocks: (instanceId: string, api: ApiInterfaceRx) => {
|
|
const { registry } = api;
|
|
|
|
return memo(instanceId, (address: AccountIndex | AccountId | Address | string) => isNative
|
|
? api.query.system.account(address).pipe(map((v) => {
|
|
const data = (v as unknown as { data: EqPrimitivesBalanceAccountData }).data;
|
|
|
|
return [{
|
|
amount: data.asV0.lock,
|
|
id: new U8aFixed(registry),
|
|
reasons: ''
|
|
}];
|
|
}))
|
|
: of([]));
|
|
} }
|
|
};
|
|
}, {});
|
|
|
|
const definitions: OverrideBundleDefinition = {
|
|
derives: createDerives(TOKENS),
|
|
instances: { balances: TOKENS }
|
|
};
|
|
|
|
export default definitions;
|