Skip to content
Merged

V2 #2

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
bc60530
refactor and downgrade to sdk 4.1.1
Canvinus Jan 11, 2024
47b2630
add comment and like
Canvinus Jan 11, 2024
a39ac7a
implement add_like
Canvinus Jan 11, 2024
4920c19
add votes
Canvinus Jan 11, 2024
514631e
fix bug of contract reinit
Canvinus Jan 11, 2024
7f7984b
add contracts search test
Canvinus Jan 11, 2024
73405b9
refactoring
Canvinus Jan 16, 2024
d210ccd
implement add_coment
Canvinus Jan 16, 2024
6d735b6
add get_comments and tests
Canvinus Jan 16, 2024
f310f29
update voting functionality
Canvinus Jan 16, 2024
d07eb42
add tests for comment voting
Canvinus Jan 16, 2024
728c09b
add builder script to gitignore
Canvinus Jan 18, 2024
313ee92
add pagination for comments
Canvinus Jan 21, 2024
7f6bcf3
add sort by upvotes
Canvinus Jan 21, 2024
50e7328
update contract sdk
Canvinus May 26, 2024
7b1da53
add source code git url
Canvinus May 26, 2024
4913bc0
update source_code_git_url
Canvinus May 26, 2024
2caabb9
update source_code_git_url
Canvinus May 26, 2024
a49ca06
add NearSchema
Canvinus May 26, 2024
f6eaa77
update Cargo.toml
Canvinus May 26, 2024
4153331
update Cargo.toml
Canvinus May 26, 2024
63a7c76
update contract
Canvinus May 26, 2024
aaa6e65
update contract
Canvinus May 26, 2024
ad5ac6e
update contract
Canvinus May 26, 2024
d72f9ae
update contract
Canvinus May 26, 2024
04f70ea
update contract
Canvinus May 26, 2024
1531597
update contract
Canvinus May 26, 2024
a02dce6
update contract
Canvinus May 26, 2024
9b3f115
update contract
Canvinus May 26, 2024
7e5b0fd
add block_height to verified contract data
Canvinus Jun 10, 2024
b96cca2
chore: update near-sdk version
Canvinus Aug 9, 2024
df6325b
chore: update Cargo.toml
Canvinus Aug 9, 2024
55f7e9c
chore: update Cargo.toml
Canvinus Aug 9, 2024
25ae6a9
feat: add code hash lookup and contracts count functions
Canvinus Dec 2, 2025
7bbaa70
build: update docker image to 0.17.0-rust-1.86.0
Canvinus Dec 2, 2025
e0b1ee2
build: fix container build command for newer image
Canvinus Dec 2, 2025
e63fcff
Merge pull request #1 from SourceScan/v2-feat-update
Canvinus Dec 2, 2025
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
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
/target
/backups

builder.sh
build.sh
6 changes: 6 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"rust-analyzer.linkedProjects": [
"./Cargo.toml",
Copy link

Copilot AI Dec 2, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The linkedProjects array contains duplicate entries of "./Cargo.toml". This is redundant and serves no purpose.

Solution: Remove one of the duplicate entries:

"rust-analyzer.linkedProjects": [
    "./Cargo.toml"
]
Suggested change
"./Cargo.toml",

Copilot uses AI. Check for mistakes.
"./Cargo.toml"
]
}
Loading
Loading