diff --git a/test/performance/scripts/any_to_bank.js b/test/performance/scripts/any_to_bank.js
new file mode 100644
index 000000000..fa7066b33
--- /dev/null
+++ b/test/performance/scripts/any_to_bank.js
@@ -0,0 +1,21 @@
+function next() {
+    return [
+        {
+            action: 'CREATE_TRANSACTION',
+            data: {
+                script: {
+                    plain: `vars {
+                        account $source
+                    }
+                    send [USD/2 100] (
+                        source = $source allowing unbounded overdraft
+                        destination = @bank
+                    )`,
+                    vars: {
+                        source: "src:" + uuid()
+                    }
+                }
+            }
+        }
+    ]
+}
\ No newline at end of file