Luke Schoen

Results 182 comments of Luke Schoen

We've been discussing this issue in the Substrate Technical (Public) Riot chatroom. It's because all the dependencies are being build from an old commit dated 25th October in the 'master'...

Solution: https://github.com/ltfschoen/substratekitties/tree/v2.0 Noting that this fix likely won't get merged, see https://matrix.to/#/!HzySYSaIhtyWrwiwEV:matrix.org/$1574898806602KyvWj:matrix.parity.io?via=matrix.parity.io&via=matrix.org&via=web3.foundation

I had the same error. It was because although I was using the correct abiCode that corresponded to the latest version of the smart contract I was calling, I had...

Another inconsistency, is that file's in this repo only include the websockets option in the node1.toml file node1.toml ``` [websockets] port = 8547 ``` whereas in the tutorial here https://wiki.parity.io/Demo-PoA-tutorial.html#2-setting-up-the-two-nodes,...

yes, great thinking an example would be running: ```bash cargo contract instantiate --suri //Bob --constructor new --args true --execute ``` which outputs the following ```bash Dry-running new (skip with --skip-dry-run)...

> for development i just created a Dockerfile at https://github.com/ltfschoen/InkTest that contains both https://github.com/paritytech/scripts/blob/master/dockerfiles/base-ci-linux/Dockerfile and https://github.com/paritytech/scripts/blob/master/dockerfiles/contracts-ci-linux/Dockerfile so i have more control, but i seem to be having a port issue...

> > > > for development i just created a Dockerfile at https://github.com/ltfschoen/InkTest that contains both https://github.com/paritytech/scripts/blob/master/dockerfiles/base-ci-linux/Dockerfile and https://github.com/paritytech/scripts/blob/master/dockerfiles/contracts-ci-linux/Dockerfile so i have more control, but i seem to be having...

> Yes please Luke. I don't have time to do this in the near future but would love to see it if anyone wants to pick it up! > >...

@ascjones FYI, i don't think this is a necessary feature since you can just load the secrets from an environment variable using a bash script or similar like this https://github.com/ltfschoen/validator-scripts?tab=readme-ov-file#rotate-validator-session-keys-with-via-cli-with-polkadotjs-tools-instead-of-via-ui-with-polkadotjs-apps,...

so i'm guessing it should suggest that they add the following to the top of the associated file: ``` use ink::prelude::string::String; ``` or could it just suggest ``` use ink::prelude::*;...