################## # Run the server ################## # Run the proxyd instance cargo run --release -- proxyd # Check if the instance is running curl -X POST -H "Content-Type: application/json" --data '{"jsonrpc":"2.0","method":"web3_clientVersion","id":1}' 127.0.0.1:8544 ########################## # Create a User & Log in ########################## cargo run create_user --address 0x762390ae7a3c4D987062a398C1eA8767029AB08E # ULID: 01GXEDC66Z9RZE6AE22JE7FRAW # UUID: 01875cd6-18df-4e3e-e329-c2149c77e15c # Log in as the user so we can check the balance # Open this website to get the nonce to log in curl -X GET "http://127.0.0.1:8544/user/login/0xeb3e928a2e54be013ef8241d4c9eaf4dfae94d5a" # Use this site to sign a message # https://www.myetherwallet.com/wallet/sign (whatever is output with the above code) curl -X POST http://127.0.0.1:8544/user/login \ -H 'Content-Type: application/json' \ -d '{ "address": "0xeb3e928a2e54be013ef8241d4c9eaf4dfae94d5a", "msg": "0x6c6c616d616e6f6465732e636f6d2077616e747320796f7520746f207369676e20696e207769746820796f757220457468657265756d206163636f756e743a0a3078654233453932384132453534424530313345463832343164344339456146344466414539344435610a0af09fa699f09fa699f09fa699f09fa699f09fa6990a0a5552493a2068747470733a2f2f6c6c616d616e6f6465732e636f6d2f0a56657273696f6e3a20310a436861696e2049443a20310a4e6f6e63653a20303148305a5a48434356324b32324738544850535758485131480a4973737565642041743a20323032332d30352d32315432303a32303a34332e3033353539315a0a45787069726174696f6e2054696d653a20323032332d30352d32315432303a34303a34332e3033353539315a", "sig": "7591251840bf75d2ab7c895bc566a49d2f4c3ad6bb14d7256258a59e52055fc94c11f8f3836f5311b52fc18aca40867cd85802636645e1d757494800631cad381c", "version": "3", "signer": "MEW" }' # bearer token is: 01H0ZZJDQ2F02MAXZR5K1X5NCP # scret key is: 01H0ZZJDNNEW49FRFS4D9SPR8B # 01GZH2PS89EJJY6V8JFCVTQ4BX # 01GZH2PS7CTHA3TAZ4HXCTX6KQ ########################################### # Initially check balance, it should be 0 ########################################### # Check the balance of the user # Balance seems to be returning properly (0, in this test case) curl \ -H "Authorization: Bearer 01H0ZZJDQ2F02MAXZR5K1X5NCP" \ -X GET "127.0.0.1:8544/user/balance" ########################################### # The user submits a transaction on the matic network # and submits it on the endpoint ########################################### curl \ -H "Authorization: Bearer 01GZK65YRW69KZECCGPSQH2XYK" \ -X GET "127.0.0.1:8544/user/balance/0x749788a5766577431a0a4fc8721fd7cb981f55222e073ed17976f0aba5e8818a" ########################################### # Check the balance again, it should have increased according to how much USDC was spent ########################################### # Check the balance of the user # Balance seems to be returning properly (0, in this test case) curl \ -H "Authorization: Bearer 01GZGGDBMV0GM6MFBBHPDE78BW" \ -X GET "127.0.0.1:8544/user/balance" # TODO: Now start using the RPC, balance should decrease # Get the RPC key curl \ -X GET "127.0.0.1:8544/user/keys" \ -H "Authorization: Bearer 01GZGGDBMV0GM6MFBBHPDE78BW" \ --data '{"method":"eth_blockNumber","params":[],"id":1,"jsonrpc":"2.0"}' ## Check if calling an RPC endpoint logs the stats ## This one does already even it seems for i in {1..300} do curl \ -X POST "127.0.0.1:8544/rpc/01H0ZZJDNNEW49FRFS4D9SPR8B" \ -H "Content-Type: application/json" \ --data '{"method":"eth_blockNumber","params":[],"id":1,"jsonrpc":"2.0"}' done # TODO: Now implement and test withdrawal