Bitcoin Forum
April 26, 2024, 06:11:06 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: Automated Transactions (AT) is changing things - find out more here  (Read 3401 times)
CIYAM (OP)
Legendary
*
Offline Offline

Activity: 1890
Merit: 1075


Ian Knowles - CIYAM Lead Developer


View Profile WWW
February 24, 2015, 04:17:42 PM
Last edit: February 26, 2015, 03:36:06 AM by CIYAM
 #1

Automated Transactions (AT) is a technology created by CIYAM Developers which provides "Turing complete smart contracts" for any blockchain that implements it (http://ciyam.org/at).

Recently the AT developers produced a Crowdfund application that only requires 25 machine code steps (which is ridiculously small) and that is running on a blockchain now (the Burst blockchain). This is the most efficient Crowdfund application in existence - not only is it incredibly efficient but it is also 100% decentralised!

Although we are having troubles with getting any attention (hopefully some smart marketing people will notice this project and consider contacting us) we have already achieved "two world firsts" which we intend to follow up with more ground breaking ATs (which are under development now).

#1 - The world's first completely decentralised Lottery (i.e. no website and no central control) was launched in January 2015.

#2 - The world's first completely decentralised Crowdfunding application (i.e. no website and no central control) was launched in February 2015.

A couple of great tools for those keen to develop their own ATs can be found here (thanks to @burstcoin):

https://github.com/BurstProject/ATAssembler
https://github.com/BurstProject/ATDebugger

With CIYAM anyone can create 100% generated C++ web applications in literally minutes.

GPG Public Key | 1ciyam3htJit1feGa26p2wQ4aw6KFTejU
1714111866
Hero Member
*
Offline Offline

Posts: 1714111866

View Profile Personal Message (Offline)

Ignore
1714111866
Reply with quote  #2

1714111866
Report to moderator
1714111866
Hero Member
*
Offline Offline

Posts: 1714111866

View Profile Personal Message (Offline)

Ignore
1714111866
Reply with quote  #2

1714111866
Report to moderator
You get merit points when someone likes your post enough to give you some. And for every 2 merit points you receive, you can send 1 merit point to someone else!
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714111866
Hero Member
*
Offline Offline

Posts: 1714111866

View Profile Personal Message (Offline)

Ignore
1714111866
Reply with quote  #2

1714111866
Report to moderator
deslok
Sr. Member
****
Offline Offline

Activity: 462
Merit: 250


It's all about the game, and how you play it


View Profile
February 24, 2015, 04:28:25 PM
 #2

That sounds like where bitcoin should have started, 25 steps is rather impressive(I've written simple calculators with more steps) Can this run on any block chain or just burst?

"If we don't hang together, by Heavens we shall hang separately." - Benjamin Franklin

If you found that funny or something i said useful i always appreciate spare change
1PczDQHfEj3dJgp6wN3CXPft1bGB23TzTM
CIYAM (OP)
Legendary
*
Offline Offline

Activity: 1890
Merit: 1075


Ian Knowles - CIYAM Lead Developer


View Profile WWW
February 24, 2015, 04:30:49 PM
 #3

That sounds like where bitcoin should have started, 25 steps is rather impressive(I've written simple calculators with more steps) Can this run on any block chain or just burst?

AT has been designed to work on any blockchain (Burst just happens to be the first one that has implemented AT).

We expect to have AT working on another blockchain (Qora) fairly soon and have created a bounty in order to get it implemented upon a Bitcoin clone.

With CIYAM anyone can create 100% generated C++ web applications in literally minutes.

GPG Public Key | 1ciyam3htJit1feGa26p2wQ4aw6KFTejU
vbcs
Full Member
***
Offline Offline

Activity: 137
Merit: 100


AT - Automated Transactions - CIYAM Developer


View Profile
February 24, 2015, 04:31:21 PM
 #4

AT is a white label project, with MIT licence, and is not tied to any blockchain. Almost any coin (btc based or not) can integrate AT.

1ELCU3hahFLMPPqsoHS2Mg2Rqjya6VXjAW
CIYAM (OP)
Legendary
*
Offline Offline

Activity: 1890
Merit: 1075


Ian Knowles - CIYAM Lead Developer


View Profile WWW
February 24, 2015, 04:49:49 PM
 #5

So the entire source code for the Crowdfund AT is this:

Code:
FUN @block_height get_Block_Timestamp
SLP $decision
FUN @amount get_Current_Balance
BGE $amount $target_amount :funded
FUN @timestamp get_Creation_Timestamp
refund_loop:
FUN A_to_Tx_after_Timestamp $timestamp
FUN @tx_info check_A_Is_Zero
BZR $tx_info :end_loop
FUN @tx_amount get_Amount_for_Tx_in_A
FUN @timestamp get_Timestamp_for_Tx_in_A
FUN B_to_Address_of_Tx_in_A
SET @funded #0000000000000002
FUN send_to_Address_in_B $tx_amount
JMP :refund_loop
funded:
SET @funded #0000000000000001
FUN B_to_Address_of_Creator
FUN send_All_to_Address_in_B
FUN @timestamp get_Last_Block_Timestamp
end_loop:
FUN A_to_Tx_after_Timestamp $timestamp
FUN @tx_info check_A_Is_Zero
BZR $tx_info :end_loop
FUN @timestamp get_Timestamp_for_Tx_in_A
FUN B_to_Address_of_Creator
FUN send_All_to_Address_in_B
JMP :end_loop

The design is so efficient that after the initial two steps are executed *nothing happens* until the decision block is reached (so it works by doing *nothing* for that entire time).

With CIYAM anyone can create 100% generated C++ web applications in literally minutes.

GPG Public Key | 1ciyam3htJit1feGa26p2wQ4aw6KFTejU
Elmit
Hero Member
*****
Offline Offline

Activity: 785
Merit: 500


BURST got Smart Contracts (AT)


View Profile WWW
February 28, 2015, 11:19:24 AM
 #6

I downloaded the ATAssembler.
Where can I find documentation how to use it? (Linux)

Ing. Ronald Wiplinger (@ ELMIT)   Blog and pools: http://mininghere.com  CAT info at: https://cat.elmit.com  Tel.: (O) +886 (0)2--2623-3117, (M) +886 (0) 988--70-77-42, Telegram: @RonaldPhone
CIYAM (OP)
Legendary
*
Offline Offline

Activity: 1890
Merit: 1075


Ian Knowles - CIYAM Lead Developer


View Profile WWW
February 28, 2015, 11:39:59 AM
 #7

I downloaded the ATAssembler.
Where can I find documentation how to use it? (Linux)

The first thing would be to make sure is that you have Scala installed: http://www.scala-lang.org/download/install.html (might be helpful).

With CIYAM anyone can create 100% generated C++ web applications in literally minutes.

GPG Public Key | 1ciyam3htJit1feGa26p2wQ4aw6KFTejU
CIYAM (OP)
Legendary
*
Offline Offline

Activity: 1890
Merit: 1075


Ian Knowles - CIYAM Lead Developer


View Profile WWW
May 09, 2015, 04:10:54 PM
 #8

Seems I have neglected this topic for a while so let me just update and let it be known that the first ACCT (Atomic Cross-Chain Transfer) between Burst and Qora blockchains is scheduled for this coming week and I have begun work on designing a new AT that will allow for discovery of "offers" for ACCTs (which will be the main way that decentralised coin trading can occur using AT).

With CIYAM anyone can create 100% generated C++ web applications in literally minutes.

GPG Public Key | 1ciyam3htJit1feGa26p2wQ4aw6KFTejU
wizzardTim
Legendary
*
Offline Offline

Activity: 1708
Merit: 1000


Reality is stranger than fiction


View Profile
May 09, 2015, 06:11:28 PM
 #9

This week!!!!


Excited! This is history in the making.

Behold the Tangle Mysteries! Dare to know It's truth.

- Excerpt from the IOTA Sacred Texts Vol. I
DooMAD
Legendary
*
Offline Offline

Activity: 3766
Merit: 3100


Leave no FUD unchallenged


View Profile
May 10, 2015, 06:17:20 PM
 #10

Blocknet and Supernet - redundant
Ethereum - obsolete before it even got off the ground

That's how significant and game-changing this is.  Trade minus the middleman.

.
.HUGE.
▄██████████▄▄
▄█████████████████▄
▄█████████████████████▄
▄███████████████████████▄
▄█████████████████████████▄
███████▌██▌▐██▐██▐████▄███
████▐██▐████▌██▌██▌██▌██
█████▀███▀███▀▐██▐██▐█████

▀█████████████████████████▀

▀███████████████████████▀

▀█████████████████████▀

▀█████████████████▀

▀██████████▀▀
█▀▀▀▀











█▄▄▄▄
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
.
CASINSPORTSBOOK
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▀▀▀▀█











▄▄▄▄█
celestio
Sr. Member
****
Offline Offline

Activity: 770
Merit: 250



View Profile
May 12, 2015, 01:36:23 AM
 #11

Could this be added on cryptonote coins i.e Monero?

"The nature of Bitcoin is such that once version 0.1 was released, the core design was set in stone for the rest of its lifetime" - Satoshi Nakamoto, June 17, 2010
CIYAM (OP)
Legendary
*
Offline Offline

Activity: 1890
Merit: 1075


Ian Knowles - CIYAM Lead Developer


View Profile WWW
May 12, 2015, 05:18:12 AM
 #12

Could this be added on cryptonote coins i.e Monero?

The issue is that AT code and data is public (and have to be that way) so they don't really fit into a blockchain whose purpose is to make everything secret.

With CIYAM anyone can create 100% generated C++ web applications in literally minutes.

GPG Public Key | 1ciyam3htJit1feGa26p2wQ4aw6KFTejU
jantenner81
Full Member
***
Offline Offline

Activity: 228
Merit: 100


CIYAM - UI/UX design


View Profile WWW
May 17, 2015, 08:33:25 PM
 #13

The worlds first ACCT (Atomic Cross-Chain Transfer) between two separate blockchains (Qora and Burst) has already happened.

AT - Automated Transactions
CIYAM | Developer
Vrontis
Sr. Member
****
Offline Offline

Activity: 351
Merit: 250



View Profile WWW
May 18, 2015, 01:09:44 AM
 #14

The worlds first ACCT (Atomic Cross-Chain Transfer) between two separate blockchains (Qora and Burst) has already happened.







DooMAD
Legendary
*
Offline Offline

Activity: 3766
Merit: 3100


Leave no FUD unchallenged


View Profile
May 20, 2015, 02:56:53 PM
 #15

Is it just me, or have people not realised the magnitude of this yet?  It's the beginning of the end of our sole reliance on centralised exchanges for trading between alts and the fanfare seems a little subdued.  Are we not explaining it right or something? 

.
.HUGE.
▄██████████▄▄
▄█████████████████▄
▄█████████████████████▄
▄███████████████████████▄
▄█████████████████████████▄
███████▌██▌▐██▐██▐████▄███
████▐██▐████▌██▌██▌██▌██
█████▀███▀███▀▐██▐██▐█████

▀█████████████████████████▀

▀███████████████████████▀

▀█████████████████████▀

▀█████████████████▀

▀██████████▀▀
█▀▀▀▀











█▄▄▄▄
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
.
CASINSPORTSBOOK
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▀▀▀▀█











▄▄▄▄█
CIYAM (OP)
Legendary
*
Offline Offline

Activity: 1890
Merit: 1075


Ian Knowles - CIYAM Lead Developer


View Profile WWW
May 25, 2015, 03:24:03 PM
 #16

Unfortunately the timing of the forum hack wasn't good for us but: https://www.cryptocoinsnews.com/qora-burst-now-able-make-cross-chain-transactions/

With CIYAM anyone can create 100% generated C++ web applications in literally minutes.

GPG Public Key | 1ciyam3htJit1feGa26p2wQ4aw6KFTejU
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!