|
| 1 | +import { cosmosWasmExecuteMsg, jsonToBinary } from '@abstract-money/core' |
| 2 | +import { CosmWasmClient } from '@cosmjs/cosmwasm-stargate' |
| 3 | +import { AccountTypes } from '../../codegen/abstract' |
| 4 | +import { MaybeArray } from '../../types/utils' |
| 5 | +import { simulateWasmCosmosMsgs } from '../cosmos' |
| 6 | + |
| 7 | +export type SimulatePolytoneCosmosMsgParameters = { |
| 8 | + hostCosmWasmClient: CosmWasmClient |
| 9 | + controllerSender: string |
| 10 | + controllerNoteAddress: string |
| 11 | + hostVoiceAddress: string |
| 12 | + hostVoiceConnectionId: `connection-${string}` |
| 13 | + msgs: MaybeArray<AccountTypes.CosmosMsgForEmpty> |
| 14 | +} |
| 15 | + |
| 16 | +/** |
| 17 | + * Simulate messages to be executed on a the host polytone voice chain. |
| 18 | + * @param msgs |
| 19 | + * @experimental |
| 20 | + */ |
| 21 | +export async function simulatePolytoneVoiceCosmosMsgs({ |
| 22 | + hostCosmWasmClient, |
| 23 | + hostVoiceAddress, |
| 24 | + controllerNoteAddress, |
| 25 | + controllerSender, |
| 26 | + hostVoiceConnectionId, |
| 27 | + msgs, |
| 28 | +}: SimulatePolytoneCosmosMsgParameters) { |
| 29 | + const voiceMsg = cosmosWasmExecuteMsg( |
| 30 | + hostVoiceAddress, |
| 31 | + { |
| 32 | + rx: { |
| 33 | + connection_id: hostVoiceConnectionId, |
| 34 | + counterparty_port: `wasm.${controllerNoteAddress}`, |
| 35 | + data: jsonToBinary({ |
| 36 | + sender: controllerSender, |
| 37 | + msg: { |
| 38 | + execute: { |
| 39 | + msgs: Array.isArray(msgs) ? msgs : [msgs], |
| 40 | + }, |
| 41 | + }, |
| 42 | + }), |
| 43 | + }, |
| 44 | + }, |
| 45 | + [], |
| 46 | + ) |
| 47 | + |
| 48 | + return await simulateWasmCosmosMsgs( |
| 49 | + // biome-ignore lint/complexity/useLiteralKeys: private |
| 50 | + hostCosmWasmClient['cometClient'], |
| 51 | + [voiceMsg], |
| 52 | + hostVoiceAddress, |
| 53 | + ) |
| 54 | +} |
0 commit comments