-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'fe/post-transaction-balance' into fe/pool-transaction-b…
…alance
- Loading branch information
Showing
316 changed files
with
8,492 additions
and
39,090 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,20 @@ | ||
{ | ||
"editor.formatOnSave": true, | ||
"[typescript]": { | ||
"editor.defaultFormatter": "dbaeumer.vscode-eslint", | ||
}, | ||
"eslint.workingDirectories": [ | ||
{"directory": "packages/contracts", "changeProcessCWD": true } | ||
], | ||
"eslint.nodePath": "./node_modules/eslint/bin/", | ||
"eslint.format.enable": true, | ||
"editorconfig.generateAuto": false, | ||
"files.trimTrailingWhitespace": true, | ||
"solidity.packageDefaultDependenciesContractsDirectory": "contracts", | ||
"solidity.packageDefaultDependenciesDirectory": "lib", | ||
"solidity.compileUsingRemoteVersion": "v0.8.17", | ||
"solidity.formatter": "prettier" | ||
} | ||
"editor.formatOnSave": true, | ||
"[typescript]": { | ||
"editor.defaultFormatter": "dbaeumer.vscode-eslint" | ||
}, | ||
"[typescriptreact]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
}, | ||
"eslint.workingDirectories": [ | ||
{ "directory": "packages/contracts", "changeProcessCWD": true } | ||
], | ||
"eslint.nodePath": "./node_modules/eslint/bin/", | ||
"eslint.format.enable": true, | ||
"editorconfig.generateAuto": false, | ||
"files.trimTrailingWhitespace": true, | ||
"solidity.packageDefaultDependenciesContractsDirectory": "contracts", | ||
"solidity.packageDefaultDependenciesDirectory": "lib", | ||
"solidity.compileUsingRemoteVersion": "v0.8.17", | ||
"solidity.formatter": "prettier" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -67,20 +67,24 @@ root | |
│ ├── <a href="./packages/coverage-aggregator">coverage-aggregator</a>: Javascript coverage aggregator based on <a href="https://www.npmjs.com/package/nyc">nyc</a> | ||
│ ├── <a href="./packages/docs">docs</a>: Docasaurus documentation. Note: this is not yet in use, and docs are still maintained on gitbook | ||
│ ├── <a href="./packages/explorer-ui">explorer-ui</a>: Explorer UI | ||
│ ├── <a href="./packages/rest-api">rest-api</a>: Rest API | ||
│ ├── <a href="./packages/sdk-router">sdk-router</a>: SDK router | ||
│ ├── <a href="./packages/solidity-devops">solidity-devops</a>: provides a set of tools and scripts to help with the development of Solidity smart contracts | ||
│ ├── <a href="./packages/synapse-constants">synapse constants</a>: Constants used across synapse | ||
│ ├── <a href="./packages/sdk-router">synapse-interface</a>: Synapse frontend code | ||
│ ├── <a href="./packages/widget">widget</a>: Bridge Widget | ||
├── <a href="./services">services</a> | ||
│ ├── <a href="./services/cctp-relayer">CCTP Relayer</a>: CCTP message relayer | ||
│ ├── <a href="./services/explorer">explorer</a>: Bridge/messaging explorer ba | ||
│ ├── <a href="./services/stiprelayer">stiprelayer</a>: STIP relayer for rewards. | ||
│ ├── <a href="./services/rfq">rfq</a>: RFQ contracts | ||
│ ├── <a href="./services/scribe">scribe</a>: Generalized ethereum event logger | ||
│ ├── <a href="./services/omnirpc">omnirpc</a>: Latency aware RPC Client used across multiple-chains at once | ||
│ ├── <a href="./services/sinner">sinner</a>: [Synapse Interchain Network](https://interchain.synapseprotocol.com/) indexer & query interface | ||
├── <a href="./tools">tools</a> | ||
│ ├── <a href="./tools/abigen">abigen</a>: Used to generate abigen bindings for go | ||
│ ├── <a href="./tools/bundle">bundle</a>: Modified version of <a href="https://pkg.go.dev/golang.org/x/[email protected]/cmd/bundle"> go bundler </a> with improved shadowing support | ||
│ ├── <a href="./tools/modulecopier">module copier</a>: Used to copy internal modules and export methods for testing | ||
│ ├── <a href="./tools/revertresolver">revertresolver</a>: Converts hexified solidity errors into their underlying errors. | ||
</pre> | ||
|
||
## Setup | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.