-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #836 from reservoirprotocol/devin/1736782328-add-s…
…tory-odyssey-chain feat: add Story Odyssey chain support
- Loading branch information
Showing
12 changed files
with
151 additions
and
0 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,7 @@ | ||
--- | ||
"@reservoir0x/reservoir-sdk": patch | ||
"@reservoir0x/reservoir-kit-ui": patch | ||
"reservoir-kit-demo": patch | ||
--- | ||
|
||
feat: add Story Odyssey chain support |
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 |
---|---|---|
|
@@ -388,4 +388,7 @@ export default [ | |
{ | ||
...reservoirChains.soneium, | ||
}, | ||
{ | ||
...reservoirChains.storyOdyssey, | ||
}, | ||
] |
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
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
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,26 @@ | ||
import React from 'react' | ||
|
||
const StoryOdysseyIconColor = () => ( | ||
<svg | ||
width="auto" | ||
height="100%" | ||
viewBox="0 0 60 60" | ||
fill="none" | ||
xmlns="http://www.w3.org/2000/svg" | ||
> | ||
<circle cx="30" cy="30" r="30" fill="#4F46E5"/> | ||
<text | ||
x="30" | ||
y="30" | ||
textAnchor="middle" | ||
dominantBaseline="middle" | ||
fill="white" | ||
fontSize="24" | ||
fontFamily="Arial" | ||
> | ||
SO | ||
</text> | ||
</svg> | ||
) | ||
|
||
export default StoryOdysseyIconColor |
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,26 @@ | ||
import React from 'react' | ||
|
||
const StoryOdysseyIconDark = () => ( | ||
<svg | ||
width="auto" | ||
height="100%" | ||
viewBox="0 0 60 60" | ||
fill="none" | ||
xmlns="http://www.w3.org/2000/svg" | ||
> | ||
<circle cx="30" cy="30" r="30" fill="#11181C"/> | ||
<text | ||
x="30" | ||
y="30" | ||
textAnchor="middle" | ||
dominantBaseline="middle" | ||
fill="white" | ||
fontSize="24" | ||
fontFamily="Arial" | ||
> | ||
SO | ||
</text> | ||
</svg> | ||
) | ||
|
||
export default StoryOdysseyIconDark |
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,26 @@ | ||
import React from 'react' | ||
|
||
const StoryOdysseyIconLight = () => ( | ||
<svg | ||
width="auto" | ||
height="100%" | ||
viewBox="0 0 60 60" | ||
fill="none" | ||
xmlns="http://www.w3.org/2000/svg" | ||
> | ||
<circle cx="30" cy="30" r="30" fill="#ECEDEE"/> | ||
<text | ||
x="30" | ||
y="30" | ||
textAnchor="middle" | ||
dominantBaseline="middle" | ||
fill="#11181C" | ||
fontSize="24" | ||
fontFamily="Arial" | ||
> | ||
SO | ||
</text> | ||
</svg> | ||
) | ||
|
||
export default StoryOdysseyIconLight |