Skip to content

Commit 66add39

Browse files
authored
Merge pull request #167 from AbstractSDK/adair/polytone-sim
Add polytone simulation
2 parents 17c872d + bf49268 commit 66add39

8 files changed

+64
-4
lines changed

.changeset/famous-llamas-sleep.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@abstract-money/core": patch
3+
---
4+
5+
Add polytone simulation

packages/core/src/actions/account/public/query-module.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { ContractMsg } from '@abstract-money/core'
22
import { CosmWasmClient } from '@cosmjs/cosmwasm-stargate'
3-
import { ModuleType, wrapModuleQueryMsg } from 'src/utils/modules'
43
import { RegistryTypes } from '../../../codegen/abstract'
4+
import { ModuleType, wrapModuleQueryMsg } from '../../../utils/modules'
55
import { getModuleAddress } from './get-module-address'
66

77
export type QueryModuleParameters<

packages/core/src/clients/decorators/abstract-base.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
import { CosmWasmClient } from '@cosmjs/cosmwasm-stargate'
2-
import { getIcaClientQueryClient } from 'src/actions/public/get-ica-client-query-client'
32
import { getAbstractModuleAddressFromRegistry } from '../../actions/public/get-abstract-module-address-from-registry'
43
import { getAccountQueryClient } from '../../actions/public/get-account-query-client'
54
import { getAnsHostAddressFromRegistry } from '../../actions/public/get-ans-host-address-from-registry'
65
import { getAnsHostQueryClient } from '../../actions/public/get-ans-host-query-client'
76
import { getAnsHostQueryClientFromRegistry } from '../../actions/public/get-ans-host-query-client-from-registry'
87
import { getCosmWasmClient } from '../../actions/public/get-cosm-wasm-client'
98
import { getIbcClientQueryClient } from '../../actions/public/get-ibc-client-query-client'
9+
import { getIcaClientQueryClient } from '../../actions/public/get-ica-client-query-client'
1010
import { getRegistryModuleData } from '../../actions/public/get-registry-module-data'
1111
import { getRegistryQueryClient } from '../../actions/public/get-registry-query-client'
1212
import { ExtractAndPartializeParameters } from '../../types/parameters'

packages/core/src/clients/decorators/account-public.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { ContractMsg } from '@abstract-money/core'
22
import { CosmWasmClient } from '@cosmjs/cosmwasm-stargate'
3-
import { queryModule } from 'src/actions/account/public/query-module'
43
import { getAccountAddressFromApi } from '../../actions/account/public/get-account-address-from-api'
54
import { getAccountId } from '../../actions/account/public/get-account-id'
65
import { getAccountQueryClientFromApi } from '../../actions/account/public/get-account-query-client-from-api'
@@ -15,6 +14,7 @@ import { getRemoteAccountIds } from '../../actions/account/public/get-remote-acc
1514
import { getRemoteAccounts } from '../../actions/account/public/get-remote-accounts'
1615
import { getSubAccountIds } from '../../actions/account/public/get-sub-account-ids'
1716
import { getSubAccountSequences } from '../../actions/account/public/get-sub-account-sequences'
17+
import { queryModule } from '../../actions/account/public/query-module'
1818
import { simulateExecuteRemote } from '../../actions/account/public/simulate-execute-remote'
1919
import { simulateExecuteRemoteAccount } from '../../actions/account/public/simulate-execute-remote-account'
2020
import { RegistryTypes } from '../../codegen/abstract/index'
+2-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
export * from './predict-proxy-address'
1+
export * from './predict-polytone-proxy-address'
2+
export * from './simulate-polytone-voice-cosmos-msgs'
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
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

Comments
 (0)