Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
dcf66a8
update near sdk version
cak3ninja May 12, 2026
587267a
chore: vendor near-contract-standards
cak3ninja May 13, 2026
24fdbe1
test: setup workspaces ts
cak3ninja May 13, 2026
8fe774c
chore: update build scripts; resurect integration test
cak3ninja May 14, 2026
1ed858b
test: resurect tests
cak3ninja May 14, 2026
8a61106
test: rearrange tests to cannonical stucture
cak3ninja May 14, 2026
b22e96e
feat: add access control extension
cak3ninja May 18, 2026
c1efbe1
test: add pausable tests
cak3ninja May 21, 2026
8abf6dc
test: add acl tests
cak3ninja May 21, 2026
fdfd5dc
fix: check denylist for burn and storage_unregister
cak3ninja May 21, 2026
72a0d99
fix: lock holding account id
cak3ninja May 21, 2026
15a76ad
refactor: remove minting methods
cak3ninja May 21, 2026
324f976
fix: revert steps count on batch record failure
cak3ninja May 22, 2026
435b82a
feat: add migration
cak3ninja May 25, 2026
b53068c
chore: remove recording
cak3ninja May 25, 2026
fbf7b4f
chore: remove redundant comments
cak3ninja May 25, 2026
956c48c
chore: remove outdated tests
cak3ninja May 25, 2026
6fc2ca9
chore: remove oracle management methods
cak3ninja May 25, 2026
a51a208
refactor: extract internal deposit
cak3ninja May 25, 2026
e5e38e7
refactor: extract meta api
cak3ninja May 25, 2026
3cfde3c
doc: describe holding account
cak3ninja May 25, 2026
61656a1
refactor: require holding account
cak3ninja May 25, 2026
0b86918
feat: introduce DenylistManager role
cak3ninja May 25, 2026
65f7344
refactor: extract storage standard impl
cak3ninja May 25, 2026
73b6e6f
chore: update install step
cak3ninja May 25, 2026
9b84e71
chore: update README
cak3ninja May 25, 2026
d51de93
fix: skip minting for denylisted users
cak3ninja Jun 2, 2026
d6d481c
fix: safe math in fee calculation
cak3ninja Jun 2, 2026
779e31c
fix: separate untime governance from contract self-call / upgrade aut…
cak3ninja Jun 3, 2026
319cb94
fix: make storage_unregister pausable under the token feature
cak3ninja Jun 3, 2026
9255cb6
feat: emit burn event on forced storage_unregister
cak3ninja Jun 3, 2026
ce514f6
feat: require one yocto near on burn
cak3ninja Jun 3, 2026
73edfc4
feat: add event on restriction change
cak3ninja Jun 3, 2026
17fbb1e
fix: proper structure in migration
cak3ninja Jun 3, 2026
afd398e
refactor: remove outdated hasher in token collection
cak3ninja Jun 3, 2026
3a6a0bf
feat: pause simplified
cak3ninja Jun 5, 2026
b8f927f
fix: limit batch size
cak3ninja Jun 5, 2026
3921733
fix: harden defer checks
cak3ninja Jun 5, 2026
4dc1dcb
fix: do not emit FtBurn with empty amounts
cak3ninja Jun 8, 2026
23d0599
chore: clean assertion
cak3ninja Jun 8, 2026
653892a
bump version
cak3ninja Jun 9, 2026
f38d20e
fix: reproducible build
cak3ninja Jun 9, 2026
98c8e37
fix: reproducible build
cak3ninja Jun 9, 2026
a1b1a0f
build: v1.3.0
cak3ninja Jun 9, 2026
8d34f3b
fix: ci builds
cak3ninja Jun 11, 2026
4e1c71d
chore: clean lint
cak3ninja Jun 11, 2026
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
File renamed without changes.
6 changes: 6 additions & 0 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ jobs:
- name: Checkout
uses: actions/checkout@v3

- name: Install cargo-near
run: curl --proto '=https' --tlsv1.2 -LsSf https://github.com/near/cargo-near/releases/download/cargo-near-v0.19.0/cargo-near-installer.sh | sh

- name: Build
run: make build

Expand All @@ -39,5 +42,8 @@ jobs:
- name: Checkout
uses: actions/checkout@v3

- name: Install cargo-near
run: curl --proto '=https' --tlsv1.2 -LsSf https://github.com/near/cargo-near/releases/download/cargo-near-v0.19.0/cargo-near-installer.sh | sh

- name: Integration tests
run: make integration
6 changes: 6 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ jobs:
- name: Checkout
uses: actions/checkout@v3

- name: Install cargo-near
run: curl --proto '=https' --tlsv1.2 -LsSf https://github.com/near/cargo-near/releases/download/cargo-near-v0.19.0/cargo-near-installer.sh | sh

- name: Build
run: make build

Expand All @@ -39,5 +42,8 @@ jobs:
- name: Checkout
uses: actions/checkout@v3

- name: Install cargo-near
run: curl --proto '=https' --tlsv1.2 -LsSf https://github.com/near/cargo-near/releases/download/cargo-near-v0.19.0/cargo-near-installer.sh | sh

- name: Integration tests
run: make integration
12 changes: 12 additions & 0 deletions .zed/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"lsp": {
"rust-analyzer": {
"initialization_options": {
"linkedProjects": [
"Cargo.toml",
"integration-tests/Cargo.toml"
],
}
}
}
}
Loading
Loading