Kwala lets you deploy smart contracts to any supported chain from a single workflow. You only provide the target chain ID and upload the smart contract ‘.sol` file or paste your Solidity contract code, which can be used to extract the complied bytecode and contract ABI. Kwala will then handle the deployment for you. You use the deploy action type to deploy a new smart contract to a blockchain network. You can also use deploy actions to deploy Kwala Functions, which enable custom on-chain decision logic. The following example deploys an NFT contract to Ethereum mainnet with constructor parameters for name, symbol, and initial supply:Documentation Index
Fetch the complete documentation index at: https://kwala.network/docs/llms.txt
Use this file to discover all available pages before exploring further.
Required fields
The following fields are required to deploy a smart contract using Kwala:| Field | Description |
|---|---|
| name | Unique identifier for this action |
| type | Must be "deploy" |
| bytecode | The compiled contract bytecode (hex string) |
| encodedABI | ABI-encoded constructor parameters |
| initializationArgs | Array of constructor arguments |
| chainID | Target blockchain network ID |
.sol file or paste Solidity code directly, and the bytecode and ABI are auto-populated. See Configure a workflow for step-by-step instructions.
Next steps
Deploy actions reference
Full deploy action field reference
Kwala Functions
Deploy custom on-chain decision logic
