Examples
Usage examples of the Nomos SDK
Sending funds
const {transactionHash, proposal} = await multisig.createProposal({
from: "<sender address>",
description: "<proposal description<",
messages: [
{
bank: {
send: {
amount: [
{
denom: "<network denom>", //"aarch" in archway mainnet
amount: "<amount to send",
},
],
to_address: receiverAddr,
},
},
},
],
});Instantiate any contract
Transfer CW20 tokens
Stake native tokens
Astrovault deposit
Astrovault Withdraw
Last updated