Skip to content

Commit

Permalink
Update dependency to v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
0xOmarA committed Sep 22, 2023
1 parent 19982c2 commit 90e58bf
Show file tree
Hide file tree
Showing 10 changed files with 148,488 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@radixdlt/radix-engine-toolkit",
"version": "1.0.0-rc1",
"version": "1.0.0",
"description": "A TypeScript wrapper for the Radix Engine Toolkit that provides many of the necessary tools to interact with the Radix ledger",
"types": "./dist/index.d.ts",
"main": "./dist/radix-engine-toolkit.umd.js",
Expand Down
110 changes: 110 additions & 0 deletions resources/fixtures/derive.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,110 @@
{
"derive_virtual_account_address_from_public_key": [
{
"input": {
"public_key": {
"kind": "Secp256k1",
"value": "0279be667ef9dcbbac55a06295ce870b07029bfcdb2dce28d959f2815b16f81798"
},
"network_id": "1"
},
"output": "account_rdx168fghy4kapzfnwpmq7t7753425lwklk65r82ys7pz2xzleehk2ap0k"
},
{
"input": {
"public_key": {
"kind": "Ed25519",
"value": "4cb5abf6ad79fbf5abbccafcc269d85cd2651ed4b885b5869f241aedf0a5ba29"
},
"network_id": "1"
},
"output": "account_rdx12xsvygvltz4uhsht6tdrfxktzpmnl77r0d40j8agmujgdj022sudkk"
}
],
"derive_virtual_identity_address_from_public_key": [
{
"input": {
"public_key": {
"kind": "Secp256k1",
"value": "0279be667ef9dcbbac55a06295ce870b07029bfcdb2dce28d959f2815b16f81798"
},
"network_id": "1"
},
"output": "identity_rdx16tfghy4kapzfnwpmq7t7753425lwklk65r82ys7pz2xzleehuzvw2z"
},
{
"input": {
"public_key": {
"kind": "Ed25519",
"value": "4cb5abf6ad79fbf5abbccafcc269d85cd2651ed4b885b5869f241aedf0a5ba29"
},
"network_id": "1"
},
"output": "identity_rdx122svygvltz4uhsht6tdrfxktzpmnl77r0d40j8agmujgdj02qcdznz"
}
],
"derive_virtual_signature_non_fungible_global_id_from_public_key": [
{
"input": {
"public_key": {
"kind": "Secp256k1",
"value": "0279be667ef9dcbbac55a06295ce870b07029bfcdb2dce28d959f2815b16f81798"
},
"network_id": "1"
},
"output": "resource_rdx1nfxxxxxxxxxxsecpsgxxxxxxxxx004638826440xxxxxxxxxsecpsg:[d28b92b6e84499b83b0797ef5235553eeb7edaa0cea243c1128c2fe737]"
},
{
"input": {
"public_key": {
"kind": "Ed25519",
"value": "4cb5abf6ad79fbf5abbccafcc269d85cd2651ed4b885b5869f241aedf0a5ba29"
},
"network_id": "1"
},
"output": "resource_rdx1nfxxxxxxxxxxed25sgxxxxxxxxx002236757237xxxxxxxxxed25sg:[a0c2219f58abcbc2ebd2da349acb10773ffbc37b6af91fa8df2486c9ea]"
}
],
"derive_virtual_account_address_from_olympia_account_address": [
{
"input": {
"olympia_account_address": "rdx1qspx7zxmnrh36q33av24srdfzg7m3cj65968erpjuh7ja3rm3kmn6hq4j9842",
"network_id": "1"
},
"output": "account_rdx168e8u653alt59xm8ple6khu6cgce9cfx9mlza6wxf7qs3wwdh0pwrf"
}
],
"derive_resource_address_from_olympia_resource_address": [
{
"input": {
"olympia_resource_address": "floop_rr1q0p0hzap6ckxqdk6khesyft62w34e0vdd06msn9snhfqknl370",
"network_id": "1"
},
"output": "resource_rdx1tkhseye4w0hmf2af5enwurkxu4x29zk73yckyzhndv8xdk8tp2tn8q"
}
],
"derive_public_key_from_olympia_account_address": [
{
"input": "rdx1qspx7zxmnrh36q33av24srdfzg7m3cj65968erpjuh7ja3rm3kmn6hq4j9842",
"output": "026f08db98ef1d0231eb15580da9123db8e25aa1747c8c32e5fd2ec47b8db73d5c"
}
],
"derive_olympia_account_address_from_public_key": [
{
"input": {
"olympia_network": "Mainnet",
"public_key": "0279be667ef9dcbbac55a06295ce870b07029bfcdb2dce28d959f2815b16f81798"
},
"output": "rdx1qsp8n0nx0muaewav2ksx99wwsu9swq5mlndjmn3gm9vl9q2mzmup0xqm2ylge"
}
],
"derive_node_address_from_public_key": [
{
"input": {
"network_id": "1",
"public_key": "0279be667ef9dcbbac55a06295ce870b07029bfcdb2dce28d959f2815b16f81798"
},
"output": "node_rdx1qfumuen7l8wthtz45p3ftn58pvrs9xlumvkuu2xet8egzkcklqtesnrmv85"
}
]
}
14 changes: 14 additions & 0 deletions resources/fixtures/information.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"build_information": [
{
"input": {},
"output": {
"version": "1.0.0",
"scrypto_dependency": {
"kind": "Tag",
"value": "v1.0.0"
}
}
}
]
}
Loading

0 comments on commit 90e58bf

Please sign in to comment.