@polkadot/types/interfaces#Timepoint TypeScript Examples
The following examples show how to use
@polkadot/types/interfaces#Timepoint.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: TxSigned.tsx From crust-apps with Apache License 2.0 | 6 votes |
async function wrapTx (api: ApiPromise, currentItem: QueueTx, { isMultiCall, multiRoot, proxyRoot, signAddress }: AddressProxy): Promise<SubmittableExtrinsic<'promise'>> {
let tx = currentItem.extrinsic as SubmittableExtrinsic<'promise'>;
if (proxyRoot) {
tx = api.tx.proxy.proxy(proxyRoot, null, tx);
}
if (multiRoot) {
const multiModule = api.tx.multisig ? 'multisig' : 'utility';
const info = await api.query[multiModule].multisigs<Option<Multisig>>(multiRoot, tx.method.hash);
const { weight } = await tx.paymentInfo(multiRoot);
const { threshold, who } = extractExternal(multiRoot);
const others = who.filter((w) => w !== signAddress);
let timepoint: Timepoint | null = null;
if (info.isSome) {
timepoint = info.unwrap().when;
}
tx = isMultiCall
? api.tx[multiModule].asMulti.meta.args.length === 6
// We are doing toHex here since we have a Vec<u8> input
? api.tx[multiModule].asMulti(threshold, others, timepoint, tx.method.toHex(), false, weight)
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore
: api.tx[multiModule].asMulti(threshold, others, timepoint, tx.method)
: api.tx[multiModule].approveAsMulti.meta.args.length === 5
? api.tx[multiModule].approveAsMulti(threshold, others, timepoint, tx.method.hash, weight)
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore
: api.tx[multiModule].approveAsMulti(threshold, others, timepoint, tx.method.hash);
}
return tx;
}
Example #2
Source File: TxSigned.tsx From subscan-multisig-react with Apache License 2.0 | 6 votes |
async function wrapTx(
api: ApiPromise,
currentItem: QueueTx,
{ isMultiCall, multiRoot, proxyRoot, signAddress }: AddressProxy
): Promise<SubmittableExtrinsic<'promise'>> {
let tx = currentItem.extrinsic as SubmittableExtrinsic<'promise'>;
if (proxyRoot) {
tx = api.tx.proxy.proxy(proxyRoot, null, tx);
}
if (multiRoot) {
const multiModule = api.tx.multisig ? 'multisig' : 'utility';
const info = await api.query[multiModule].multisigs<Option<Multisig>>(multiRoot, tx.method.hash);
const { weight } = await tx.paymentInfo(multiRoot);
const { threshold, who } = extractExternal(multiRoot);
const others = who.filter((w) => w !== signAddress);
let timepoint: Timepoint | null = null;
if (info.isSome) {
timepoint = info.unwrap().when;
}
tx = isMultiCall
? api.tx[multiModule].asMulti.meta.args.length === 6
? // We are doing toHex here since we have a Vec<u8> input
api.tx[multiModule].asMulti(threshold, others, timepoint, tx.method.toHex(), false, weight)
: // eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore
api.tx[multiModule].asMulti(threshold, others, timepoint, tx.method)
: api.tx[multiModule].approveAsMulti.meta.args.length === 5
? api.tx[multiModule].approveAsMulti(threshold, others, timepoint, tx.method.hash, weight)
: // eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore
api.tx[multiModule].approveAsMulti(threshold, others, timepoint, tx.method.hash);
}
return tx;
}