Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
d3646f2
added functionality to create Stream with ENS by triggering a chainli…
samt1803 Dec 28, 2021
cc031e3
added chainlink as npm depency, not copied and changed contracts;
samt1803 Dec 31, 2021
187fff4
Merge branch 'ETH-197_automatic_ENS_sync' into livenet_deploy_script
samt1803 Dec 31, 2021
b42b72a
deployment to polygon testnet working
samt1803 Dec 31, 2021
5c65516
call working again in local hardhat testchain
samt1803 Jan 3, 2022
a8af007
deployment and chainlink sync work end2end with chainlink 0.8 contracts
samt1803 Jan 3, 2022
b8d79e0
e2e worked with 0 link
samt1803 Jan 3, 2022
532eaf0
all contracts should be upgradable
samt1803 Jan 4, 2022
edbe538
hardhat-upgrade deployment, but not working for some reason
samt1803 Jan 4, 2022
3dcadc7
can deploy UUPS version of NodeRegistry via hardhat-upgrades!!
samt1803 Jan 4, 2022
00d9586
change ENScache back to not upgradable since the chainlink contracts …
samt1803 Jan 4, 2022
dc5cf2b
streamregistry uups compatible, local hardhat chain test with calling…
samt1803 Jan 5, 2022
c06107e
now cache ich checked before triggering the chainlink sync
samt1803 Jan 5, 2022
6a27970
Merge branch 'ETH-197_automatic_ENS_sync' into proxify_all_hardhat-up…
samt1803 Jan 5, 2022
b06f67d
StreamStorageRegistry also UUPSUpgradable
samt1803 Jan 5, 2022
74e3043
debugging trustes access
samt1803 Jan 7, 2022
2d5639c
make unittests compatible with proxies, one role problem persists
samt1803 Jan 7, 2022
ec33971
add setenscache test, fix tests
samt1803 Jan 7, 2022
ac95618
everything works end2ned in localsidechain
samt1803 Jan 7, 2022
0e80a7f
deployed everything on mumbai, chainlink not picking up job
samt1803 Jan 7, 2022
c90c887
cleanup: consistent whitespace for readability
jtakalai Jan 10, 2022
d9dcccc
Merge branch 'ETH-197_automatic_ENS_sync' into proxify_all_hardhat-up…
jtakalai Jan 10, 2022
3a96a20
Merge remote-tracking branch 'origin/master' into proxify_all_hardhat…
samt1803 Jan 10, 2022
2ce2fd5
better checks for creating stream with ensname from chainlink
samt1803 Jan 10, 2022
3f63d8c
Merge remote-tracking branch 'origin/master' into proxify_all_hardhat…
samt1803 Jan 10, 2022
d962021
cleanup: typo fix in smart contract
jtakalai Jan 10, 2022
ffb3efb
fix: fix in linking contracts correctly after deployment
samt1803 Jan 10, 2022
70e1611
fix: fix deployment script; use mumbai testnet addresses
samt1803 Jan 10, 2022
56deedb
deployed to polygon mainnet, added address
samt1803 Jan 11, 2022
77d3128
deployed theGraph to centralised hosted theGraph prod
samt1803 Jan 11, 2022
9a0f3a1
chainlink external adapter changes for mainnet
samt1803 Jan 11, 2022
b8c8f9b
added StreamregistryV2 with fix: when creating a stream with an ensna…
samt1803 Jan 12, 2022
1de5fe2
deps: update chainlink contracts package
jtakalai Jan 13, 2022
d8fabfc
build: remove unused compiler version
jtakalai Jan 13, 2022
788805b
re-added WeightedNodeRegistry.sol, made it UUPSUpgradable
samt1803 Jan 14, 2022
2d5d62a
cleanup: added comments
jtakalai Jan 14, 2022
994848e
fix: tabs
jtakalai Jan 14, 2022
a49bcdf
fix: replace import with interface
jtakalai Jan 14, 2022
feb7b14
fix: compile errors
jtakalai Jan 14, 2022
225ea21
refactor: Add deployed version to git
jtakalai Jan 14, 2022
cb3ef98
fix: warning
jtakalai Jan 14, 2022
1edea3b
fix: lint, both ts and sol
jtakalai Jan 14, 2022
af06d3c
test: ENSCache callbacks
jtakalai Jan 14, 2022
b5b227e
build: remove version
jtakalai Jan 14, 2022
af8fa98
fix: lint
jtakalai Jan 14, 2022
4d453d0
fix: silence eslint warning
jtakalai Jan 17, 2022
bd704ab
build: add missing dep
jtakalai Jan 17, 2022
76a0e8d
comment
jtakalai Jan 17, 2022
00f7a23
test: rearrange
jtakalai Jan 17, 2022
f6a4f57
added Trackerregistry (old unproxified Noderegistry) that is still us…
samt1803 Jan 17, 2022
1addf5b
fix contract tests: remove 2 tests that are redundant and cause follo…
samt1803 Jan 20, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 20 additions & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,26 @@
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"command": "npm run deploylive2",
"name": "Run leployment",
"request": "launch",
"type": "node-terminal",
"env": {
"DEBUG": "*,-mocha:*"
},
"cwd": "${workspaceFolder}/packages/smartcontracts"
},
{
"command": "npm run interact",
"name": "Run interact",
"request": "launch",
"type": "node-terminal",
"env": {
"DEBUG": "*,-mocha:*"
},
"cwd": "${workspaceFolder}/packages/smartcontracts"
},
{
"type": "node",
"request": "launch",
Expand All @@ -16,7 +36,6 @@
"test",
"${file}"
],
"runtimeVersion": "16.2.0",
"internalConsoleOptions": "openOnSessionStart",
"cwd": "${workspaceFolder}/packages/smartcontracts"
},
Expand Down
Loading