typescript
const workflowBuilder = new WorkflowBuilder(options); const wf = await workflowBuilder.create({ name: 'MultiSender Workflow', trigger: new WebhookTrigger(webhookParams), actions: [ new MultiSenderAction( { items: recepients.map(([to, amount]) => ({ to, amount: parseUnits(amount, tokens.usdt.decimals), asset: tokens.usdt, })), }, commonConfig ), ], chainId, }); const tx = await wf.buildAndDeploy(smartAccount);
Simple Agoric Workflow
typescript
const workflowBuilder = new WorkflowBuilder(options); const wf = await workflowBuilder.create({ name: 'Agoric Workflow', trigger: new WebhookTrigger(webhookParams), actions: [ new AgoricComposer( { steps: [ { contract: 'uniswapPool', method: 'swapTokens', args: [...] }, { contract: 'aaveProtocol', method: 'deposit', args: [...] }, // More steps as needed ], }, commonConfig ), ], chainId, }); const tx = await wf.buildAndDeploy(smartAccount);
Cross-Protocol Operations
javascript
const crossProtocolSwapAgroic = new AgoricComposer('Cross-Protocol Swap') .addStep({ protocol: 'uniswap', action: 'swap', params: { tokenIn: 'ETH', tokenOut: 'USDC', amount: '1' } }) .addStep({ protocol: 'aave', action: 'deposit', params: { token: 'USDC', amount: '${output.step1.amountOut}' } }); const wf = await workflowBuilder.create({ name: 'Agoric Workflow', trigger: new WebhookTrigger(webhookParams), actions: [ crossProtocolSwapAgroic ], chainId, }); const tx = await wf.buildAndDeploy(smartAccount);
Cross-Chain Workflows
javascript
const crossChainArbitrageAgoric = new KeylessWorkflow('Cross-Chain Arbitrage') .addStep({ chainId: '0x1', protocol: 'uniswap', action: 'swap', params: { tokenIn: 'ETH', tokenOut: 'USDC', amount: '1' } }) .addStep({ chainId: 'cosmoshub-4', protocol: 'ibc', action: 'transfer', params: { token: 'USDC', destination: 'Cosmos' } }) .addStep({ chainId: 'cosmoshub-4', protocol: 'osmosis', action: 'swap', params: { tokenIn: 'USDC', tokenOut: 'ATOM' } }); const wf = await workflowBuilder.create({ name: 'Agoric Workflow', trigger: new WebhookTrigger(webhookParams), actions: [ crossChainArbitrageAgoric ], chainId, }); const tx = await wf.buildAndDeploy(smartAccount);

Powered by Notaku
Share