Skip to content
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

Feat/webservice land #28

Merged
merged 60 commits into from
Oct 12, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
60 commits
Select commit Hold shift + click to select a range
ddf57aa
api balanceOf, owner
joshualyguessennd Aug 11, 2022
6defdef
owner
joshualyguessennd Aug 11, 2022
41604a2
service owner
joshualyguessennd Aug 11, 2022
f31c4ea
update cargo
joshualyguessennd Aug 11, 2022
aa07097
fix url
joshualyguessennd Aug 11, 2022
ccc9b4f
totalsupply
joshualyguessennd Aug 11, 2022
fe79e33
init mint
joshualyguessennd Aug 11, 2022
b467c4a
mint tx issue
joshualyguessennd Aug 12, 2022
e5d19e4
mint tx issue
joshualyguessennd Aug 12, 2022
76bff30
region struct
joshualyguessennd Aug 12, 2022
f43bbad
feat: adds mint route
Genysys Aug 12, 2022
1ca3834
Merge branch 'feat/webservice-land' of https://github.com/realiotech/…
Genysys Aug 12, 2022
cf58805
connect wallet
joshualyguessennd Aug 12, 2022
6dc064a
fix: provider instatition
Genysys Aug 12, 2022
845af2c
feat: Json field
joshualyguessennd Aug 13, 2022
afcbfa1
approve logic
joshualyguessennd Aug 13, 2022
98d1342
sign tx
joshualyguessennd Aug 13, 2022
9087764
tx request
joshualyguessennd Aug 14, 2022
04cb64a
send_tx option
joshualyguessennd Aug 15, 2022
e445fb5
chore: signer middleware
Genysys Aug 15, 2022
b9f44e0
chore: mint
Genysys Aug 15, 2022
5cc4b8a
fix: unwrap over ?
Genysys Aug 15, 2022
56f97d4
fix: unwrap over ?
Genysys Aug 15, 2022
7c35467
mint
joshualyguessennd Aug 15, 2022
e6dac71
lib deployment
joshualyguessennd Aug 16, 2022
6b272e9
error some string
joshualyguessennd Aug 16, 2022
56c60b6
migrate to service
joshualyguessennd Aug 16, 2022
0b03c40
fix: approval call
Genysys Aug 17, 2022
cb2a553
await approval
joshualyguessennd Aug 17, 2022
af44679
chore: refactor for tests
Genysys Aug 17, 2022
4ae9238
Merge branch 'feat/webservice-land' of https://github.com/realiotech/…
Genysys Aug 17, 2022
d9d5e27
set bank, dev
joshualyguessennd Aug 17, 2022
d76d171
feat: adds docker build
Genysys Aug 17, 2022
1afe71a
Merge branch 'feat/webservice-land' of https://github.com/realiotech/…
Genysys Aug 17, 2022
c28abc0
chore: fix env var
Genysys Aug 17, 2022
40ab823
test balance
joshualyguessennd Aug 18, 2022
159f346
provider refactoring
joshualyguessennd Aug 18, 2022
ca399e1
fix dotenv
joshualyguessennd Aug 19, 2022
dc8e810
comment mint debug
joshualyguessennd Aug 19, 2022
b73074e
appstate
joshualyguessennd Aug 19, 2022
79aa4d3
refactor: split provider out
Genysys Aug 20, 2022
e59ba09
Merge branch 'feat/webservice-land' of https://github.com/realiotech/…
joshualyguessennd Aug 22, 2022
58f1945
Docker service
joshualyguessennd Aug 22, 2022
e42a975
fix: lint
joshualyguessennd Aug 23, 2022
6daad84
clippy fix
joshualyguessennd Aug 23, 2022
f7c29e6
cargo fmt
joshualyguessennd Aug 23, 2022
0d8d206
update
joshualyguessennd Aug 26, 2022
18fd639
check env
joshualyguessennd Aug 26, 2022
9d85fde
delete foundry step
joshualyguessennd Aug 26, 2022
b3c57a1
slither ci
joshualyguessennd Aug 26, 2022
206f43a
exclude lib
joshualyguessennd Aug 26, 2022
2a1c0ac
exclude lib
joshualyguessennd Aug 26, 2022
67ba232
exclude lib
joshualyguessennd Aug 26, 2022
830290b
Merge pull request #17 from realiotech/feat/docker-webservice
Genysys Aug 28, 2022
ccc741f
anvil test
joshualyguessennd Aug 28, 2022
769b49b
reduce time
joshualyguessennd Aug 28, 2022
d0bc024
feat: deploymnent script
joshualyguessennd Aug 31, 2022
56b9353
feat: test update, script
joshualyguessennd Aug 31, 2022
a8b8eba
Feat/deployments testnet (#27)
joshualyguessennd Oct 9, 2022
105a61e
Merge branch 'master' into feat/webservice-land
Genysys Oct 12, 2022
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
11 changes: 6 additions & 5 deletions .github/workflows/contracts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,15 @@ jobs:
version: nightly
- run: pwd
- name: Run tests
run: forge test -f $INFURA --gas-report --root .
run: |
forge config
forge test -f $INFURA --gas-report --root .
env:
INFURA : ${{secrets.INFURA}}

- name: Run Coverage
run: forge coverage --report lcov
run: |
forge coverage --report lcov

# - name: Upload coverage to Codecov
# uses: codecov/codecov-action@v3
Expand Down Expand Up @@ -79,12 +82,10 @@ jobs:
version: nightly

- name: Pull library deps
working-directory: contracts
run: forge update

- name: Build contracts before checking bindings are correct
working-directory: contracts
run: forge build --root .
run: forge build

- name: Check bindings are correct
run: forge bind --bindings-path ./bindings --crate-name bindings
Expand Down
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,8 @@ out/
cache/
.vscode/
.DS_Store
.env

.env
broadcast/

.env
212 changes: 178 additions & 34 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading