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

[@kadena/client-utils] Implement Marmalade functions (Feat) #1484

Merged
merged 43 commits into from
May 29, 2024
Merged
Show file tree
Hide file tree
Changes from 15 commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
7713060
add marmalade generate contract script
nil-amrutlal Jan 16, 2024
3ecf4ef
create token and create token id functions
nil-amrutlal Jan 16, 2024
f2baef5
small refactor to create token id and create token
nil-amrutlal Jan 16, 2024
fc7b5e3
mint token functionality
nil-amrutlal Jan 16, 2024
2750216
transfer-create function
nil-amrutlal Jan 16, 2024
12a74f1
get balance function
nil-amrutlal Jan 16, 2024
8e0eba4
refactor createToken
nil-amrutlal Jan 16, 2024
8df7ac0
index file
nil-amrutlal Jan 17, 2024
76d5502
added unit testing for createId, create and mint tokens
nil-amrutlal Jan 19, 2024
3f98192
integration testing; lint and style fixes; index file for marmalade
nil-amrutlal Jan 22, 2024
873eb68
Merge commit '143f0429d14aec159691d3e78a838701af77552a' into feat/cli…
nil-amrutlal Jan 22, 2024
5c503e0
removed unecessary exports
nil-amrutlal Jan 22, 2024
a53cae6
omit sign in dirty reads
nil-amrutlal Jan 22, 2024
e09d96b
changeset file
nil-amrutlal Jan 22, 2024
f36ac58
Merge commit 'f253eec418d850d3719d7888beea603c36da894b' into feat/cli…
nil-amrutlal Feb 12, 2024
fc34898
Merge commit '351eda899e6629b139465d506d5573ba5924cacd' into feat/cli…
nil-amrutlal Feb 12, 2024
8bb2c25
marmalade integration testing init
nil-amrutlal Feb 14, 2024
86b0dd8
Merge commit 'd0a3df29886926cd9b2a28fd12622ecb4982f1f9' into feat/cli…
nil-amrutlal Feb 14, 2024
9539111
make chain argument declared at top;
nil-amrutlal Feb 14, 2024
b5a5cd5
ci changes: add apt-get update
nil-amrutlal Feb 14, 2024
8953ae3
default chain 0
nil-amrutlal Feb 14, 2024
a4b0de1
Merge commit '4a475f7f42316a16ae155a8547f8f1c3b53caea8' into feat/cli…
nil-amrutlal Feb 19, 2024
71c2cf7
unit testing to meet threshold
nil-amrutlal Feb 19, 2024
40344a4
Merge commit 'b05bbfe3cd603c197baa948703428bcb3e84a88e' into feat/cli…
nil-amrutlal Feb 19, 2024
3131b2a
Merge commit '88656854061acb28d9e9ef9f73ef1323967507ec' into feat/cli…
nil-amrutlal Feb 19, 2024
4a0a8e2
Merge commit '1465bdd81e447b188726b2e7416d8bc574950fc5' into feat/cli…
nil-amrutlal Feb 19, 2024
a94a97d
lint fixes
nil-amrutlal Feb 19, 2024
3a07197
Merge commit 'e65961e83b7a8c998baf10f8f830a96d71529a4c' into feat/cli…
nil-amrutlal Mar 12, 2024
72463b0
fix: minor fixes and comments resolutions
nil-amrutlal Mar 12, 2024
5bf95cb
Merge commit '4f810ef3d5763e4042f94f69dfc0d40c4f2df1a8' into feat/cli…
nil-amrutlal Apr 2, 2024
8fa5352
fix: adjusted precision type from number to Pact Int
nil-amrutlal Apr 3, 2024
cdd1af6
fix: lint fixes
nil-amrutlal Apr 3, 2024
e17bd57
Merge branch 'main' into feat/client-utils/marmalade-functions
wooglie May 2, 2024
5ad87a5
chore: update the create token capability signature
wooglie May 3, 2024
337468f
Merge branch 'main' into feat/client-utils/marmalade-functions
wooglie May 3, 2024
37b58d8
Merge branch 'main' into feat/client-utils/marmalade-functions
wooglie May 3, 2024
a0153c4
[@kadena/client-utils] Implement Marmalade functions - additions (#1945)
wooglie May 3, 2024
0307612
chore: add update-uri function
wooglie May 6, 2024
c187573
chore: format files
wooglie May 6, 2024
69866e0
Merge branch 'main' into feat/client-utils/marmalade-functions
wooglie May 9, 2024
1dc783d
Merge branch 'main' into feat/client-utils/marmalade-functions
wooglie May 13, 2024
b1d964f
[@kadena/client-utils] Implement Marmalade functions - Sale functions…
wooglie May 23, 2024
26ec4e3
chore: get quote function and reorganize imports (#2187)
wooglie May 27, 2024
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
5 changes: 5 additions & 0 deletions .changeset/sour-gorillas-raise.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@kadena/client-utils': patch
---

Added marmalade functions and correspondent integration testing
4 changes: 3 additions & 1 deletion packages/libs/client-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,9 @@
"lint:fmt": "prettier . --cache --check",
"lint:pkg": "lint-package",
"lint:src": "eslint src --ext .js,.ts",
"pactjs:generate:contract": "pactjs contract-generate --contract coin --api https://api.chainweb.com/chainweb/0.0/mainnet01/chain/1/pact",
"pactjs:generate:contract": "pnpm run pactjs:generate:contract:coin && pnpm run pactjs:generate:contract:marmalade",
"pactjs:generate:contract:coin": "pactjs contract-generate --contract coin --api https://api.chainweb.com/chainweb/0.0/mainnet01/chain/1/pact",
nil-amrutlal marked this conversation as resolved.
Show resolved Hide resolved
"pactjs:generate:contract:marmalade": "pactjs contract-generate --contract marmalade-v2.ledger --api https://api.chainweb.com/chainweb/0.0/mainnet01/chain/8/pact;",
"test": "vitest run",
"test:integration": "vitest run -c ./vitest.integration.config.ts",
"test:watch": "vitest"
Expand Down
Loading
Loading