Using AWS KMS Wallets

AWS Key Management Service (KMS) provides a secure way to manage cryptographic keys for your Fuel wallets. Rather than storing private keys locally, AWS KMS wallets use AWS's secure infrastructure to handle key storage and signing operations.

        let signer = AwsKmsSigner::new(your_kms_key_id, kms.client()).await?;
        let kms_wallet = KmsWallet::new(signer, Some(provider));