@polkadot/util#u8aToU8a TypeScript Examples
The following examples show how to use
@polkadot/util#u8aToU8a.
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: base-provider.ts From bodhi.js with Apache License 2.0 | 5 votes |
queryStorage = async <T = any>(
module: `${string}.${string}`,
args: any[],
_blockTag?: BlockTag | Promise<BlockTag>
): Promise<T> => {
const blockTag = await this._ensureSafeModeBlockTagFinalization(_blockTag);
const blockHash = await this._getBlockHash(blockTag);
const registry = await this.api.getBlockRegistry(u8aToU8a(blockHash));
if (!this.storages.get(registry)) {
const storage = decorateStorage(registry.registry, registry.metadata.asLatest, registry.metadata.version);
this.storages.set(registry, storage);
}
const storage = this.storages.get(registry)!;
const [section, method] = module.split('.');
const entry = storage[section][method];
const key = entry(...args);
const outputType = unwrapStorageType(registry.registry, entry.meta.type, entry.meta.modifier.isOptional);
const cacheKey = `${module}-${blockHash}-${args.join(',')}`;
const cached = this._storageCache.get(cacheKey);
let input: Uint8Array | null = null;
if (cached) {
input = cached;
} else {
const value: any = await this.api.rpc.state.getStorage(key, blockHash);
const isEmpty = isNull(value);
// we convert to Uint8Array since it maps to the raw encoding, all
// data will be correctly encoded (incl. numbers, excl. :code)
input = isEmpty
? null
: u8aToU8a(entry.meta.modifier.isOptional ? value.toU8a() : value.isSome ? value.unwrap().toU8a() : null);
this._storageCache.set(cacheKey, input);
}
const result = registry.registry.createTypeUnsafe(outputType, [input], {
blockHash,
isPedantic: !entry.meta.modifier.isOptional
});
return result as any as T;
};
Example #2
Source File: Raw.tsx From crust-apps with Apache License 2.0 | 5 votes |
function Raw ({ onAdd }: Props): React.ReactElement<Props> {
const { t } = useTranslation();
const [{ isValid, key }, setValue] = useState<{ isValid: boolean; key: Uint8Array }>({ isValid: false, key: new Uint8Array([]) });
const _onAdd = useCallback(
(): void => {
isValid && onAdd({ isConst: false, key });
},
[isValid, key, onAdd]
);
const _onChangeKey = useCallback(
(key: string): void => {
const u8a = u8aToU8a(key);
setValue({
isValid: u8a.length !== 0,
key: compactAddLength(u8a)
});
},
[]
);
return (
<section className='storage--actionrow'>
<div className='storage--actionrow-value'>
<Input
autoFocus
label={t<string>('hex-encoded storage key')}
onChange={_onChangeKey}
onEnter={_onAdd}
/>
</div>
<div className='storage--actionrow-buttons'>
<Button
icon='plus'
isDisabled={!isValid}
onClick={_onAdd}
/>
</div>
</section>
);
}
Example #3
Source File: index.ts From contracts-ui with GNU General Public License v3.0 | 5 votes |
export function encodeSalt(salt: Uint8Array | string | null = randomAsU8a()): Uint8Array {
return salt instanceof Bytes
? salt
: salt && salt.length
? compactAddLength(u8aToU8a(salt))
: EMPTY_SALT;
}
Example #4
Source File: QrSigner.ts From sdk with Apache License 2.0 | 5 votes |
function _createSignPayload(address: string, cmd: number, payload: Uint8Array | any, genesisHash: Uint8Array | any) {
return u8aConcat(SUBSTRATE_ID, CRYPTO_SR25519, new Uint8Array([cmd]), decodeAddress(address), u8aToU8a(payload), u8aToU8a(genesisHash));
}