-
Notifications
You must be signed in to change notification settings - Fork 37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature: Implement wallet connection for Stellar #77
base: main
Are you sure you want to change the base?
Changes from 11 commits
ce7e68b
9b121d3
b286b8b
8f5e339
0573a52
d5a3d98
e55abc9
19945c2
ba6ccf6
b7f393b
4cfd44a
b9f9769
5c2094d
98b2469
2f36dc2
cd3fc42
461f880
c3dd66a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
{ | ||
"goerli": ["SN_GOERLI", "0x534e5f474f45524c49"], | ||
"sepolia": ["SN_SEPOLIA", "0x534e5f5345504f4c4941"], | ||
"mainnet": ["SN_MAIN", "0x534e5f4d41494e"] | ||
"mainnet": ["SN_MAIN", "0x534e5f4d41494e"], | ||
"stellar-mainnet": ["SN_STELLAR_MAIN", "0x534e5f53544c4c41524d41494e"], | ||
"stellar-testnet": ["SN_STELLAR_TEST", "0x534e5f53544c4c415254455354"] | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,11 +2,25 @@ | |
{ | ||
"name": "mainnet", | ||
"url": "starknetid-mainnet.starknet.a5a.ch", | ||
"indexer": true | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please don’t delete the indexer field |
||
"indexer": true, | ||
"chain": "starknet" | ||
}, | ||
{ | ||
"name": "sepolia", | ||
"url": "starknetid-sepolia.starknet.a5a.ch", | ||
"indexer": true | ||
"indexer": true, | ||
"chain": "starknet" | ||
}, | ||
{ | ||
"name": "stellar-mainnet", | ||
"url": "stellar-mainnet-url", | ||
"indexer": true, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Set indexer to false for stellar because we currently don't have one for these networks |
||
"chain": "stellar" | ||
}, | ||
{ | ||
"name": "stellar-testnet", | ||
"url": "stellar-testnet-url", | ||
"indexer": true, | ||
"chain": "stellar" | ||
} | ||
] | ||
] |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,12 @@ export class DiscordServerConfig { | |
discordServerId: string; | ||
|
||
@Column() | ||
starknetNetwork: "goerli" | "mainnet" | "sepolia"; | ||
starknetNetwork: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Perfect! |
||
| "goerli" | ||
| "mainnet" | ||
| "sepolia" | ||
| "stellar-mainnet" | ||
| "stellar-testnet"; | ||
|
||
@Column() | ||
discordRoleId: string; | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Rename ST_MAIN and ST_TEST instead of SN_xxx for Stellar