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

contract events for ui updates to pledge display #105

Merged
merged 27 commits into from
Jun 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
90aac66
#458: added contract events driven ui updates to pledge amount display
sreuland Apr 28, 2023
fcbf6f1
Merge remote-tracking branch 'upstream/main' into 458_events
sreuland Apr 28, 2023
693665f
#458: updated soroban-react and soroban-client versions, fixed event …
sreuland Apr 28, 2023
1d170b3
#458: fixed lint error on typescript interface
sreuland Apr 28, 2023
9f05cd6
#458: changed crowdfund event method naming, review feedback
sreuland May 2, 2023
b8d4b2f
#458: prepare for preview 9 versions
sreuland May 5, 2023
a9a58ed
Merge remote-tracking branch 'upstream/main' into 458_events
sreuland May 5, 2023
2c31d9a
updating component versions to preview 9 as they become available
sreuland May 19, 2023
08e01b0
Merge remote-tracking branch 'origin/main' into 458_events
May 22, 2023
bf5c1b1
Merge remote-tracking branch 'upstream/main' into 458_events
sreuland May 22, 2023
fec9c82
update contract to be compliant to 0.8.2 soroban sdk
sreuland May 22, 2023
37cdd4e
Merge remote-tracking branch 'origin/458_events' into 458_events
sreuland May 22, 2023
720136a
remove cargo fmt errors
sreuland May 22, 2023
6ad8514
resolved clippy warnings
sreuland May 22, 2023
cf7097d
use release versions of soroban client and react
sreuland May 24, 2023
26a7297
updated soroban client and react libs
sreuland May 25, 2023
0cb4429
update soroban client and react versions, and refs to any older versions
sreuland May 26, 2023
7338d0c
fixed some xdr schema problems
sreuland May 26, 2023
a51624a
udpated to soroban-react 4.5.2, soroban-client 0.7.2
sreuland May 26, 2023
3aac031
used Address js workaround during shell initialize script for cli param
sreuland May 27, 2023
68c6264
added comment on workarounds script for address conversion
sreuland May 30, 2023
6f646f5
#458: buffer polyfill fix and update to latest soroban-react packages
sreuland May 31, 2023
f483e05
#458: fixed filename collision, dont use .soroban, it's used by cli a…
sreuland May 31, 2023
88b4ae2
Update node to v18
Jun 1, 2023
aacd8f7
We need to actually build soroban-preview:9 image
Jun 1, 2023
93c84e1
#458: review feedback for preview9
sreuland Jun 1, 2023
f6e653c
#458: fixed number convert for i128
sreuland Jun 1, 2023
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
12 changes: 6 additions & 6 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,17 @@ jobs:
- uses: stellar/actions/rust-cache@main
- run: rustup update
- run: rustup target add wasm32-unknown-unknown
- run: cargo install --target-dir ~/.cargo/target --locked --version 0.7.1 soroban-cli
- run: cargo install --target-dir ~/.cargo/target --locked --version 0.8.0 soroban-cli
- name: Use Node.js 17.x
uses: actions/setup-node@v3
with:
node-version: 17.x
cache: 'npm'
- run: npm ci
- run: |
mkdir -p .soroban
echo 'a9ab643486dc0dbcdc1485e6589e8bb3bcbbd8e69ad66c703556b4d6645a6dc8' > .soroban/token_id
echo '42798d5db884626e57f96630e7d02ba8210b4629d2959ef79ebb9e6538676ef9' > .soroban/crowdfund_id
echo 'GDT2NORMZF6S2T4PT4OBJJ43OPD3GPRNTJG3WVVFB356TUHWZQMU6C3U' > .soroban/token_admin_address
echo 'SAKCFFFNCE7XAWYMYVRZQYKUK6KMUCDIINLWISJYTMYJLNR2QLCDLFVT' > .soroban/token_admin_secret
mkdir -p .soroban-example-dapp
echo 'a9ab643486dc0dbcdc1485e6589e8bb3bcbbd8e69ad66c703556b4d6645a6dc8' > .soroban-example-dapp/token_id
echo '42798d5db884626e57f96630e7d02ba8210b4629d2959ef79ebb9e6538676ef9' > .soroban-example-dapp/crowdfund_id
echo 'GDT2NORMZF6S2T4PT4OBJJ43OPD3GPRNTJG3WVVFB356TUHWZQMU6C3U' > .soroban-example-dapp/token_admin_address
echo 'SAKCFFFNCE7XAWYMYVRZQYKUK6KMUCDIINLWISJYTMYJLNR2QLCDLFVT' > .soroban-example-dapp/token_admin_secret
- run: npm run-script build
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
/.soroban-example-dapp
/.soroban

# dependencies
/node_modules
/.pnp
Expand Down Expand Up @@ -41,3 +41,6 @@ yarn-error.log*
# Rust contract build
/target
/target-tiny

*.sublime-project
*.sublime-workspace
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
17
18
Loading
Loading