fix gitignore

This commit is contained in:
Conner Gallagher 2023-01-06 11:11:51 -07:00
parent 361e75ebef
commit e524a882d5
3 changed files with 111 additions and 6 deletions

15
.gitignore vendored
View File

@ -4,12 +4,12 @@ dist
lib
build
tsconfig.tsbuildinfo
javascript/*/docs
**/docs
*.env
**/.switchboard/*
!**/.switchboard/networks/*.config.json
# Yarn
**/.yarn
# Python
__pycache__
.pytest_cache
@ -30,5 +30,8 @@ secrets
*-error.log
*-debug.log
# Yarn
**/.yarn
# Switchboard
**/.switchboard/*
!**/.switchboard/networks/
**/.switchboard/networks/*
!**/.switchboard/networks/*.config.json

View File

@ -0,0 +1,43 @@
{
"queue": {
"name": "My Queue",
"metadata": "Queue Metadata",
"publicKey": "ACzh7Ra83zyjyBn1yv4JLZ1jC41kxTcMyuoFN8z1BTPX",
"keypair": "[64,119,125,66,195,41,127,56,113,141,220,226,61,141,93,213,149,12,201,99,225,48,92,168,203,19,197,43,186,24,189,98,136,203,205,164,226,1,86,171,199,229,92,106,212,230,63,3,160,16,181,133,19,59,42,249,213,155,187,32,198,125,3,50]",
"dataBufferKeypair": "[28,229,235,252,212,152,240,151,230,84,57,182,211,58,109,232,52,111,127,47,165,186,139,73,33,156,253,250,172,188,119,182,87,178,229,228,101,161,161,42,44,249,82,32,94,94,198,20,234,19,202,242,165,35,2,231,160,10,221,45,63,3,250,119]",
"queueSize": 10,
"reward": 0.000005,
"minStake": 1,
"oracleTimeout": 900,
"unpermissionedFeeds": true,
"unpermissionedVrf": true,
"enableBufferRelayers": false
},
"oracles": [
{
"name": "Oracle #1",
"publicKey": "dgrqcPsQbTibKLg9VGuaXNam6oToyexqLRjLVN7fYCU",
"stakeAmount": 1.5,
"enable": true,
"stakingWalletKeypair": "[67,131,239,47,118,122,163,132,42,122,203,119,213,213,100,75,231,52,223,48,24,210,237,170,53,148,5,156,177,174,55,104,150,48,4,175,217,217,90,71,189,153,51,139,210,112,138,167,3,190,119,20,1,68,148,4,186,96,127,24,38,128,189,75]"
}
],
"vrfs": [
{
"publicKey": "CJhJjpS8NUf6EcSJWqCNAVXoyk5Pouu6ZLmirbNPGre7",
"keypair": "[219,80,203,239,47,171,68,163,47,244,196,102,50,239,191,107,219,20,193,186,173,88,241,171,187,55,34,11,78,5,44,66,167,249,0,255,39,99,54,20,240,98,234,133,128,40,252,103,253,109,188,7,174,54,112,137,201,171,118,211,140,67,238,36]",
"enable": true,
"callback": {
"programId": "11111111111111111111111111111111",
"accounts": [
{
"pubkey": "11111111111111111111111111111111",
"isWritable": true,
"isSigner": false
}
],
"ixData": [0, 0, 0, 0, 0, 0, 0, 0]
}
}
]
}

View File

@ -0,0 +1,59 @@
{
"queue": {
"queueSize": 10,
"oracleTimeout": 900,
"unpermissionedFeeds": true,
"unpermissionedVrf": true,
"enableBufferRelayers": false
},
"cranks": [
{
"maxRows": 200
}
],
"oracles": [
{
"stakeAmount": 1.5,
"enable": true
}
],
"aggregators": [
{
"name": "Aggregator #1",
"crankIndex": 0,
"enable": true,
"fundAmount": 1,
"minUpdateDelaySeconds": 30,
"historyLimit": 1000,
"jobs": [
{
"weight": 1,
"name": "Job #1",
"tasks": [
{
"valueTask": {
"value": 1
}
}
]
}
]
}
],
"vrfs": [
{
"enable": true,
"callback": {
"programId": "11111111111111111111111111111111",
"accounts": [
{
"pubkey": "11111111111111111111111111111111",
"isWritable": true,
"isSigner": false
}
],
"ixData": [0, 0, 0, 0, 0, 0, 0, 0]
}
}
]
}