Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
drortirosh committed May 12, 2024
1 parent 008f1a5 commit b2ffe79
Show file tree
Hide file tree
Showing 27 changed files with 89,069 additions and 1 deletion.
4,505 changes: 4,505 additions & 0 deletions v07/history/history.json

Large diffs are not rendered by default.

4,505 changes: 4,505 additions & 0 deletions v07/history/script-history.js

Large diffs are not rendered by default.

889 changes: 889 additions & 0 deletions v07/runs/20240512/162836/aabundler.json

Large diffs are not rendered by default.

2,425 changes: 2,425 additions & 0 deletions v07/runs/20240512/162836/aabundler.log

Large diffs are not rendered by default.

740 changes: 740 additions & 0 deletions v07/runs/20240512/162836/aabundler.txt

Large diffs are not rendered by default.

262 changes: 262 additions & 0 deletions v07/runs/20240512/162836/aabundler.xml

Large diffs are not rendered by default.

123 changes: 123 additions & 0 deletions v07/runs/20240512/162836/html/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,123 @@
<head>
<style>
#results {
font-family: Arial, Helvetica, sans-serif;
border-collapse: collapse;
/*width: 100%;*/
}

#results td, #results th {
border: 1px solid #ddd;
padding: 8px;
}

#results tr:nth-child(even){background-color: #f2f2f2;}

#results tr:hover {background-color: #ddd;}

#results th {
padding-top: 12px;
padding-bottom: 12px;
text-align: left;
background-color: #04AA6D;
color: white;
}
</style>
</head>

<h1>EIP-4337 Bundlers Spec Test Results</h1>
<div id=output >
</div>

<p>

This page was generated by <a href="https://github.com/eth-infinitism/bundler-test-results">bundler-test-results</a>


<script>

okmark = '&#9989;'
errmark = '&#10060;'
const dir = './out/'
async function getList() {
list = await fetch(dir+'index.txt').then(r=>r.text())
return list.split('\n').filter(line=>line.endsWith('json')).map(line=>dir+line)
}

async function getJson(path) {
return await fetch(path).then(r=>r.json())
}

function mapTests(testcases) {
return testcases.map(t=>({
name: t['@name'],
classname: t['@classname'],
time: t['@time'],
skipped: t['skipped'],
error: t['error'],
failure: t['failure'],
}))
}

async function load() {
list = await getList()
out=[]
for ( fname of list ) {
const j = await getJson(fname)
test = j.testsuites.testsuite
res = {
name: test['@name'],
fname, //: fname.replace(/.*\/(.*.json)$/,'$1'),
skipped: test['@skipped'],
failures: test['@failures'],
errors: test['@errors'],
time: test['@time'],
tests: mapTests(test.testcase)
}
console.log('res=',JSON.stringify(res,null,2))
out.push(res)
}

return out
}

function ref(data,link) {
if ( !link) return data
return `<a href="${link}">${data}</a>`
}

function tr(...data) {
return `<tr>${data.join(' ')}</tr>`
}

function th(data) {
// return td(data)
return `<th>${data}</th>`
}

function td(data,link) {
return `<td>${ref(data,link)}</td>`
}

async function init() {
data = await load()
console.log(data)
rows = document.querySelector('#output')

rows.innerHTML = '<table id="results"><tbody>\n' +
tr(th('Name'),th('Total'),th('Errors'),th('Failures'),th('Skipped'),th('Time')) +
data.map(line=>{
const {name, fname, skipped, errors,failures, time, tests} = line
link = fname.replace('json', 'txt')
ok = failures== '0' && errors == '0'
return tr(td(name, link),td(tests.length),td(errors),td(failures),td(skipped),td(time))
}).join('\n')
'</tbody></table>'

console.log(rows.innerHTML)

}
init()

</script>

22 changes: 22 additions & 0 deletions v07/runs/20240512/162836/index.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
aabundler.json
aabundler.log
aabundler.txt
aabundler.xml
html/
index.txt
okbund.json
okbund.log
okbund.txt
okbund.xml
silius.json
silius.log
silius.txt
silius.xml
skandha.json
skandha.log
skandha.txt
skandha.xml
transeptor.json
transeptor.log
transeptor.txt
transeptor.xml
895 changes: 895 additions & 0 deletions v07/runs/20240512/162836/okbund.json

Large diffs are not rendered by default.

21,295 changes: 21,295 additions & 0 deletions v07/runs/20240512/162836/okbund.log

Large diffs are not rendered by default.

870 changes: 870 additions & 0 deletions v07/runs/20240512/162836/okbund.txt

Large diffs are not rendered by default.

335 changes: 335 additions & 0 deletions v07/runs/20240512/162836/okbund.xml

Large diffs are not rendered by default.

919 changes: 919 additions & 0 deletions v07/runs/20240512/162836/silius.json

Large diffs are not rendered by default.

69 changes: 69 additions & 0 deletions v07/runs/20240512/162836/silius.log
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
Attaching to bundler-test-executor_bundler-waiter_1, bundler-test-executor_bundler_1, bundler-test-executor_deployer_1, bundler-test-executor_funder_1, geth-1.13
bundler-waiter_1 | 2024-05-12T16:18:23.970832344Z "0x539"
bundler_1 | 2024-05-12T16:18:21.991887930Z 2024-05-12T16:18:21.991795Z  INFO silius::bundler: Starting uopool gRPC service...
bundler_1 | 2024-05-12T16:18:21.993670691Z 2024-05-12T16:18:21.993586Z  INFO silius::bundler: UoPool component connected to Ethereum execution client with version Geth/v1.13.15-stable-c5ba367e/linux-amd64/go1.21.9
bundler_1 | 2024-05-12T16:18:22.996433554Z 2024-05-12T16:18:22.996345Z  INFO silius::bundler: Started uopool gRPC service at 127.0.0.1:3002
bundler_1 | 2024-05-12T16:18:22.996461215Z 2024-05-12T16:18:22.996363Z  INFO silius::bundler: Starting bundling gRPC service...
bundler_1 | 2024-05-12T16:18:22.996826294Z 2024-05-12T16:18:22.996747Z  INFO silius::bundler: Bundling component connected to Ethereum execution client with version Geth/v1.13.15-stable-c5ba367e/linux-amd64/go1.21.9
bundler_1 | 2024-05-12T16:18:22.998895834Z 2024-05-12T16:18:22.998823Z  INFO silius::bundler: Wallet { address: 0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266, chain_Id: 1337 }
bundler_1 | 2024-05-12T16:18:22.998909159Z 2024-05-12T16:18:22.998835Z  INFO silius::bundler: Connecting to uopool gRPC service...
bundler_1 | 2024-05-12T16:18:22.999259488Z 2024-05-12T16:18:22.999144Z  INFO silius::bundler: Connected to uopool gRPC service
bundler_1 | 2024-05-12T16:18:22.999273585Z 2024-05-12T16:18:22.999173Z  INFO silius_grpc::bundler: Starting auto bundling
bundler_1 | 2024-05-12T16:18:22.999282121Z 2024-05-12T16:18:22.999200Z  INFO silius::bundler: Started bundler gRPC service at 127.0.0.1:3003
bundler_1 | 2024-05-12T16:18:22.999289644Z 2024-05-12T16:18:22.999209Z  INFO silius::bundler: Starting bundler JSON-RPC server...
bundler_1 | 2024-05-12T16:18:22.999312066Z 2024-05-12T16:18:22.999242Z  INFO silius::bundler: Connecting to uopool gRPC service...
bundler_1 | 2024-05-12T16:18:22.999640990Z 2024-05-12T16:18:22.999519Z  INFO silius::bundler: Connected to uopool gRPC service...
bundler_1 | 2024-05-12T16:18:22.999652161Z 2024-05-12T16:18:22.999541Z  INFO silius::bundler: Connecting to bundling gRPC service...
bundler_1 | 2024-05-12T16:18:22.999889934Z 2024-05-12T16:18:22.999831Z  INFO silius::bundler: Connected to bundling gRPC service...
bundler_1 | 2024-05-12T16:18:22.999973830Z 2024-05-12T16:18:22.999919Z  INFO silius::bundler: Started bundler JSON-RPC server with http: 0.0.0.0:3000, ws: 127.0.0.1:3001
bundler_1 | 2024-05-12T16:18:23.001466052Z 2024-05-12T16:18:23.001411Z  INFO silius_bundler::bundler: Skipping creating a new bundle, no user operations
bundler_1 | 2024-05-12T16:18:26.816824853Z 2024-05-12T16:18:26.816708Z  INFO silius_grpc::bundler: Stopping auto bundling
bundler_1 | 2024-05-12T16:18:27.294117410Z 2024-05-12T16:18:27.294021Z  INFO silius_grpc::bundler: Stopping auto bundling
bundler_1 | 2024-05-12T16:18:27.429081765Z 2024-05-12T16:18:27.428979Z  INFO silius_grpc::bundler: Stopping auto bundling
bundler_1 | 2024-05-12T16:18:27.664568833Z 2024-05-12T16:18:27.664467Z  INFO silius_grpc::bundler: Stopping auto bundling
bundler_1 | 2024-05-12T16:18:30.334508637Z 2024-05-12T16:18:30.334390Z  INFO silius_grpc::bundler: Stopping auto bundling
bundler_1 | 2024-05-12T16:18:31.315774582Z 2024-05-12T16:18:31.315661Z  INFO silius_grpc::bundler: Stopping auto bundling
bundler_1 | 2024-05-12T16:18:33.554770438Z 2024-05-12T16:18:33.554651Z  INFO silius_grpc::bundler: Stopping auto bundling
bundler_1 | 2024-05-12T16:18:36.117524027Z 2024-05-12T16:18:36.117420Z  INFO silius_grpc::bundler: Stopping auto bundling
bundler_1 | 2024-05-12T16:18:38.470651114Z 2024-05-12T16:18:38.470538Z  INFO silius_grpc::bundler: Stopping auto bundling
bundler_1 | 2024-05-12T16:18:43.840767579Z 2024-05-12T16:18:43.840665Z  INFO silius_grpc::bundler: Stopping auto bundling
bundler_1 | 2024-05-12T16:18:44.436206119Z 2024-05-12T16:18:44.436089Z  INFO silius_bundler::bundler: Creating a new bundle with 1 user operations: [UserOperationHash(0x9e8d255d2bf476b6ee708c6da949aa24b25187318d74068672a6d2c90ed3f27c)]
bundler_1 | 2024-05-12T16:18:44.516489910Z 2024-05-12T16:18:44.516402Z  INFO silius_bundler::bundler: Bundle successfully sent, hash: 0x4b9ecbfb5d2b45bfd8c66e693374d499a9b3e6d4206b707a6eb13393c52ddaa1, account: 0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266, entry point: 0x0000000071727de22e5e9d8baf0edac6f37da032, beneficiary: 0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266
bundler_1 | 2024-05-12T16:18:44.534560317Z 2024-05-12T16:18:44.534498Z  INFO silius_grpc::bundler: Stopping auto bundling
bundler_1 | 2024-05-12T16:18:45.362626978Z 2024-05-12T16:18:45.362519Z  INFO silius_bundler::bundler: Creating a new bundle with 1 user operations: [UserOperationHash(0xa4e6e8fe2c4353a0e50379541ba1dd5963743d5e115b810a362d89c47452cdf6)]
bundler_1 | 2024-05-12T16:18:45.442570159Z 2024-05-12T16:18:45.442484Z  INFO silius_bundler::bundler: Bundle successfully sent, hash: 0x643878037d722488d6add738d10beba680822bb405b056bf3087aabeaabc5cba, account: 0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266, entry point: 0x0000000071727de22e5e9d8baf0edac6f37da032, beneficiary: 0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266
bundler_1 | 2024-05-12T16:18:45.459944343Z 2024-05-12T16:18:45.459872Z  INFO silius_grpc::bundler: Stopping auto bundling
bundler_1 | 2024-05-12T16:18:46.133777017Z 2024-05-12T16:18:46.133663Z  INFO silius_bundler::bundler: Creating a new bundle with 1 user operations: [UserOperationHash(0xadf2be8bbb392e3c7d8156d0861c764568e36c98c1fe8a227627a65d4419489b)]
bundler_1 | 2024-05-12T16:18:46.213876644Z 2024-05-12T16:18:46.213784Z  INFO silius_bundler::bundler: Bundle successfully sent, hash: 0x2760402a5715a1d609c979bbd8952d2ff40d22b8f5c6775262fd61e91fcf5796, account: 0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266, entry point: 0x0000000071727de22e5e9d8baf0edac6f37da032, beneficiary: 0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266
bundler_1 | 2024-05-12T16:18:46.238698795Z 2024-05-12T16:18:46.238619Z  INFO silius_grpc::bundler: Stopping auto bundling
bundler_1 | 2024-05-12T16:18:46.617696143Z 2024-05-12T16:18:46.617601Z  INFO silius_grpc::bundler: Stopping auto bundling
bundler_1 | 2024-05-12T16:18:46.822757367Z 2024-05-12T16:18:46.822655Z  INFO silius_grpc::bundler: Stopping auto bundling
bundler_1 | 2024-05-12T16:18:47.135490202Z 2024-05-12T16:18:47.135391Z  INFO silius_bundler::bundler: Skipping creating a new bundle, no user operations
bundler_1 | 2024-05-12T16:18:47.386792306Z 2024-05-12T16:18:47.386684Z  INFO silius_bundler::bundler: Creating a new bundle with 1 user operations: [UserOperationHash(0x058809bca3425af9ff0f6261bb2d94f67f70c3f2962a0f79e8bafadbc1daabb4)]
bundler_1 | 2024-05-12T16:18:47.466741107Z 2024-05-12T16:18:47.466663Z  INFO silius_bundler::bundler: Bundle successfully sent, hash: 0xb15e7a3dbc32fc1a4eb4bfa4b4aa476aea982dc0001e43557612d63d3cb03f2a, account: 0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266, entry point: 0x0000000071727de22e5e9d8baf0edac6f37da032, beneficiary: 0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266
bundler_1 | 2024-05-12T16:18:47.719710778Z 2024-05-12T16:18:47.719584Z  INFO silius_bundler::bundler: Creating a new bundle with 1 user operations: [UserOperationHash(0xb05112f57bbce9064645e413c36e6658757db2851d70c2f0c71ee720e1b191df)]
bundler_1 | 2024-05-12T16:18:47.799740575Z 2024-05-12T16:18:47.799651Z  INFO silius_bundler::bundler: Bundle successfully sent, hash: 0x2c925e52e79e35e7c54743adc6f3dde3cd2d0fabf4082b099475d25ce9086830, account: 0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266, entry point: 0x0000000071727de22e5e9d8baf0edac6f37da032, beneficiary: 0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266
bundler_1 | 2024-05-12T16:19:41.507161612Z 2024-05-12T16:19:41.507042Z  INFO silius_grpc::bundler: Stopping auto bundling
bundler_1 | 2024-05-12T16:19:46.658248005Z 2024-05-12T16:19:46.658150Z  INFO silius_grpc::bundler: Stopping auto bundling
bundler_1 | 2024-05-12T16:21:11.815091906Z 2024-05-12T16:21:11.814973Z  INFO silius_bundler::bundler: Creating a new bundle with 1 user operations: [UserOperationHash(0xb126084436836e59717bf2de1c899447db428f7c454e59e40a5999bf9cb1f6af)]
bundler_1 | 2024-05-12T16:21:11.895004067Z 2024-05-12T16:21:11.894925Z  INFO silius_bundler::bundler: Bundle successfully sent, hash: 0xf50f33821d7c02080974e3f7699aad748e2e26524d66c8af0c65188caec73a2b, account: 0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266, entry point: 0x0000000071727de22e5e9d8baf0edac6f37da032, beneficiary: 0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266
bundler_1 | 2024-05-12T16:21:12.187613535Z 2024-05-12T16:21:12.187501Z  INFO silius_bundler::bundler: Creating a new bundle with 1 user operations: [UserOperationHash(0x0ae562bad24c73a9c4f255f3e38fd31158c434b8b33ca48b14dde1e61920adc7)]
bundler_1 | 2024-05-12T16:21:12.267483106Z 2024-05-12T16:21:12.267400Z  INFO silius_bundler::bundler: Bundle successfully sent, hash: 0x37e19ad650da66fdcbea32bca198bac9569f1830fc897111ca8e9e2a5a132f02, account: 0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266, entry point: 0x0000000071727de22e5e9d8baf0edac6f37da032, beneficiary: 0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266
bundler_1 | 2024-05-12T16:21:12.564209642Z 2024-05-12T16:21:12.564081Z  INFO silius_bundler::bundler: Creating a new bundle with 1 user operations: [UserOperationHash(0x483dfc1f7bb27737b1f9cfe04bd7e57bbfd008405fc5b5e81f73a67e72a44b42)]
bundler_1 | 2024-05-12T16:21:12.644163633Z 2024-05-12T16:21:12.644077Z  INFO silius_bundler::bundler: Bundle successfully sent, hash: 0x9ba75f4c79e87d8f5ccdbb92e8a5c9f6cf47bb303d6bcea165dab9d9e225666e, account: 0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266, entry point: 0x0000000071727de22e5e9d8baf0edac6f37da032, beneficiary: 0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266
bundler_1 | 2024-05-12T16:21:12.788231692Z 2024-05-12T16:21:12.788109Z  INFO silius_bundler::bundler: Skipping creating a new bundle, no user operations
deployer_1 | 2024-05-12T16:18:09.381567229Z Deploying entrypoint at 0x0000000071727De22E5E9d8BAf0edAc6f37da032
deployer_1 | 2024-05-12T16:18:15.464327393Z deploying:
funder_1 | 2024-05-12T16:18:08.440896488Z Error:
funder_1 | 2024-05-12T16:18:08.440973808Z error sending request for url (http://eth-node:8545/)
funder_1 | 2024-05-12T16:18:08.440986151Z
funder_1 | 2024-05-12T16:18:08.440992232Z Context:
funder_1 | 2024-05-12T16:18:08.440997312Z - Error #0: error sending request for url (http://eth-node:8545/)
funder_1 | 2024-05-12T16:18:08.441002511Z - Error #1: client error (Connect)
funder_1 | 2024-05-12T16:18:08.441007491Z - Error #2: tcp connect error: Connection refused (os error 111)
funder_1 | 2024-05-12T16:18:08.441012560Z - Error #3: Connection refused (os error 111)
funder_1 | 2024-05-12T16:18:08.442170685Z FATAL: unable to find a funder account: no FUND_PRIVATEKEY and no accounts[0] in node
funder_1 | 2024-05-12T16:18:08.830480654Z funded: 0x43378ff8C70109Ee4Dbe85aF34428ab0615EBd23
funder_1 | 2024-05-12T16:18:08.850745368Z funded: 0x43378ff8C70109Ee4Dbe85aF34428ab0615EBd23
funder_1 | 2024-05-12T16:18:08.871213589Z funded: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266
funder_1 | 2024-05-12T16:18:08.890802232Z funded: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266
Loading

0 comments on commit b2ffe79

Please sign in to comment.