diff --git a/.gitignore b/.gitignore index bf245d2b08..d8daa5f5bb 100644 --- a/.gitignore +++ b/.gitignore @@ -29,6 +29,7 @@ coverage.* site /src/apis/ /src/tx/builder/schema.generated.ts +/src/tx/builder/delegation/schema.generated.ts /tooling/autorest/compiler-swagger.yaml /tooling/autorest/middleware-openapi.yaml /test/environment/ledger/browser diff --git a/docker-compose.yml b/docker-compose.yml index 5875e996e6..a684119fb7 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,7 +1,7 @@ version: '3' services: node: - image: aeternity/aeternity:v6.12.0 + image: aeternity/aeternity:master@sha256:dac4a3b032ee05f2e0d4b4ce5b0da5c639f95e849fe0332e393f87ca01da0df2 hostname: node ports: ["3013:3013", "3113:3113", "3014:3014", "3114:3114"] volumes: diff --git a/docs/guides/aens.md b/docs/guides/aens.md index eebf9cbd89..0c6069ba46 100644 --- a/docs/guides/aens.md +++ b/docs/guides/aens.md @@ -373,7 +373,7 @@ const contractAddress = 'ct_asd2ks...' const name = 'example.chain' // this signature will allow the contract to perform a pre-claim on your behalf -const preClaimSig = await aeSdk.signDelegationToContract(contractAddress) +const preClaimSig = await aeSdk.signDelegationToContract(contractAddress, { isOracle: false }) // this signature will allow the contract to perform // any name related transaction for a specific name that you own diff --git a/examples/browser/aepp/src/DelegationSignature.vue b/examples/browser/aepp/src/DelegationSignature.vue index 8e0a668c65..dcc6c1b2f0 100644 --- a/examples/browser/aepp/src/DelegationSignature.vue +++ b/examples/browser/aepp/src/DelegationSignature.vue @@ -7,27 +7,33 @@
+
+
+
@@ -43,12 +49,14 @@