PHP WebShell
Текущая директория: /usr/lib/node_modules/bitgo/node_modules/@iota/iota-sdk/src/cryptography
Просмотр файла: intent.ts
// Copyright (c) Mysten Labs, Inc.
// Modifications Copyright (c) 2024 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0
import { bcs } from '../bcs/index.js';
export type IntentScope = Exclude<keyof typeof bcs.IntentScope.$inferType, '$kind'>;
/**
* Inserts a domain separator for a message that is being signed
*/
export function messageWithIntent(scope: IntentScope, message: Uint8Array) {
return bcs
.IntentMessage(bcs.fixedArray(message.length, bcs.u8()))
.serialize({
intent: {
scope: { [scope as 'PersonalMessage']: true },
version: { V0: true },
appId: { Iota: true },
},
value: message,
})
.toBytes();
}
Выполнить команду
Для локальной разработки. Не используйте в интернете!