forked from starknet-io/starknet.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
64 changed files
with
3,859 additions
and
1,721 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
## Motivation and Resolution | ||
|
||
... | ||
|
||
### RPC version (if applicable) | ||
|
||
... | ||
|
||
## Usage related changes | ||
|
||
<!-- How the changes from this PR affect users. --> | ||
|
||
- Change 1. | ||
- ... | ||
|
||
## Development related changes | ||
|
||
<!-- How these changes affect the developers of this project - e.g. changes in testing or CI/CD. --> | ||
|
||
- Change 1. | ||
- ... | ||
|
||
## Checklist: | ||
|
||
- [ ] Performed a self-review of the code | ||
- [ ] Rebased to the last commit of the target branch (or merged it into my branch) | ||
- [ ] Linked the issues which this PR resolves | ||
- [ ] Documented the changes | ||
- [ ] Updated the docs (www) | ||
- [ ] Updated the tests | ||
- [ ] All tests are passing |
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 |
---|---|---|
|
@@ -4,5 +4,6 @@ npm-debug.log | |
.env | ||
.DS_Store | ||
.eslintcache | ||
.vscode | ||
coverage | ||
yarn.lock |
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 |
---|---|---|
@@ -0,0 +1,42 @@ | ||
{ | ||
"primaryType": "Session", | ||
"types": { | ||
"Policy": [ | ||
{ "name": "contractAddress", "type": "felt" }, | ||
{ "name": "selector", "type": "selector" } | ||
], | ||
"Session": [ | ||
{ "name": "key", "type": "felt" }, | ||
{ "name": "expires", "type": "felt" }, | ||
{ "name": "root", "type": "merkletree", "contains": "Policy" } | ||
], | ||
"StarkNetDomain": [ | ||
{ "name": "name", "type": "felt" }, | ||
{ "name": "version", "type": "felt" }, | ||
{ "name": "chain_id", "type": "felt" } | ||
] | ||
}, | ||
"domain": { | ||
"name": "StarkNet Mail", | ||
"version": "1", | ||
"chain_id": 1 | ||
}, | ||
"message": { | ||
"key": "0x0000000000000000000000000000000000000000000000000000000000000000", | ||
"expires": "0x0000000000000000000000000000000000000000000000000000000000000000", | ||
"root": [ | ||
{ | ||
"contractAddress": "0x1", | ||
"selector": "transfer" | ||
}, | ||
{ | ||
"contractAddress": "0x2", | ||
"selector": "transfer" | ||
}, | ||
{ | ||
"contractAddress": "0x3", | ||
"selector": "transfer" | ||
} | ||
] | ||
} | ||
} |
Oops, something went wrong.