From 20925de13e85a408e26b791d4839d18f58f55905 Mon Sep 17 00:00:00 2001 From: Austin Griffith Date: Wed, 12 Sep 2018 06:24:17 -0600 Subject: [PATCH] Create README.md --- README.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..5b7f64b --- /dev/null +++ b/README.md @@ -0,0 +1,26 @@ +# meta-transaction-format-share + +[EIP-1077](https://github.com/ethereum/EIPs/blob/master/EIPS/eip-1077.md) is a very good guideline for how to format your meta transactions, but we are finding that different organizations have different use-cases. We would like to start executing transactions for each other but we need a centralized place to facilitate sharing our current implementations. + +Let's all post our meta transaction formats here in a digestible format: + +### Format +``` +{ + This is the format of my meta transaction +} +``` + +### Rx +``` +{ + Here is my (pseudo?)code for getting transactions from my dapp +} +``` + +### Tx +``` +{ + Here is my (pseudo?)code for getting transactions on chain +} +```