@rxap/plugin-web3-storage
Version:
This plugin provides an executor to deploy your application to web3 storage. It also includes a generator to initialize the plugin. It simplifies the process of deploying web applications to decentralized storage.
13 lines (12 loc) • 461 B
TypeScript
export interface DeployExecutorSchema {
/** The endpoint of the web3 storage service */
endpoint?: string;
/** The key used to authenticate with the web3 storage service */
key?: string;
/** The proof used to authenticate with the web3 storage service */
proof?: string;
/** The rate limit in seconds of the web3 storage service */
rateLimit?: number;
/** The build target from which the output should be deployed */
buildTarget?: string;
}